diff --git a/unpacked.ttslua b/unpacked.ttslua index da3e61418..cc94f6acc 100644 --- a/unpacked.ttslua +++ b/unpacked.ttslua @@ -1,571 +1,572 @@ ---[[ Lua code. See documentation: http://berserk-games.com/knowledgebase/scripting/ --]] --- Card size used for autodealing -- - --- 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; - -containerId = 'fea079' -tokenDataId = '708279' - - -CACHE = { - object = {}, - data = {} -} - ---[[ 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 = "https://i.imgur.com/XIJHw3J.png", - damagethree = "https://i.imgur.com/eqRC712.png", - horrorone = "https://i.imgur.com/Bh0BO47.png", - horrorthree = "https://i.imgur.com/pZvTKA7.png", - resource = "https://i.imgur.com/j5v5E3j.png", - resourcethree = "https://i.imgur.com/1GZsDTt.png", - doom = "https://i.imgur.com/EoL7yaZ.png", - clue = "https://i.imgur.com/wfCaVU0.png" - } - - 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}} - } - -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 -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 -- yellow --- 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]] - local position = params[1] - local rotation = params[2] - local isFaceUp = params[3] - local faceUpRotation - if (isFaceUp) then - faceUpRotation = 0 - else - faceUpRotation = 180 - end - local items = findInRadiusBy(ENCOUNTER_DECK_POS, 4, isCardOrDeck) - if #items > 0 then - for i, v in ipairs(items) do - if v.tag == 'Deck' then - v.takeObject({index = 0, position = position, rotation = {0,rotation.y,faceUpRotation}}) - return - end - end --- we didn't find the deck so just pull the first thing we did find - items[1].setPositionSmooth(position, false, false) - items[1].setRotationSmooth({0,rotation.y,faceUpRotation}, false, false) - return - end --- nothing here, time to reshuffle - reshuffleEncounterDeck(position, {0,rotation.y,faceUpRotation}) -end - -IS_RESHUFFLING = false -function reshuffleEncounterDeck(position, rotation) - -- finishes moving the deck back and draws a card - local function move(deck) - deck.setPositionSmooth(ENCOUNTER_DECK_SPAWN_POS, true, false) - deck.takeObject({index = 0, position = position, rotation = rotation, flip = false}) - Wait.time(function() IS_RESHUFFLING = false end, 1) - end - -- bail out if we're mid reshuffle - 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 - deck.shuffle() - Wait.time(|| move(deck), 0.3) - else - 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 - end - CHAOS_TOKENS = {} - 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() - end - CHAOS_TOKENS_LAST_MAT = 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 - 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) - local token = chaosbag.takeObject({ - index = 0, - position = toPosition, - rotation = mat.getRotation() - }) - CHAOS_TOKENS[#CHAOS_TOKENS + 1] = token - return - else - putBackChaosTokens() - end -end - -function spawnToken(params) - -- Position to spawn, - -- rotation vector to apply - -- translation vector to apply - -- token type - local position = params[1] - local tokenType = params[2] - local tokenData = TOKEN_DATA[tokenType] - if tokenData == nil then - error("no token data found for '" .. tokenType .. "'") - end - - local token = spawnObject({ - type = 'Custom_Token', - position = position, - }) - token.setCustomObject({ - image = tokenData['image'], - thickness = 0.1, - merge_distance = 5.0, - stackable = 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])) -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 - else - return false - end -end - -function isFaceup(params) --Object object - if params.getRotation()[3] > -5 and params.getRotation()[3] < 5 then - return true - else - return false - end -end - ---Difficulty selector script - -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 - end -end - -function fillContainer(args) - local container = getObjectCache(containerId) - - if container ~= 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 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} - return obj - end -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 - 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 - 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 - end - - if #objectsFound > 0 then - return objectsFound - 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 obj ~= nil then - CACHE.data[storage] = obj.getTable(storage) - end - end - return CACHE.data[storage] -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 - end - end -end - -function getRandomCount(to) - updateRandomSeed() - return math.random(1, to) -end - -function updateRandomSeed() - local chance = math.random(1,10) - if chance == 1 then - math.randomseed(os.time()) - end +--[[ Lua code. See documentation: http://berserk-games.com/knowledgebase/scripting/ --]] +-- Card size used for autodealing -- + +-- 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; + +containerId = 'fea079' +tokenDataId = '708279' + + +CACHE = { + object = {}, + data = {} +} + +--[[ 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 = "https://i.imgur.com/XIJHw3J.png", + damagethree = "https://i.imgur.com/eqRC712.png", + horrorone = "https://i.imgur.com/Bh0BO47.png", + horrorthree = "https://i.imgur.com/pZvTKA7.png", + resource = "https://i.imgur.com/j5v5E3j.png", + resourcethree = "https://i.imgur.com/1GZsDTt.png", + doom = "https://i.imgur.com/EoL7yaZ.png", + clue = "https://i.imgur.com/wfCaVU0.png" + } + + 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}} + } + +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 +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]] + local position = params[1] + local rotation = params[2] + local isFaceUp = params[3] + local faceUpRotation + if (isFaceUp) then + faceUpRotation = 0 + else + faceUpRotation = 180 + end + local items = findInRadiusBy(ENCOUNTER_DECK_POS, 4, isCardOrDeck) + if #items > 0 then + for i, v in ipairs(items) do + if v.tag == 'Deck' then + v.takeObject({index = 0, position = position, rotation = {0,rotation.y,faceUpRotation}}) + return + end + end +-- we didn't find the deck so just pull the first thing we did find + items[1].setPositionSmooth(position, false, false) + items[1].setRotationSmooth({0,rotation.y,faceUpRotation}, false, false) + return + end +-- nothing here, time to reshuffle + reshuffleEncounterDeck(position, {0,rotation.y,faceUpRotation}) +end + +IS_RESHUFFLING = false +function reshuffleEncounterDeck(position, rotation) + -- finishes moving the deck back and draws a card + local function move(deck) + deck.setPositionSmooth(ENCOUNTER_DECK_SPAWN_POS, true, false) + deck.takeObject({index = 0, position = position, rotation = rotation, flip = false}) + Wait.time(function() IS_RESHUFFLING = false end, 1) + end + -- bail out if we're mid reshuffle + 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 + deck.shuffle() + Wait.time(|| move(deck), 0.3) + else + 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 + end + CHAOS_TOKENS = {} + 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() + end + CHAOS_TOKENS_LAST_MAT = 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 + 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) + local token = chaosbag.takeObject({ + index = 0, + position = toPosition, + rotation = mat.getRotation() + }) + CHAOS_TOKENS[#CHAOS_TOKENS + 1] = token + return + else + putBackChaosTokens() + end +end + +function spawnToken(params) + -- Position to spawn, + -- rotation vector to apply + -- translation vector to apply + -- token type + local position = params[1] + local tokenType = params[2] + local tokenData = TOKEN_DATA[tokenType] + if tokenData == nil then + error("no token data found for '" .. tokenType .. "'") + end + + local token = spawnObject({ + type = 'Custom_Token', + position = position, + rotation = {x=0, y=270, z=0} + }) + token.setCustomObject({ + image = tokenData['image'], + thickness = 0.3, + merge_distance = 5.0, + stackable = true, + }) + 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])) +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 + else + return false + end +end + +function isFaceup(params) --Object object + if params.getRotation()[3] > -5 and params.getRotation()[3] < 5 then + return true + else + return false + end +end + +--Difficulty selector script + +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 + end +end + +function fillContainer(args) + local container = getObjectCache(containerId) + + if container ~= 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 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} + return obj + end +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 + 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 + 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 + end + + if #objectsFound > 0 then + return objectsFound + 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 obj ~= nil then + CACHE.data[storage] = obj.getTable(storage) + end + end + return CACHE.data[storage] +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 + end + end +end + +function getRandomCount(to) + updateRandomSeed() + return math.random(1, to) +end + +function updateRandomSeed() + local chance = math.random(1,10) + if chance == 1 then + math.randomseed(os.time()) + end end \ No newline at end of file diff --git a/unpacked.yaml b/unpacked.yaml index 1486cad3d..cde71a3ca 100644 --- a/unpacked.yaml +++ b/unpacked.yaml @@ -22,7 +22,7 @@ CameraStates: - null - null - null -Date: 8/16/2020 12:36:29 AM +Date: 8/26/2020 3:19:40 AM DecalPallet: - ImageURL: http://cloud-3.steamusercontent.com/ugc/1474319121424323663/BC5570ECF747F1B30224461B576E8B0FE7FA5F33/ Name: Achivement Checkmark @@ -334,17 +334,6 @@ Hands: DisableUnused: false Enable: true HandTransforms: - - Color: Yellow - Transform: - posX: -65.580864 - posY: 6.0 - posZ: 13.5499973 - rotX: 0.0 - rotY: 90.0 - rotZ: 0.0 - scaleX: 22.7468719 - scaleY: 7.002465 - scaleZ: 7.00841141 - Color: Orange Transform: posX: -65.72001 @@ -353,9 +342,9 @@ Hands: rotX: 0.0 rotY: 90.0 rotZ: 0.0 - scaleX: 22.7467422 + scaleX: 22.75444 scaleY: 7.0 - scaleZ: 7.00836 + scaleZ: 7.01179361 - Color: Red Transform: posX: -27.96 @@ -378,6 +367,17 @@ Hands: scaleX: 21.9605045 scaleY: 7.0 scaleZ: 6.517999 + - Color: White + Transform: + posX: -65.580864 + posY: 6.0 + posZ: 13.5499973 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 22.7545872 + scaleY: 7.002465 + scaleZ: 7.01185226 Hiding: 2 Lighting: AmbientEquatorColor: @@ -523,7 +523,7 @@ ObjectStates: - !include 'unpacked/Custom_Token Horror 7b5729.yaml' - !include 'unpacked/Custom_Token Resources cd15ac.yaml' - !include 'unpacked/Custom_Tile Playermat 3 Green 383d8b.yaml' -- !include 'unpacked/Custom_Tile Playermat 1 Yellow 8b081b.yaml' +- !include 'unpacked/Custom_Tile Playermat 1 White 8b081b.yaml' - !include 'unpacked/Custom_Tile Playermat 2 Orange bd0ff4.yaml' - !include 'unpacked/Custom_Tile Playermat 4 Red 0840d5.yaml' - !include 'unpacked/Custom_Tile ArkhamDB Deck Importer 928c8e.yaml' @@ -613,18 +613,12 @@ ObjectStates: - !include 'unpacked/Custom_Model d86b7c.yaml' - !include 'unpacked/Custom_Model_Bag Clue Counter Swapper d919d6.yaml' - !include 'unpacked/Custom_Token Master Clue Counter 4a3aa4.yaml' -- !include 'unpacked/Custom_Token Doom counter 19768a.yaml' -- !include 'unpacked/Custom_Token Resources 3f22e5.yaml' -- !include 'unpacked/Custom_Token Resources 4111de.yaml' -- !include 'unpacked/Custom_Token Resources 891403.yaml' -- !include 'unpacked/Custom_Token Resources db85d6.yaml' - !include 'unpacked/Custom_Model_Bag The Circle Undone 63e097.yaml' - !include 'unpacked/Custom_Model_Bag Core 64a613.yaml' - !include 'unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6.yaml' - !include 'unpacked/Custom_Model_Bag The Forgotten Age 0bcf19.yaml' - !include 'unpacked/Custom_Model_Bag The Path to Carcosa aca04c.yaml' - !include 'unpacked/Custom_Model_Bag The Dream-Eaters a16a1a.yaml' -- !include 'unpacked/Custom_Model_Bag The Side Missions d466d6.yaml' - !include 'unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130.yaml' - !include 'unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a.yaml' - !include 'unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d.yaml' @@ -669,15 +663,21 @@ ObjectStates: - !include 'unpacked/ScriptingTrigger 444985.yaml' - !include 'unpacked/ScriptingTrigger 752a18.yaml' - !include 'unpacked/ScriptingTrigger 06c1b7.yaml' -- !include 'unpacked/Custom_Model_Bag Darkness Falls c6a612.yaml' - !include 'unpacked/Custom_Token Playarea 721ba2.yaml' -- !include 'unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb.yaml' - !include 'unpacked/ScriptingTrigger 4b1479.yaml' - !include 'unpacked/ScriptingTrigger 4e49ea.yaml' -- !include 'unpacked/Notecard Arkham SCE 1.4102 - 8152020 - Page 1 e65fb4.yaml' +- !include 'unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78.yaml' +- !include 'unpacked/Custom_Model_Bag The Side Missions 2d16e1.yaml' +- !include 'unpacked/Notecard Arkham SCE 1.4103 - 8262020 - Page 1 e65fb4.yaml' PlayArea: 1.0 +PlayerCounts: +- 0 +- 0 +PlayingTime: +- 0 +- 0 Rules: '' -SaveName: Arkham SCE 1.4102 +SaveName: Arkham SCE 1.4103 Sky: Sky_Museum SkyURL: https://i.imgur.com/GkQqaOF.jpg SnapPoints: @@ -1144,7 +1144,7 @@ SnapPoints: Rotation: x: 359.9201 y: 269.981476 - z: 0.0169187915 + z: 0.0169190075 - Position: x: -21.2858257 y: 1.50565612 diff --git a/unpacked/3DText 134348.yaml b/unpacked/3DText 134348.yaml index 87f5bf67c..415313cd2 100644 --- a/unpacked/3DText 134348.yaml +++ b/unpacked/3DText 134348.yaml @@ -21,7 +21,7 @@ Nickname: '' Snap: true Sticky: true Text: - Text: Featured Fan Scenarios + Text: Featured Fan Content colorstate: b: 1.0 g: 1.0 @@ -29,9 +29,9 @@ Text: fontSize: 56 Tooltip: true Transform: - posX: 39.3982124 - posY: 1.42276633 - posZ: -13.2763443 + posX: 39.3991547 + posY: 1.42267489 + posZ: -13.2772827 rotX: 90.0 rotY: 90.00001 rotZ: 0.0 diff --git a/unpacked/3DText 260e0c.yaml b/unpacked/3DText 260e0c.yaml index 92057f803..dcd230785 100644 --- a/unpacked/3DText 260e0c.yaml +++ b/unpacked/3DText 260e0c.yaml @@ -29,9 +29,9 @@ Text: fontSize: 64 Tooltip: true Transform: - posX: -26.7884731 - posY: 1.3561995 - posZ: 84.403656 + posX: -26.78813 + posY: 1.356154 + posZ: 84.40398 rotX: 89.97202 rotY: 90.00013 rotZ: 0.0 diff --git a/unpacked/3DText 65eb7e.yaml b/unpacked/3DText 65eb7e.yaml index 53461ad46..a0a14922a 100644 --- a/unpacked/3DText 65eb7e.yaml +++ b/unpacked/3DText 65eb7e.yaml @@ -29,11 +29,11 @@ Text: fontSize: 64 Tooltip: true Transform: - posX: -48.9222069 - posY: 1.25349736 - posZ: 71.3928757 + posX: -48.9223938 + posY: 1.25357175 + posZ: 71.39324 rotX: 90.0 - rotY: 90.00011 + rotY: 90.00013 rotZ: 0.0 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/3DText 6f870e.yaml b/unpacked/3DText 6f870e.yaml index 0fccd4972..6de180689 100644 --- a/unpacked/3DText 6f870e.yaml +++ b/unpacked/3DText 6f870e.yaml @@ -29,8 +29,8 @@ Text: fontSize: 64 Tooltip: true Transform: - posX: -17.9243374 - posY: 1.265555 + posX: -17.92401 + posY: 1.26550937 posZ: 77.58884 rotX: 90.0 rotY: 89.8333054 diff --git a/unpacked/3DText 778306.yaml b/unpacked/3DText 778306.yaml index 02e491f35..727891a3a 100644 --- a/unpacked/3DText 778306.yaml +++ b/unpacked/3DText 778306.yaml @@ -29,8 +29,8 @@ Text: fontSize: 64 Tooltip: true Transform: - posX: -17.9631443 - posY: 1.26384854 + posX: -17.9628448 + posY: 1.26380277 posZ: 70.7055054 rotX: 90.0 rotY: 89.8333054 diff --git a/unpacked/3DText 9f04cb.yaml b/unpacked/3DText 9f04cb.yaml index 212604d4e..a253498a5 100644 --- a/unpacked/3DText 9f04cb.yaml +++ b/unpacked/3DText 9f04cb.yaml @@ -29,8 +29,8 @@ Text: fontSize: 64 Tooltip: true Transform: - posX: -17.90579 - posY: 1.26057363 + posX: -17.9053783 + posY: 1.260528 posZ: 60.3100052 rotX: 90.0 rotY: 89.8333054 diff --git a/unpacked/3DText b32e04.yaml b/unpacked/3DText b32e04.yaml index 3fdda18d0..220dd6559 100644 --- a/unpacked/3DText b32e04.yaml +++ b/unpacked/3DText b32e04.yaml @@ -31,8 +31,8 @@ Text: fontSize: 64 Tooltip: true Transform: - posX: 74.9041748 - posY: 1.29286194 + posX: 74.9056244 + posY: 1.29267931 posZ: 61.1052055 rotX: 90.0 rotY: 90.52323 diff --git a/unpacked/3DText bb4ade.yaml b/unpacked/3DText bb4ade.yaml index c278c4c47..3a5c28b01 100644 --- a/unpacked/3DText bb4ade.yaml +++ b/unpacked/3DText bb4ade.yaml @@ -29,8 +29,8 @@ Text: fontSize: 64 Tooltip: true Transform: - posX: -26.77307 - posY: 1.35451114 + posX: -26.77287 + posY: 1.35446548 posZ: 78.613266 rotX: 89.97202 rotY: 90.00013 diff --git a/unpacked/3DText ca78c7.yaml b/unpacked/3DText ca78c7.yaml index 6b3582e05..adb49151e 100644 --- a/unpacked/3DText ca78c7.yaml +++ b/unpacked/3DText ca78c7.yaml @@ -29,8 +29,8 @@ Text: fontSize: 64 Tooltip: true Transform: - posX: -17.8944588 - posY: 1.26193559 + posX: -17.8941288 + posY: 1.26188993 posZ: 64.91003 rotX: 90.0 rotY: 89.8333054 diff --git a/unpacked/3DText e51c92.yaml b/unpacked/3DText e51c92.yaml index c429e4e40..ffc63b624 100644 --- a/unpacked/3DText e51c92.yaml +++ b/unpacked/3DText e51c92.yaml @@ -29,9 +29,9 @@ Text: fontSize: 64 Tooltip: true Transform: - posX: -17.9163933 - posY: 1.26761055 - posZ: 84.5718842 + posX: -17.9161568 + posY: 1.267565 + posZ: 84.57224 rotX: 90.0 rotY: 89.8333054 rotZ: 0.0 diff --git a/unpacked/3DText e85ff9.yaml b/unpacked/3DText e85ff9.yaml index 0addd2192..29d31c0e8 100644 --- a/unpacked/3DText e85ff9.yaml +++ b/unpacked/3DText e85ff9.yaml @@ -30,9 +30,9 @@ Text: fontSize: 56 Tooltip: true Transform: - posX: -5.13966 - posY: 1.30270731 - posZ: -69.06805 + posX: -5.139233 + posY: 1.30261528 + posZ: -69.07013 rotX: 90.0 rotY: 90.1663742 rotZ: 0.0 diff --git a/unpacked/BlockRectangle 90b6d0.yaml b/unpacked/BlockRectangle 90b6d0.yaml index 2bc723ef4..1fe4776ac 100644 --- a/unpacked/BlockRectangle 90b6d0.yaml +++ b/unpacked/BlockRectangle 90b6d0.yaml @@ -26,7 +26,7 @@ Transform: posY: 1.45272863 posZ: 70.5374 rotX: 359.983215 - rotY: 5.10156133e-05 + rotY: 5.10157879e-05 rotZ: 0.0221881457 scaleX: 0.09185542 scaleY: 0.112467624 diff --git a/unpacked/Custom_Model 032300.ttslua b/unpacked/Custom_Model 032300.ttslua index 785284cc3..3308d2100 100644 --- a/unpacked/Custom_Model 032300.ttslua +++ b/unpacked/Custom_Model 032300.ttslua @@ -1,116 +1,113 @@ ---Counting Bowl by MrStump - ---Table of items which can be counted in this Bowl ---Each entry has 2 things to enter - --a name (what is in the name field of that object) - --a value (how much it is worth) ---A number in the items description will override the number entry in this table -validCountItemList = { - ["Clue"] = 1, - [""] = 1, - --["Name3"] = 2, - --["Name4"] = 31, - --Add more entries as needed - --Remove the -- from before a line for the script to use it -} - ---END OF CODE TO EDIT - -function onLoad() - timerID = self.getGUID()..math.random(9999999999999) - - --Sets position/color for the button, spawns it - self.createButton({ - label="", click_function="removeAllClues", function_owner=self, - position={0,0,0}, rotation={0,8,0}, height=0, width=0, - font_color={0,0,0}, font_size=2000 - }) - --Start timer which repeats forever, running countItems() every second - Timer.create({ - identifier=timerID, - function_name="countItems", function_owner=self, - repetitions=0, delay=1 - }) - exposedValue = 0 - trashCan = getObjectFromGUID("5f896a") - -end - -function findValidItemsInSphere() - return filterByValidity(findItemsInSphere()) -end - ---Activated once per second, counts items in bowls -function countItems() - local totalValue = -1 - local countableItems = findValidItemsInSphere() - for ind, entry in ipairs(countableItems) do - local descValue = tonumber(entry.hit_object.getDescription()) - local stackMult = math.abs(entry.hit_object.getQuantity()) - --Use value in description if available - if descValue ~= nil then - totalValue = totalValue + descValue * stackMult - else - --Otherwise use the value in validCountItemList - totalValue = totalValue + validCountItemList[entry.hit_object.getName()] * stackMult - end - - end - exposedValue = totalValue - --Updates the number display - self.editButton({index=0, label=totalValue}) -end - -function filterByValidity(items) - retval = {} - for _, entry in ipairs(items) do - --Ignore the bowl - if entry.hit_object ~= self then - --Ignore if not in validCountItemList - local tableEntry = validCountItemList[entry.hit_object.getName()] - if tableEntry ~= nil then - table.insert(retval, entry) - end - end - end - return retval -end - - ---Gets the items in the bowl for countItems to count -function findItemsInSphere() - --Find scaling factor - local scale = self.getScale() - --Set position for the sphere - local pos = self.getPosition() - pos.y=pos.y+(1.25*scale.y) - --Ray trace to get all objects - return Physics.cast({ - origin=pos, direction={0,1,0}, type=2, max_distance=0, - size={13*scale.x,13*scale.y,13*scale.z}, --debug=true - }) -end - -function removeAllClues() - startLuaCoroutine(self, "clueRemovalCoroutine") -end - -function clueRemovalCoroutine() - for _, entry in ipairs(findValidItemsInSphere()) do - -- Do not put the table in the garbage - if entry.hit_object.getGUID() ~= "4ee1f2" then - --delay for animation purposes - for k=1,10 do - coroutine.yield(0) - end - trashCan.putObject(entry.hit_object) - end - end - --coroutines must return a value - return 1 -end - - -function onDestroy() - Timer.destroy(timerID) +--Counting Bowl by MrStump + +--Table of items which can be counted in this Bowl +--Each entry has 2 things to enter + --a name (what is in the name field of that object) + --a value (how much it is worth) +--A number in the items description will override the number entry in this table +validCountItemList = { + ["Clue"] = 1, + [""] = 1, + --["Name3"] = 2, + --["Name4"] = 31, + --Add more entries as needed + --Remove the -- from before a line for the script to use it +} + +--END OF CODE TO EDIT + +function onLoad() + timerID = self.getGUID()..math.random(9999999999999) + --Sets position/color for the button, spawns it + self.createButton({ + label="", click_function="removeAllClues", function_owner=self, + position={0,0,0}, rotation={0,8,0}, height=0, width=0, + font_color={0,0,0}, font_size=2000 + }) + --Start timer which repeats forever, running countItems() every second + Timer.create({ + identifier=timerID, + function_name="countItems", function_owner=self, + repetitions=0, delay=1 + }) + exposedValue = 0 + trashCan = getObjectFromGUID("147e80") +end + +function findValidItemsInSphere() + return filterByValidity(findItemsInSphere()) +end + +--Activated once per second, counts items in bowls +function countItems() + local totalValue = -1 + local countableItems = findValidItemsInSphere() + for ind, entry in ipairs(countableItems) do + local descValue = tonumber(entry.hit_object.getDescription()) + local stackMult = math.abs(entry.hit_object.getQuantity()) + --Use value in description if available + if descValue ~= nil then + totalValue = totalValue + descValue * stackMult + else + --Otherwise use the value in validCountItemList + totalValue = totalValue + validCountItemList[entry.hit_object.getName()] * stackMult + end + end + exposedValue = totalValue + --Updates the number display + self.editButton({index=0, label=totalValue}) +end + +function filterByValidity(items) + retval = {} + for _, entry in ipairs(items) do + --Ignore the bowl + if entry.hit_object ~= self then + --Ignore if not in validCountItemList + local tableEntry = validCountItemList[entry.hit_object.getName()] + if tableEntry ~= nil then + table.insert(retval, entry) + end + end + end + return retval +end + + +--Gets the items in the bowl for countItems to count +function findItemsInSphere() + --Find scaling factor + local scale = self.getScale() + --Set position for the sphere + local pos = self.getPosition() + pos.y=pos.y+(1.25*scale.y) + --Ray trace to get all objects + return Physics.cast({ + origin=pos, direction={0,1,0}, type=2, max_distance=0, + size={6*scale.x,6*scale.y,6*scale.z}, --debug=true + }) +end + +function removeAllClues() + startLuaCoroutine(self, "clueRemovalCoroutine") +end + +function clueRemovalCoroutine() + for _, entry in ipairs(findValidItemsInSphere()) do + -- Do not put the table in the garbage + if entry.hit_object.getGUID() ~= "4ee1f2" then + --delay for animation purposes + for k=1,10 do + coroutine.yield(0) + end + trashCan.putObject(entry.hit_object) + end + end + --coroutines must return a value + return 1 +end + + +function onDestroy() + Timer.destroy(timerID) end \ No newline at end of file diff --git a/unpacked/Custom_Model 0a3b03.yaml b/unpacked/Custom_Model 0a3b03.yaml index cf50d907a..c85b65ebe 100644 --- a/unpacked/Custom_Model 0a3b03.yaml +++ b/unpacked/Custom_Model 0a3b03.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: - b: 0.141095042 - g: 0.141095042 - r: 0.141095042 + b: 0.141093612 + g: 0.141093612 + r: 0.141093612 CustomMesh: CastShadows: true ColliderURL: '' diff --git a/unpacked/Custom_Model 0c05e4.yaml b/unpacked/Custom_Model 0c05e4.yaml index 7217fe829..ad60e9ada 100644 --- a/unpacked/Custom_Model 0c05e4.yaml +++ b/unpacked/Custom_Model 0c05e4.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: - b: 0.141095042 - g: 0.141095042 - r: 0.141095042 + b: 0.141093612 + g: 0.141093612 + r: 0.141093612 CustomMesh: CastShadows: true ColliderURL: '' diff --git a/unpacked/Custom_Model 1769ed.ttslua b/unpacked/Custom_Model 1769ed.ttslua index d2c237609..3308d2100 100644 --- a/unpacked/Custom_Model 1769ed.ttslua +++ b/unpacked/Custom_Model 1769ed.ttslua @@ -1,114 +1,113 @@ ---Counting Bowl by MrStump - ---Table of items which can be counted in this Bowl ---Each entry has 2 things to enter - --a name (what is in the name field of that object) - --a value (how much it is worth) ---A number in the items description will override the number entry in this table -validCountItemList = { - ["Clue"] = 1, - [""] = 1, - --["Name3"] = 2, - --["Name4"] = 31, - --Add more entries as needed - --Remove the -- from before a line for the script to use it -} - ---END OF CODE TO EDIT - -function onLoad() - timerID = self.getGUID()..math.random(9999999999999) - - --Sets position/color for the button, spawns it - self.createButton({ - label="", click_function="removeAllClues", function_owner=self, - position={0,0,0}, rotation={0,8,0}, height=0, width=0, - font_color={0,0,0}, font_size=2000 - }) - --Start timer which repeats forever, running countItems() every second - Timer.create({ - identifier=timerID, - function_name="countItems", function_owner=self, - repetitions=0, delay=1 - }) - exposedValue = 0 - trashCan = getObjectFromGUID("f7b6c8") -end - -function findValidItemsInSphere() - return filterByValidity(findItemsInSphere()) -end - ---Activated once per second, counts items in bowls -function countItems() - local totalValue = -1 - local countableItems = findValidItemsInSphere() - for ind, entry in ipairs(countableItems) do - local descValue = tonumber(entry.hit_object.getDescription()) - local stackMult = math.abs(entry.hit_object.getQuantity()) - --Use value in description if available - if descValue ~= nil then - totalValue = totalValue + descValue * stackMult - else - --Otherwise use the value in validCountItemList - totalValue = totalValue + validCountItemList[entry.hit_object.getName()] * stackMult - end - end - exposedValue = totalValue - --Updates the number display - self.editButton({index=0, label=totalValue}) -end - -function filterByValidity(items) - retval = {} - for _, entry in ipairs(items) do - --Ignore the bowl - if entry.hit_object ~= self then - --Ignore if not in validCountItemList - local tableEntry = validCountItemList[entry.hit_object.getName()] - if tableEntry ~= nil then - table.insert(retval, entry) - end - end - end - return retval -end - - ---Gets the items in the bowl for countItems to count -function findItemsInSphere() - --Find scaling factor - local scale = self.getScale() - --Set position for the sphere - local pos = self.getPosition() - pos.y=pos.y+(1.25*scale.y) - --Ray trace to get all objects - return Physics.cast({ - origin=pos, direction={0,1,0}, type=2, max_distance=0, - size={13*scale.x,13*scale.y,13*scale.z}, --debug=true - }) -end - -function removeAllClues() - startLuaCoroutine(self, "clueRemovalCoroutine") -end - -function clueRemovalCoroutine() - for _, entry in ipairs(findValidItemsInSphere()) do - -- Do not put the table in the garbage - if entry.hit_object.getGUID() ~= "4ee1f2" then - --delay for animation purposes - for k=1,10 do - coroutine.yield(0) - end - trashCan.putObject(entry.hit_object) - end - end - --coroutines must return a value - return 1 -end - - -function onDestroy() - Timer.destroy(timerID) +--Counting Bowl by MrStump + +--Table of items which can be counted in this Bowl +--Each entry has 2 things to enter + --a name (what is in the name field of that object) + --a value (how much it is worth) +--A number in the items description will override the number entry in this table +validCountItemList = { + ["Clue"] = 1, + [""] = 1, + --["Name3"] = 2, + --["Name4"] = 31, + --Add more entries as needed + --Remove the -- from before a line for the script to use it +} + +--END OF CODE TO EDIT + +function onLoad() + timerID = self.getGUID()..math.random(9999999999999) + --Sets position/color for the button, spawns it + self.createButton({ + label="", click_function="removeAllClues", function_owner=self, + position={0,0,0}, rotation={0,8,0}, height=0, width=0, + font_color={0,0,0}, font_size=2000 + }) + --Start timer which repeats forever, running countItems() every second + Timer.create({ + identifier=timerID, + function_name="countItems", function_owner=self, + repetitions=0, delay=1 + }) + exposedValue = 0 + trashCan = getObjectFromGUID("147e80") +end + +function findValidItemsInSphere() + return filterByValidity(findItemsInSphere()) +end + +--Activated once per second, counts items in bowls +function countItems() + local totalValue = -1 + local countableItems = findValidItemsInSphere() + for ind, entry in ipairs(countableItems) do + local descValue = tonumber(entry.hit_object.getDescription()) + local stackMult = math.abs(entry.hit_object.getQuantity()) + --Use value in description if available + if descValue ~= nil then + totalValue = totalValue + descValue * stackMult + else + --Otherwise use the value in validCountItemList + totalValue = totalValue + validCountItemList[entry.hit_object.getName()] * stackMult + end + end + exposedValue = totalValue + --Updates the number display + self.editButton({index=0, label=totalValue}) +end + +function filterByValidity(items) + retval = {} + for _, entry in ipairs(items) do + --Ignore the bowl + if entry.hit_object ~= self then + --Ignore if not in validCountItemList + local tableEntry = validCountItemList[entry.hit_object.getName()] + if tableEntry ~= nil then + table.insert(retval, entry) + end + end + end + return retval +end + + +--Gets the items in the bowl for countItems to count +function findItemsInSphere() + --Find scaling factor + local scale = self.getScale() + --Set position for the sphere + local pos = self.getPosition() + pos.y=pos.y+(1.25*scale.y) + --Ray trace to get all objects + return Physics.cast({ + origin=pos, direction={0,1,0}, type=2, max_distance=0, + size={6*scale.x,6*scale.y,6*scale.z}, --debug=true + }) +end + +function removeAllClues() + startLuaCoroutine(self, "clueRemovalCoroutine") +end + +function clueRemovalCoroutine() + for _, entry in ipairs(findValidItemsInSphere()) do + -- Do not put the table in the garbage + if entry.hit_object.getGUID() ~= "4ee1f2" then + --delay for animation purposes + for k=1,10 do + coroutine.yield(0) + end + trashCan.putObject(entry.hit_object) + end + end + --coroutines must return a value + return 1 +end + + +function onDestroy() + Timer.destroy(timerID) end \ No newline at end of file diff --git a/unpacked/Custom_Model 37be78.ttslua b/unpacked/Custom_Model 37be78.ttslua index 6a6e29756..3308d2100 100644 --- a/unpacked/Custom_Model 37be78.ttslua +++ b/unpacked/Custom_Model 37be78.ttslua @@ -1,114 +1,113 @@ ---Counting Bowl by MrStump - ---Table of items which can be counted in this Bowl ---Each entry has 2 things to enter - --a name (what is in the name field of that object) - --a value (how much it is worth) ---A number in the items description will override the number entry in this table -validCountItemList = { - ["Clue"] = 1, - [""] = 1, - --["Name3"] = 2, - --["Name4"] = 31, - --Add more entries as needed - --Remove the -- from before a line for the script to use it -} - ---END OF CODE TO EDIT - -function onLoad() - timerID = self.getGUID()..math.random(9999999999999) - - --Sets position/color for the button, spawns it - self.createButton({ - label="", click_function="removeAllClues", function_owner=self, - position={0,0,0}, rotation={0,8,0}, height=0, width=0, - font_color={0,0,0}, font_size=2000 - }) - --Start timer which repeats forever, running countItems() every second - Timer.create({ - identifier=timerID, - function_name="countItems", function_owner=self, - repetitions=0, delay=1 - }) - exposedValue = 0 - trashCan = getObjectFromGUID("4b8594") -end - -function findValidItemsInSphere() - return filterByValidity(findItemsInSphere()) -end - ---Activated once per second, counts items in bowls -function countItems() - local totalValue = -1 - local countableItems = findValidItemsInSphere() - for ind, entry in ipairs(countableItems) do - local descValue = tonumber(entry.hit_object.getDescription()) - local stackMult = math.abs(entry.hit_object.getQuantity()) - --Use value in description if available - if descValue ~= nil then - totalValue = totalValue + descValue * stackMult - else - --Otherwise use the value in validCountItemList - totalValue = totalValue + validCountItemList[entry.hit_object.getName()] * stackMult - end - end - exposedValue = totalValue - --Updates the number display - self.editButton({index=0, label=totalValue}) -end - -function filterByValidity(items) - retval = {} - for _, entry in ipairs(items) do - --Ignore the bowl - if entry.hit_object ~= self then - --Ignore if not in validCountItemList - local tableEntry = validCountItemList[entry.hit_object.getName()] - if tableEntry ~= nil then - table.insert(retval, entry) - end - end - end - return retval -end - - ---Gets the items in the bowl for countItems to count -function findItemsInSphere() - --Find scaling factor - local scale = self.getScale() - --Set position for the sphere - local pos = self.getPosition() - pos.y=pos.y+(1.25*scale.y) - --Ray trace to get all objects - return Physics.cast({ - origin=pos, direction={0,1,0}, type=2, max_distance=0, - size={13*scale.x,13*scale.y,13*scale.z}, --debug=true - }) -end - -function removeAllClues() - startLuaCoroutine(self, "clueRemovalCoroutine") -end - -function clueRemovalCoroutine() - for _, entry in ipairs(findValidItemsInSphere()) do - -- Do not put the table in the garbage - if entry.hit_object.getGUID() ~= "4ee1f2" then - --delay for animation purposes - for k=1,10 do - coroutine.yield(0) - end - trashCan.putObject(entry.hit_object) - end - end - --coroutines must return a value - return 1 -end - - -function onDestroy() - Timer.destroy(timerID) +--Counting Bowl by MrStump + +--Table of items which can be counted in this Bowl +--Each entry has 2 things to enter + --a name (what is in the name field of that object) + --a value (how much it is worth) +--A number in the items description will override the number entry in this table +validCountItemList = { + ["Clue"] = 1, + [""] = 1, + --["Name3"] = 2, + --["Name4"] = 31, + --Add more entries as needed + --Remove the -- from before a line for the script to use it +} + +--END OF CODE TO EDIT + +function onLoad() + timerID = self.getGUID()..math.random(9999999999999) + --Sets position/color for the button, spawns it + self.createButton({ + label="", click_function="removeAllClues", function_owner=self, + position={0,0,0}, rotation={0,8,0}, height=0, width=0, + font_color={0,0,0}, font_size=2000 + }) + --Start timer which repeats forever, running countItems() every second + Timer.create({ + identifier=timerID, + function_name="countItems", function_owner=self, + repetitions=0, delay=1 + }) + exposedValue = 0 + trashCan = getObjectFromGUID("147e80") +end + +function findValidItemsInSphere() + return filterByValidity(findItemsInSphere()) +end + +--Activated once per second, counts items in bowls +function countItems() + local totalValue = -1 + local countableItems = findValidItemsInSphere() + for ind, entry in ipairs(countableItems) do + local descValue = tonumber(entry.hit_object.getDescription()) + local stackMult = math.abs(entry.hit_object.getQuantity()) + --Use value in description if available + if descValue ~= nil then + totalValue = totalValue + descValue * stackMult + else + --Otherwise use the value in validCountItemList + totalValue = totalValue + validCountItemList[entry.hit_object.getName()] * stackMult + end + end + exposedValue = totalValue + --Updates the number display + self.editButton({index=0, label=totalValue}) +end + +function filterByValidity(items) + retval = {} + for _, entry in ipairs(items) do + --Ignore the bowl + if entry.hit_object ~= self then + --Ignore if not in validCountItemList + local tableEntry = validCountItemList[entry.hit_object.getName()] + if tableEntry ~= nil then + table.insert(retval, entry) + end + end + end + return retval +end + + +--Gets the items in the bowl for countItems to count +function findItemsInSphere() + --Find scaling factor + local scale = self.getScale() + --Set position for the sphere + local pos = self.getPosition() + pos.y=pos.y+(1.25*scale.y) + --Ray trace to get all objects + return Physics.cast({ + origin=pos, direction={0,1,0}, type=2, max_distance=0, + size={6*scale.x,6*scale.y,6*scale.z}, --debug=true + }) +end + +function removeAllClues() + startLuaCoroutine(self, "clueRemovalCoroutine") +end + +function clueRemovalCoroutine() + for _, entry in ipairs(findValidItemsInSphere()) do + -- Do not put the table in the garbage + if entry.hit_object.getGUID() ~= "4ee1f2" then + --delay for animation purposes + for k=1,10 do + coroutine.yield(0) + end + trashCan.putObject(entry.hit_object) + end + end + --coroutines must return a value + return 1 +end + + +function onDestroy() + Timer.destroy(timerID) end \ No newline at end of file diff --git a/unpacked/Custom_Model b486bd.yaml b/unpacked/Custom_Model b486bd.yaml index 6d31632e8..39294f1b8 100644 --- a/unpacked/Custom_Model b486bd.yaml +++ b/unpacked/Custom_Model b486bd.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: - b: 0.141095042 - g: 0.141095042 - r: 0.141095042 + b: 0.141093612 + g: 0.141093612 + r: 0.141093612 CustomMesh: CastShadows: true ColliderURL: '' diff --git a/unpacked/Custom_Model d86b7c.ttslua b/unpacked/Custom_Model d86b7c.ttslua index e06dec896..3308d2100 100644 --- a/unpacked/Custom_Model d86b7c.ttslua +++ b/unpacked/Custom_Model d86b7c.ttslua @@ -1,113 +1,113 @@ ---Counting Bowl by MrStump - ---Table of items which can be counted in this Bowl ---Each entry has 2 things to enter - --a name (what is in the name field of that object) - --a value (how much it is worth) ---A number in the items description will override the number entry in this table -validCountItemList = { - ["Clue"] = 1, - [""] = 1, - --["Name3"] = 2, - --["Name4"] = 31, - --Add more entries as needed - --Remove the -- from before a line for the script to use it -} - ---END OF CODE TO EDIT - -function onLoad() - timerID = self.getGUID()..math.random(9999999999999) - --Sets position/color for the button, spawns it - self.createButton({ - label="", click_function="removeAllClues", function_owner=self, - position={0,0,0}, rotation={0,8,0}, height=0, width=0, - font_color={0,0,0}, font_size=2000 - }) - --Start timer which repeats forever, running countItems() every second - Timer.create({ - identifier=timerID, - function_name="countItems", function_owner=self, - repetitions=0, delay=1 - }) - exposedValue = 0 - trashCan = getObjectFromGUID("147e80") -end - -function findValidItemsInSphere() - return filterByValidity(findItemsInSphere()) -end - ---Activated once per second, counts items in bowls -function countItems() - local totalValue = -1 - local countableItems = findValidItemsInSphere() - for ind, entry in ipairs(countableItems) do - local descValue = tonumber(entry.hit_object.getDescription()) - local stackMult = math.abs(entry.hit_object.getQuantity()) - --Use value in description if available - if descValue ~= nil then - totalValue = totalValue + descValue * stackMult - else - --Otherwise use the value in validCountItemList - totalValue = totalValue + validCountItemList[entry.hit_object.getName()] * stackMult - end - end - exposedValue = totalValue - --Updates the number display - self.editButton({index=0, label=totalValue}) -end - -function filterByValidity(items) - retval = {} - for _, entry in ipairs(items) do - --Ignore the bowl - if entry.hit_object ~= self then - --Ignore if not in validCountItemList - local tableEntry = validCountItemList[entry.hit_object.getName()] - if tableEntry ~= nil then - table.insert(retval, entry) - end - end - end - return retval -end - - ---Gets the items in the bowl for countItems to count -function findItemsInSphere() - --Find scaling factor - local scale = self.getScale() - --Set position for the sphere - local pos = self.getPosition() - pos.y=pos.y+(1.25*scale.y) - --Ray trace to get all objects - return Physics.cast({ - origin=pos, direction={0,1,0}, type=2, max_distance=0, - size={13*scale.x,13*scale.y,13*scale.z}, --debug=true - }) -end - -function removeAllClues() - startLuaCoroutine(self, "clueRemovalCoroutine") -end - -function clueRemovalCoroutine() - for _, entry in ipairs(findValidItemsInSphere()) do - -- Do not put the table in the garbage - if entry.hit_object.getGUID() ~= "4ee1f2" then - --delay for animation purposes - for k=1,10 do - coroutine.yield(0) - end - trashCan.putObject(entry.hit_object) - end - end - --coroutines must return a value - return 1 -end - - -function onDestroy() - Timer.destroy(timerID) +--Counting Bowl by MrStump + +--Table of items which can be counted in this Bowl +--Each entry has 2 things to enter + --a name (what is in the name field of that object) + --a value (how much it is worth) +--A number in the items description will override the number entry in this table +validCountItemList = { + ["Clue"] = 1, + [""] = 1, + --["Name3"] = 2, + --["Name4"] = 31, + --Add more entries as needed + --Remove the -- from before a line for the script to use it +} + +--END OF CODE TO EDIT + +function onLoad() + timerID = self.getGUID()..math.random(9999999999999) + --Sets position/color for the button, spawns it + self.createButton({ + label="", click_function="removeAllClues", function_owner=self, + position={0,0,0}, rotation={0,8,0}, height=0, width=0, + font_color={0,0,0}, font_size=2000 + }) + --Start timer which repeats forever, running countItems() every second + Timer.create({ + identifier=timerID, + function_name="countItems", function_owner=self, + repetitions=0, delay=1 + }) + exposedValue = 0 + trashCan = getObjectFromGUID("147e80") +end + +function findValidItemsInSphere() + return filterByValidity(findItemsInSphere()) +end + +--Activated once per second, counts items in bowls +function countItems() + local totalValue = -1 + local countableItems = findValidItemsInSphere() + for ind, entry in ipairs(countableItems) do + local descValue = tonumber(entry.hit_object.getDescription()) + local stackMult = math.abs(entry.hit_object.getQuantity()) + --Use value in description if available + if descValue ~= nil then + totalValue = totalValue + descValue * stackMult + else + --Otherwise use the value in validCountItemList + totalValue = totalValue + validCountItemList[entry.hit_object.getName()] * stackMult + end + end + exposedValue = totalValue + --Updates the number display + self.editButton({index=0, label=totalValue}) +end + +function filterByValidity(items) + retval = {} + for _, entry in ipairs(items) do + --Ignore the bowl + if entry.hit_object ~= self then + --Ignore if not in validCountItemList + local tableEntry = validCountItemList[entry.hit_object.getName()] + if tableEntry ~= nil then + table.insert(retval, entry) + end + end + end + return retval +end + + +--Gets the items in the bowl for countItems to count +function findItemsInSphere() + --Find scaling factor + local scale = self.getScale() + --Set position for the sphere + local pos = self.getPosition() + pos.y=pos.y+(1.25*scale.y) + --Ray trace to get all objects + return Physics.cast({ + origin=pos, direction={0,1,0}, type=2, max_distance=0, + size={6*scale.x,6*scale.y,6*scale.z}, --debug=true + }) +end + +function removeAllClues() + startLuaCoroutine(self, "clueRemovalCoroutine") +end + +function clueRemovalCoroutine() + for _, entry in ipairs(findValidItemsInSphere()) do + -- Do not put the table in the garbage + if entry.hit_object.getGUID() ~= "4ee1f2" then + --delay for animation purposes + for k=1,10 do + coroutine.yield(0) + end + trashCan.putObject(entry.hit_object) + end + end + --coroutines must return a value + return 1 +end + + +function onDestroy() + Timer.destroy(timerID) end \ No newline at end of file diff --git a/unpacked/Custom_Model d86b7c.yaml b/unpacked/Custom_Model d86b7c.yaml index b427b76c4..39287a8ab 100644 --- a/unpacked/Custom_Model d86b7c.yaml +++ b/unpacked/Custom_Model d86b7c.yaml @@ -45,7 +45,7 @@ Transform: posZ: 9.560504 rotX: 359.9201 rotY: 269.999023 - rotZ: 0.016893357 + rotZ: 0.0168935843 scaleX: 0.325000077 scaleY: 0.325000077 scaleZ: 0.325000077 diff --git a/unpacked/Custom_Model Neutral 07c325.yaml b/unpacked/Custom_Model Neutral 07c325.yaml index 8b5d70664..d1df3cf52 100644 --- a/unpacked/Custom_Model Neutral 07c325.yaml +++ b/unpacked/Custom_Model Neutral 07c325.yaml @@ -253,11 +253,11 @@ Sticky: true Tooltip: true Transform: posX: -47.76499 - posY: 1.61429274 - posZ: 21.0344276 + posY: 1.61429286 + posZ: 21.0344334 rotX: 359.9201 - rotY: 270.0127 - rotZ: 0.016871864 + rotY: 270.014526 + rotZ: 0.01686822 scaleX: 0.45 scaleY: 0.6 scaleZ: 0.45 diff --git a/unpacked/Custom_Model Neutral 29fae0.yaml b/unpacked/Custom_Model Neutral 29fae0.yaml index ad725ba48..240636a8b 100644 --- a/unpacked/Custom_Model Neutral 29fae0.yaml +++ b/unpacked/Custom_Model Neutral 29fae0.yaml @@ -252,12 +252,12 @@ States: Sticky: true Tooltip: true Transform: - posX: -47.76462 - posY: 1.60115743 - posZ: -23.5716934 + posX: -47.76472 + posY: 1.60115767 + posZ: -23.571785 rotX: 359.9201 - rotY: 269.976868 - rotZ: 0.0169298481 + rotY: 269.974121 + rotZ: 0.016928738 scaleX: 0.45 scaleY: 0.6 scaleZ: 0.45 diff --git a/unpacked/Custom_Model Neutral 5954d0.yaml b/unpacked/Custom_Model Neutral 5954d0.yaml index 483255a1f..d1e2c9cc2 100644 --- a/unpacked/Custom_Model Neutral 5954d0.yaml +++ b/unpacked/Custom_Model Neutral 5954d0.yaml @@ -252,12 +252,12 @@ States: Sticky: true Tooltip: true Transform: - posX: -47.7652321 - posY: 1.6018852 - posZ: -21.10298 + posX: -47.7654228 + posY: 1.60188544 + posZ: -21.1030712 rotX: 359.9201 - rotY: 269.979431 - rotZ: 0.0169188045 + rotY: 269.976257 + rotZ: 0.0169209819 scaleX: 0.45 scaleY: 0.6 scaleZ: 0.45 diff --git a/unpacked/Custom_Model Neutral 62e061.yaml b/unpacked/Custom_Model Neutral 62e061.yaml index 3878aa60a..13fe0e1e7 100644 --- a/unpacked/Custom_Model Neutral 62e061.yaml +++ b/unpacked/Custom_Model Neutral 62e061.yaml @@ -252,12 +252,12 @@ States: Sticky: true Tooltip: true Transform: - posX: -47.7645149 + posX: -47.7645226 posY: 1.6146549 - posZ: 22.2661839 + posZ: 22.2662411 rotX: 359.9201 - rotY: 269.982544 - rotZ: 0.0169220828 + rotY: 269.9782 + rotZ: 0.01692675 scaleX: 0.45 scaleY: 0.6 scaleZ: 0.45 diff --git a/unpacked/Custom_Model Neutral 6ed29f.yaml b/unpacked/Custom_Model Neutral 6ed29f.yaml index 429077e31..9cb2022e6 100644 --- a/unpacked/Custom_Model Neutral 6ed29f.yaml +++ b/unpacked/Custom_Model Neutral 6ed29f.yaml @@ -252,12 +252,12 @@ States: Sticky: true Tooltip: true Transform: - posX: -20.1422634 - posY: 1.56388891 - posZ: -19.35986 - rotX: 0.0168353133 - rotY: 180.022064 - rotZ: 0.07989108 + posX: -20.14231 + posY: 1.563889 + posZ: -19.359951 + rotX: 0.0168278 + rotY: 180.027328 + rotZ: 0.07989224 scaleX: 0.45 scaleY: 0.6 scaleZ: 0.45 diff --git a/unpacked/Custom_Model Neutral 99d430.yaml b/unpacked/Custom_Model Neutral 99d430.yaml index 9f795d161..3cf8bb7dd 100644 --- a/unpacked/Custom_Model Neutral 99d430.yaml +++ b/unpacked/Custom_Model Neutral 99d430.yaml @@ -252,12 +252,12 @@ States: Sticky: true Tooltip: true Transform: - posX: -17.7868156 - posY: 1.571978 - posZ: 19.2610683 + posX: -17.78682 + posY: 1.57197785 + posZ: 19.2611141 rotX: 359.983124 - rotY: 359.9851 - rotZ: 359.9201 + rotY: 359.987762 + rotZ: 359.920135 scaleX: 0.45 scaleY: 0.6 scaleZ: 0.45 diff --git a/unpacked/Custom_Model Neutral 9c3361.yaml b/unpacked/Custom_Model Neutral 9c3361.yaml index 51c7895f6..f3c40f619 100644 --- a/unpacked/Custom_Model Neutral 9c3361.yaml +++ b/unpacked/Custom_Model Neutral 9c3361.yaml @@ -253,11 +253,11 @@ Sticky: true Tooltip: true Transform: posX: -18.9033 - posY: 1.5621618 - posZ: -19.35976 - rotX: 0.0168666262 - rotY: 179.998672 - rotZ: 0.07988452 + posY: 1.56216168 + posZ: -19.3598061 + rotX: 0.0168639887 + rotY: 180.000092 + rotZ: 0.0798811242 scaleX: 0.45 scaleY: 0.6 scaleZ: 0.45 diff --git a/unpacked/Custom_Model Neutral b28feb.yaml b/unpacked/Custom_Model Neutral b28feb.yaml index bf1abb520..8a961aa23 100644 --- a/unpacked/Custom_Model Neutral b28feb.yaml +++ b/unpacked/Custom_Model Neutral b28feb.yaml @@ -253,11 +253,11 @@ Sticky: true Tooltip: true Transform: posX: -17.6732635 - posY: 1.56044686 - posZ: -19.35955 - rotX: 0.0168237463 - rotY: 180.027878 - rotZ: 0.0798923746 + posY: 1.560447 + posZ: -19.3595963 + rotX: 0.0168164689 + rotY: 180.033676 + rotZ: 0.0798922 scaleX: 0.45 scaleY: 0.6 scaleZ: 0.45 diff --git a/unpacked/Custom_Model Neutral b79001.yaml b/unpacked/Custom_Model Neutral b79001.yaml index 4abc8236c..54eb82fde 100644 --- a/unpacked/Custom_Model Neutral b79001.yaml +++ b/unpacked/Custom_Model Neutral b79001.yaml @@ -253,10 +253,10 @@ Sticky: true Tooltip: true Transform: posX: -19.0252056 - posY: 1.57370448 - posZ: 19.261364 + posY: 1.57370436 + posZ: 19.2614727 rotX: 359.983063 - rotY: 359.9547 + rotY: 359.9533 rotZ: 359.920135 scaleX: 0.45 scaleY: 0.6 diff --git a/unpacked/Custom_Model Neutral eec4ca.yaml b/unpacked/Custom_Model Neutral eec4ca.yaml index 7399a70c0..5c994cc49 100644 --- a/unpacked/Custom_Model Neutral eec4ca.yaml +++ b/unpacked/Custom_Model Neutral eec4ca.yaml @@ -252,12 +252,12 @@ States: Sticky: true Tooltip: true Transform: - posX: -47.7665176 - posY: 1.61502171 - posZ: 23.5030327 + posX: -47.76662 + posY: 1.615022 + posZ: 23.5031242 rotX: 359.9201 - rotY: 269.982635 - rotZ: 0.01691597 + rotY: 269.97937 + rotZ: 0.0169182755 scaleX: 0.45 scaleY: 0.6 scaleZ: 0.45 diff --git a/unpacked/Custom_Model Neutral fa6bf1.yaml b/unpacked/Custom_Model Neutral fa6bf1.yaml index b574193ab..99a2f95a2 100644 --- a/unpacked/Custom_Model Neutral fa6bf1.yaml +++ b/unpacked/Custom_Model Neutral fa6bf1.yaml @@ -252,12 +252,12 @@ States: Sticky: true Tooltip: true Transform: - posX: -47.76521 - posY: 1.60152042 - posZ: -22.341383 + posX: -47.7653923 + posY: 1.60152066 + posZ: -22.3414745 rotX: 359.9201 - rotY: 270.0193 - rotZ: 0.01686527 + rotY: 270.022217 + rotZ: 0.0168603379 scaleX: 0.45 scaleY: 0.6 scaleZ: 0.45 diff --git a/unpacked/Custom_Model Neutral fb83a7.yaml b/unpacked/Custom_Model Neutral fb83a7.yaml index ce25b398e..6b3a4516a 100644 --- a/unpacked/Custom_Model Neutral fb83a7.yaml +++ b/unpacked/Custom_Model Neutral fb83a7.yaml @@ -252,11 +252,11 @@ States: Sticky: true Tooltip: true Transform: - posX: -20.2556553 - posY: 1.57541966 - posZ: 19.26104 + posX: -20.2556763 + posY: 1.57541978 + posZ: 19.2610855 rotX: 359.9831 - rotY: 359.974243 + rotY: 359.975372 rotZ: 359.920135 scaleX: 0.45 scaleY: 0.6 diff --git a/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d/Deck 4141fb.yaml b/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d/Deck 4141fb.yaml index f0aba3f38..429a27835 100644 --- a/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d/Deck 4141fb.yaml +++ b/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d/Deck 4141fb.yaml @@ -5,196 +5,16 @@ ColorDiffuse: r: 0.713235259 ContainedObjects: - Autoraise: true - CardID: 450405 + CardID: 534700 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '4504': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Let the Storm Rage - DragSelectable: true - GMNotes: '' - GUID: e7d356 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Key of Ys (5) (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.8861542 - posY: 1.3012538 - posZ: -69.85178 - rotX: 0.02080861 - rotY: 270.0 - rotZ: 0.016771147 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 294203 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2942': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Ally. Sorcerer. - DragSelectable: true - GMNotes: '' - GUID: 37a76b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lady Esprit - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -62.02124 - posY: 1.761565 - posZ: 6.88063335 - rotX: 359.381683 - rotY: 269.978363 - rotZ: 359.9881 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226341 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d2e026 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Vicious Blow (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.40541053 - posZ: 9.630022 - rotX: 359.987427 - rotY: 270.000061 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226334 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bb640d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ever Vigilant (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.39982712 - posZ: 30.3300285 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 533600 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5336': + '5347': BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325459410603160/F6E63B024BAE92FF455E3ED55455C2A87E9D7F35/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325549672940139/4F29E81F67811E6FF4124295CA1347DCBDB8D37E/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -202,7 +22,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 1e2b2c + GUID: 2c1846 Grid: true GridProjection: false Hands: true @@ -213,33 +33,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: CardCustom - Nickname: Glimpse the Unthinkable (1) + Nickname: Slip Away (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 19.2841225 - posY: 1.36854243 - posZ: 53.34116 - rotX: 0.0208014976 - rotY: 270.025421 - rotZ: 0.0167802349 + posX: 15.4047441 + posY: 1.637285 + posZ: 42.6227951 + rotX: 0.00416094344 + rotY: 270.006378 + rotZ: 0.00335595 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 450801 + CardID: 296704 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '4508': + '2967': BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -247,7 +67,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 67a72c + GUID: 96ae32 Grid: true GridProjection: false Hands: true @@ -258,24 +78,69 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Sleight of Hand (Taboo) + Nickname: Monstrous Transformation SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -49.8296623 - posY: 1.37343013 - posZ: -77.37533 - rotX: 0.0208089724 - rotY: 269.9997 - rotZ: 0.0167706124 + posX: -50.55273 + posY: 1.30414021 + posZ: -57.92313 + rotX: 0.0208086055 + rotY: 270.0 + rotZ: 0.016771147 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 430649 + CardID: 381050 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3810': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 67e006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Split the Angle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.436187 + posY: 2.09197116 + posZ: -46.23643 + rotX: 0.03567951 + rotY: 270.066925 + rotZ: 0.0572711229 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430636 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -292,7 +157,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: d48b25 + GUID: c17f2c Grid: true GridProjection: false Hands: true @@ -303,33 +168,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Higher Education (3) + Nickname: Forewarned (1) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: posX: 88.05002 - posY: 1.41080713 - posZ: -4.009982 + posY: 1.40212178 + posZ: 28.1900234 rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984528 + rotY: 269.999878 + rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 376840 + CardID: 315259 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3768': + '3152': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -337,7 +202,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: ecd087 + GUID: e7f37b Grid: true GridProjection: false Hands: true @@ -348,41 +213,41 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Caught Red-Handed + Nickname: Suggestion (4) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -63.359684 - posY: 3.53130126 - posZ: -65.6879654 - rotX: 0.0167008284 - rotY: 269.999939 - rotZ: 180.0173 + posX: 102.749992 + posY: 1.41696262 + posZ: -38.80001 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 230311 + CardID: 504613 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2303': + '4550': BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: '' + Description: Weakness DragSelectable: true GMNotes: '' - GUID: 30f860 + GUID: '313167' Grid: true GridProjection: false Hands: true @@ -393,75 +258,30 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Blinding Light + Nickname: Yaztaroth SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -21.6 - posY: 1.33260369 - posZ: 64.45 - rotX: 0.0208177511 - rotY: 269.96698 - rotZ: 0.0167625658 + posX: -41.1091042 + posY: 1.2648226 + posZ: 55.7025 + rotX: 0.0210862644 + rotY: 269.9919 + rotZ: 0.014994096 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 226327 + CardID: 262201 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 86ee68 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Machete - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.230006 - posY: 1.34514689 - posZ: 69.05001 - rotX: 0.0208164584 - rotY: 269.9694 - rotZ: 0.0167631 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447832 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4478': + '2622': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ @@ -469,10 +289,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: '' + Description: Minds in Harmony DragSelectable: true GMNotes: '' - GUID: 1ac667 + GUID: 9c56d3 Grid: true GridProjection: false Hands: true @@ -483,41 +303,41 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Practice Makes Perfect + Nickname: Ancient Stone (4) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -44.6022263 - posY: 2.84541368 - posZ: -100.448311 - rotX: 0.0208086036 - rotY: 270.0 - rotZ: 0.0167711917 + posX: 88.05001 + posY: 1.41825175 + posZ: -31.609993 + rotX: 359.987427 + rotY: 270.000122 + rotZ: 359.984528 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 528400 + CardID: 368816 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5284': + '3688': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1479946491539972527/879AC4638A6CD46470B35AB4D0FFBEEB4E9E5123/ - NumHeight: 1 - NumWidth: 1 + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 Type: 0 UniqueBack: false - Description: O'Bannion Driver + Description: '' DragSelectable: true GMNotes: '' - GUID: a3075e + GUID: 88d3c0 Grid: true GridProjection: false Hands: true @@ -527,25 +347,115 @@ ContainedObjects: LuaScript: '' LuaScriptState: '' MeasureMovement: false - Name: CardCustom - Nickname: Chuck Fergus (5) + Name: Card + Nickname: '"Look what I found!"' SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -58.35062 - posY: 1.30438709 - posZ: -47.4047928 - rotX: 0.02080145 - rotY: 270.024261 - rotZ: 0.01677987 + posX: -47.58142 + posY: 1.364494 + posZ: -63.58151 + rotX: 0.0207989458 + rotY: 270.040161 + rotZ: 180.0168 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368843 + CardID: 447630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4476': + 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: 30062e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Three Aces (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.8546753 + posY: 1.29860055 + posZ: -78.9555054 + rotX: 0.0208080355 + rotY: 270.0001 + rotZ: 0.01677129 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 261703 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2617': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 99989c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Quick Thinking + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 31.7500019 + posY: 1.35601819 + posZ: 78.25 + rotX: 0.0208088942 + rotY: 270.000122 + rotZ: 0.0167740677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368856 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -562,7 +472,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 06228f + GUID: 83c86b Grid: true GridProjection: false Hands: true @@ -573,33 +483,303 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Stroke of Luck (2) + Nickname: Alter Fate (3) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: posX: 110.15 - posY: 1.40292978 - posZ: 7.200001 + posY: 1.4122355 + posZ: -27.3000031 rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 + rotY: 269.999969 + rotZ: 359.984528 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 529800 + CardID: 235126 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5298': + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dac4f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scrying Mirror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.19547 + posY: 1.29771376 + posZ: -75.35826 + rotX: 0.0207170267 + rotY: 270.31076 + rotZ: 0.0168823414 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315261 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3add54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cheat Death (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.749962 + posY: 1.38609779 + posZ: -45.70004 + rotX: 0.02080863 + rotY: 269.9999 + rotZ: 0.0167719424 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Logistical Genius + DragSelectable: true + GMNotes: '' + GUID: 4120f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lt. Wilson Stewart + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3919563 + posY: 1.31971157 + posZ: -46.01424 + rotX: 359.394073 + rotY: 270.001282 + rotZ: 0.016761262 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '75': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Trap. + DragSelectable: true + GMNotes: '' + GUID: c7b748 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fishing Net + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.2526932 + posY: 2.35122013 + posZ: -85.8765945 + rotX: 0.0208091941 + rotY: 270.0 + rotZ: 0.0167707223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2666': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: fd9c56 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Through the Gates + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 74.34954 + posY: 1.57672024 + posZ: 61.3802452 + rotX: 0.0203758851 + rotY: 269.999542 + rotZ: 0.01571979 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e55fe0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"Get over here!" (2)' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.9489136 + posY: 1.30322528 + posZ: -63.038887 + rotX: 0.0208085552 + rotY: 270.0 + rotZ: 0.0167713985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 528300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5283': BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1479947038306998674/2DDC64951543A3A433622C6D97CA08D087D65C18/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1343712472682594049/641C4EF294A9321FDD632C8B79FA0C6A744595D2/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -607,7 +787,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: fee102 + GUID: 042a0c Grid: true GridProjection: false Hands: true @@ -618,159 +798,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: CardCustom - Nickname: Liquid Courage (1) + Nickname: Streetwise SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -63.2431641 - posY: 1.30250943 - posZ: -47.74949 - rotX: 0.0208080523 - rotY: 270.0 - rotZ: 0.016771324 + posX: -62.5475235 + posY: 1.301032 + posZ: -53.66011 + rotX: 0.0208082329 + rotY: 269.999939 + rotZ: 0.01677158 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 430908 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2728': - 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: '' - DragSelectable: true - GMNotes: '' - GUID: 8aa0c3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Deny Existence - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -21.6000042 - posY: 1.339336 - posZ: 87.45 - rotX: 0.0208175164 - rotY: 269.96698 - rotZ: 0.0167635437 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 293217 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2932': - 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: Seeker - DragSelectable: true - GMNotes: '' - GUID: 1433eb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Grisly Totem (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.7730675 - posY: 1.36253119 - posZ: -55.4446869 - rotX: 0.020809114 - rotY: 270.0 - rotZ: 0.0167707428 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368417 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '812175' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Logical Reasoning - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.240002 - posY: 1.33725178 - posZ: 57.5499954 - rotX: 0.0208138786 - rotY: 269.986359 - rotZ: 0.016766822 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226351 + CardID: 226312 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -787,7 +832,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 2f9de4 + GUID: acf2b0 Grid: true GridProjection: false Hands: true @@ -798,33 +843,78 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Keen Eye (3) + Nickname: '"If it bleeds..."' SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 95.87002 - posY: 1.41285515 - posZ: -17.969986 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 + posX: 12.6300058 + posY: 1.34705472 + posZ: 71.3500061 + rotX: 0.0207952652 + rotY: 270.027039 + rotZ: 0.01677259 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368406 + CardID: 312513 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2304': + '3125': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: The Nightmare is Over + DragSelectable: true + GMNotes: '' + GUID: 73bccf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Penny White + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.93601 + posY: 1.35457325 + posZ: 68.1201248 + rotX: 0.0208114143 + rotY: 269.988525 + rotZ: 0.0167672429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2758': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -832,7 +922,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: bbfe9b + GUID: aa3984 Grid: true GridProjection: false Hands: true @@ -843,24 +933,159 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Guidance + Nickname: Winging It SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -3.239994 - posY: 1.34465742 - posZ: 82.8500061 - rotX: 0.0208123866 - rotY: 269.986359 - rotZ: 0.0167671517 + posX: 45.97 + posY: 1.35781634 + posZ: 66.75 + rotX: 0.02080432 + rotY: 270.012939 + rotZ: 0.0167804044 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 545208 + CardID: 447933 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4479': + 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: 7dc42a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Safeguard (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.1557045 + posY: 1.29952526 + posZ: -70.459816 + rotX: 0.0208098479 + rotY: 269.9981 + rotZ: 0.016770659 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 431731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3744': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bcf406 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shell Shock + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.7654457 + posY: 1.66001654 + posZ: -46.2021942 + rotX: 0.167903721 + rotY: 270.0219 + rotZ: 0.438815027 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274011 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2740': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6945f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Watcher from Another Dimension + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.8951149 + posY: 1.36539435 + posZ: -57.9189568 + rotX: 0.0208037551 + rotY: 270.0197 + rotZ: 0.0167778321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545214 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -874,10 +1099,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: '' + Description: Weakness DragSelectable: true GMNotes: '' - GUID: 9e4e11 + GUID: 180b5b Grid: true GridProjection: false Hands: true @@ -888,24 +1113,159 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Alter Fate (1) + Nickname: Sell Your Soul SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -55.9760551 - posY: 3.28508377 - posZ: -73.30521 - rotX: 0.0208075289 - rotY: 270.0092 - rotZ: 0.016770035 + posX: -51.9590836 + posY: 3.16908 + posZ: -74.77038 + rotX: 0.0208086688 + rotY: 269.999756 + rotZ: 0.0167709328 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368505 + CardID: 430638 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3a0df6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scientific Theory (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.403983 + posZ: 21.2900238 + rotX: 359.987427 + rotY: 270.000061 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2778': + 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: 5ada0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hawk-Eye Folding Camera + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.4610023 + posY: 1.32776082 + posZ: 58.8984222 + rotX: 0.0208074246 + rotY: 269.998047 + rotZ: 0.0167737659 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5ec2d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Boxing Gloves + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.93731 + posY: 1.29940331 + posZ: -74.86947 + rotX: 0.0208085179 + rotY: 269.999969 + rotZ: 0.0167706087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368514 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -922,7 +1282,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 0f32e8 + GUID: 603e29 Grid: true GridProjection: false Hands: true @@ -933,18 +1293,18 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Run For Your Life + Nickname: Smoking Pipe SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 64.07 - posY: 1.36573625 - posZ: 71.35 - rotX: 0.0208081417 - rotY: 269.997284 - rotZ: 0.01677328 + posX: 57.27 + posY: 1.36595976 + posZ: 80.55 + rotX: 0.02080983 + rotY: 269.99408 + rotZ: 0.0167723168 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -995,16 +1355,16 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368524 + CardID: 314802 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2096': + '3148': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -1012,7 +1372,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: bca49e + GUID: 3dc82f Grid: true GridProjection: false Hands: true @@ -1023,33 +1383,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Charisma (3) + Nickname: Try and Try Again (1) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 116.94 - posY: 1.39647543 - posZ: 25.6000023 + posX: 110.15 + posY: 1.39982784 + posZ: 18.7000046 rotX: 359.987427 - rotY: 269.999878 - rotZ: 359.984528 + rotY: 270.000031 + rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368824 + CardID: 292814 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3688': + '2928': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -1057,7 +1417,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: f474b1 + GUID: ec38db Grid: true GridProjection: false Hands: true @@ -1068,33 +1428,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Stray Cat + Nickname: Warning Shot SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -42.8579521 - posY: 1.36627233 - posZ: -63.36624 - rotX: 0.0207980759 - rotY: 270.040222 - rotZ: 180.016785 + posX: -59.52426 + posY: 1.50795782 + posZ: -53.83897 + rotX: 0.02122694 + rotY: 270.0166 + rotZ: 0.0197900087 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 527312 + CardID: 230302 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5273': + '2303': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -1102,7 +1462,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 122e98 + GUID: 59b24f Grid: true GridProjection: false Hands: true @@ -1113,75 +1473,30 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Lucid Dreaming (2) + Nickname: Defiance SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -49.90816 - posY: 1.29874861 - posZ: -77.14222 - rotX: 0.0208085887 - rotY: 270.0 - rotZ: 0.0167711675 + posX: -18.2000027 + posY: 1.33855116 + posZ: 80.55 + rotX: 0.0208174158 + rotY: 269.971 + rotZ: 0.016762618 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 230502 + CardID: 430808 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2305': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: fa777f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Foolishness - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.8825455 - posY: 3.39966679 - posZ: -65.17031 - rotX: 0.0208071936 - rotY: 270.010773 - rotZ: 0.0167639218 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 313906 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3139': + '2732': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ @@ -1192,7 +1507,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 5e32a5 + GUID: 9e5cd2 Grid: true GridProjection: false Hands: true @@ -1203,24 +1518,69 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Preposterous Sketches (2) + Nickname: Curiosity SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 88.05002 - posY: 1.40336251 - posZ: 23.590023 - rotX: 359.987427 - rotY: 270.0001 - rotZ: 359.984558 + posX: 0.160005137 + posY: 1.34723866 + posZ: 87.4500046 + rotX: 0.02081934 + rotY: 269.9646 + rotZ: 0.0167605542 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368836 + CardID: 507300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5073': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814230031/3248B769E923B2621D2B441231E8B5E7FD292B7F/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 09ffbe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Clairvoyance (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.32099 + posY: 12.3031158 + posZ: -62.9833565 + rotX: 0.0208030548 + rotY: 270.0184 + rotZ: 0.01677792 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368809 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -1237,7 +1597,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: d88407 + GUID: 2c2d9a Grid: true GridProjection: false Hands: true @@ -1248,30 +1608,390 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Lure (1) + Nickname: Bait and Switch SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 110.15 - posY: 1.39734626 - posZ: 27.9000111 + posX: 45.97 + posY: 1.36118257 + posZ: 78.25 + rotX: 0.0208049417 + rotY: 270.012939 + rotZ: 0.0167780388 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440923 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4409': + 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: a2c7ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"Eat lead!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.52021 + posY: 1.40248728 + posZ: 19.8564625 + rotX: 359.987671 + rotY: 270.0178 + rotZ: 359.984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 526400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5264': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1343712298674123850/24EC16C0FFB1415768651DB10DC5C9C09A036C4E/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ff1b0c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Lucky Cigarette Case (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -60.33361 + posY: 12.3025923 + posZ: -60.46862 + rotX: 0.0208036173 + rotY: 270.0185 + rotZ: 0.01677831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3125': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Mysterious Device + DragSelectable: true + GMNotes: '' + GUID: 44334c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Puzzle Box + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.31332 + posY: 1.36443675 + posZ: -54.4657478 + rotX: 0.0208098013 + rotY: 270.0 + rotZ: 0.016772978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230352 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Gift of the Homunculi + DragSelectable: true + GMNotes: '' + GUID: 6bae15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Jewel of Aureolus (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76 + posY: 1.41799176 + posZ: -24.7099953 rotX: 359.987427 rotY: 270.000061 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368522 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 324e49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Elder Sign Amulet (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.94 + posY: 1.39833653 + posZ: 18.7000027 + rotX: 359.987427 + rotY: 269.999878 rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 374417 + CardID: 448519 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3744': + '4485': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: 3bf831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: False Awakening + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.374157 + posY: 3.52493143 + posZ: -65.7005 + rotX: 0.0124949375 + rotY: 270.0 + rotZ: 180.220673 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230359 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 91e890 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Seal of the Elder Sign (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.42233443 + posZ: -40.80999 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3790': + 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: 5d6728 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Occult Lexicon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9440126 + posY: 1.34620976 + posZ: 66.8332062 + rotX: 0.0208179 + rotY: 269.980469 + rotZ: 0.0167577937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2779': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ @@ -1282,7 +2002,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 864fb6 + GUID: a57f19 Grid: true GridProjection: false Hands: true @@ -1293,24 +2013,789 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Bait and Switch (3) + Nickname: Meat Cleaver SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 112.267654 - posY: 1.3757329 - posZ: 45.7017555 - rotX: 0.0208089612 - rotY: 269.999878 - rotZ: 0.0167736318 + posX: -30.6913071 + posY: 1.33000863 + posZ: 66.8643341 + rotX: 0.020810809 + rotY: 269.9992 + rotZ: 0.0167672466 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368413 + CardID: 507400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5074': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814231169/CC9DB1ECF956DC39CD66E66DE8F41D5F6CA4AD69/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6d5299 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Mysterious Raven + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.78255 + posY: 3.17006588 + posZ: -66.38102 + rotX: 0.02080836 + rotY: 269.9997 + rotZ: 0.0167712718 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + 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: e2767a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cunning + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 31.7500019 + posY: 1.35871112 + posZ: 87.45 + rotX: 0.02080716 + rotY: 270.000122 + rotZ: 0.0167723987 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230342 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8254d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blinding Light (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.40992677 + posZ: 5.190022 + rotX: 359.987427 + rotY: 270.000244 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 378762 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3787': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d8a324 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"I''m done runnin''!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.340292 + posY: 1.3865602 + posZ: -48.14536 + rotX: 0.02273901 + rotY: 270.006256 + rotZ: 0.008764074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + 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: '276477' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Money Talks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500023 + posY: 1.35747635 + posZ: 87.45 + rotX: 0.02081571 + rotY: 269.9749 + rotZ: 0.016764652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230343 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4224db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Time Warp (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.41054726 + posZ: 2.89002085 + rotX: 359.987427 + rotY: 270.000244 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2616': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cdfd9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Backstab + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500042 + posY: 1.34872425 + posZ: 57.5500031 + rotX: 0.0208148975 + rotY: 269.9749 + rotZ: 0.0167642422 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368832 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Big Man on Campus + DragSelectable: true + GMNotes: '' + GUID: ffdeb5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Peter Sylvestre + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.5700035 + posY: 1.35456181 + posZ: 59.8500023 + rotX: 0.0208163559 + rotY: 269.9702 + rotZ: 0.0167621151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 463500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4635': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734367322/78DD3D58A8448E57C3FA77718A71D348457D1BA6/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4b1e76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Safeguard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.7852745 + posY: 3.16652155 + posZ: -82.43585 + rotX: 0.0208083745 + rotY: 270.000031 + rotZ: 0.01677074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379931 + 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: 98c5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dream-Enhancing Serum + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.3515034 + posY: 1.525713 + posZ: 3.167102 + rotX: 359.920624 + rotY: 269.986816 + rotZ: 0.0123827262 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 313301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3133': + 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: 5f33be + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Handcuffs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.230006 + posY: 1.34649336 + posZ: 73.65001 + rotX: 0.0208175331 + rotY: 269.969421 + rotZ: 0.0167613383 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 431207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2667': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: eeb330 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Chronophobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 79.0520859 + posY: 1.485057 + posZ: 71.99658 + rotX: 0.0327025428 + rotY: 270.0003 + rotZ: 0.000334777724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448031 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4480': + 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: Stamina + DragSelectable: true + GMNotes: '' + GUID: ffe4dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Empower Self (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.621273 + posY: 1.57495975 + posZ: 9.329683 + rotX: 359.9201 + rotY: 270.008545 + rotZ: 0.0168651175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4477': + 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: 4d9a97 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sharp Vision (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.5191231 + posY: 1.29761434 + posZ: -81.5001 + rotX: 0.0208087079 + rotY: 269.999939 + rotZ: 0.01677183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 449613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4496': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8043d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Streetwise (3) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.8816643 + posY: 1.38300967 + posZ: -77.5098953 + rotX: 0.02080806 + rotY: 269.999725 + rotZ: 0.0167756937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368845 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0414b4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dig Deep (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40417051 + posZ: 2.59999847 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 465000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4650': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734341653/C4D4BB816E92F82AB3A303AC86D80974062783C4/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d371d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: .18 Derringer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.997509 + posY: 2.845373 + posZ: -121.849457 + rotX: 0.020807948 + rotY: 270.0 + rotZ: 0.01677115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368400 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -1327,7 +2812,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: eb6165 + GUID: ffa4f9 Grid: true GridProjection: false Hands: true @@ -1338,18 +2823,558 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Working a Hunch + Nickname: Eureka! SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -3.24000335 - posY: 1.33994472 - posZ: 66.75 - rotX: 0.0208135787 - rotY: 269.986359 - rotZ: 0.0167685822 + posX: 0.160005555 + posY: 1.34656549 + posZ: 85.15001 + rotX: 0.0208201762 + rotY: 269.9646 + rotZ: 0.0167591684 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315251 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d7dbac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Streetwise (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.41199958 + posZ: -20.4000072 + rotX: 359.987427 + rotY: 269.999878 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dd130e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hiding Spot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.7834854 + posY: 1.36334467 + posZ: -68.49766 + rotX: 0.0207973365 + rotY: 270.040466 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 371704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3717': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 66d810 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Zoey's Cross + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.3385239 + posY: 1.35815763 + posZ: -56.8936729 + rotX: 0.0154275233 + rotY: 270.0 + rotZ: 0.01495364 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5fe780 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Moxie (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.40021229 + posZ: 23.300005 + rotX: 359.987427 + rotY: 269.999725 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 376600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3766': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 41a9ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Until the End of Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.6287518 + posY: 1.4419347 + posZ: -51.9697838 + rotX: 0.0280682351 + rotY: 269.874725 + rotZ: 4.47717762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374633 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3746': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 016b72 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The King in Yellow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.2623863 + posY: 2.183923 + posZ: -93.89774 + rotX: 0.02080724 + rotY: 270.004761 + rotZ: 0.016775541 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 370827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3708': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7275bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dark Memory + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.1921158 + posY: 1.37513125 + posZ: -65.1841354 + rotX: 0.0197697822 + rotY: 269.863434 + rotZ: 0.0104709994 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440922 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4409': + 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: c026c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: .32 Colt (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.7927551 + posY: 1.36278141 + posZ: -59.5280762 + rotX: 0.020805249 + rotY: 270.017761 + rotZ: 0.0167758446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3f3488 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Chance Encounter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.97 + posY: 1.35916281 + posZ: 71.35 + rotX: 0.02080517 + rotY: 270.012939 + rotZ: 0.0167774316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430655 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Acidic Ichor + DragSelectable: true + GMNotes: '' + GUID: fa61ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Strange Solution (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05001 + posY: 1.41577017 + posZ: -22.40999 + rotX: 359.987427 + rotY: 270.000061 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374264 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3742': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/960860341956230050/FB390FF37A182334B982AA19488275BB5C6E2219/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f8c873 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sophie + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.49042 + posY: 1.64879036 + posZ: -45.3774376 + rotX: 0.213860989 + rotY: 269.996277 + rotZ: 359.8976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a13ca4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: On the Hunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.49531 + posY: 2.36478925 + posZ: -86.53236 + rotX: 0.020807568 + rotY: 269.999939 + rotZ: 0.0167751536 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1399,6 +3424,3786 @@ ContainedObjects: scaleY: 1.0 scaleZ: 1.0 XmlUI: '' +- Autoraise: true + CardID: 230351 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e72762 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mind Wipe (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76 + posY: 1.41613054 + posZ: -17.80999 + rotX: 359.987427 + rotY: 270.0002 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2668': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734346234/4FA6E9B9034B9A95ECF035E84EAB76ED8A3B2DB1/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4719d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Flesh Ward + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.5479736 + posY: 3.17113161 + posZ: -66.25877 + rotX: 0.0208036751 + rotY: 270.0185 + rotZ: 0.0167784 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 295502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2955': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0f54e7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Medico Della Peste + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.5321274 + posY: 1.29888833 + posZ: -75.8911 + rotX: 0.0208082646 + rotY: 270.0001 + rotZ: 0.0167710669 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226356 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a7944d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Springfield M1903 (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87001 + posY: 1.41657758 + posZ: -31.7699947 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2778': + 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: 1339b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mr. "Rook" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.8864021 + posY: 2.368725 + posZ: -89.90842 + rotX: 0.0208068751 + rotY: 270.00296 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 532200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5322': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325426316443664/65B40BE18A1EAEAE214492B98A37C1F3F4AE03C0/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Protective Amulet + DragSelectable: true + GMNotes: '' + GUID: a05cb9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Disc of Itzamna + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.2841549 + posY: 1.28609121 + posZ: 53.3411942 + rotX: 0.0208116267 + rotY: 269.9889 + rotZ: 0.0167668052 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 085581 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mauser C96 + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.8330784 + posY: 2.8453722 + posZ: -123.682411 + rotX: 0.0208091047 + rotY: 270.0 + rotZ: 0.0167718045 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368417 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '812175' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Logical Reasoning + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.240002 + posY: 1.33725178 + posZ: 57.5499954 + rotX: 0.0208138786 + rotY: 269.986359 + rotZ: 0.016766822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 293013 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2930': + 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: Survivor + DragSelectable: true + GMNotes: '' + GUID: cbe256 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tennessee Sour Mash (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.6885529 + posY: 1.65134215 + posZ: -48.9234848 + rotX: 359.90155 + rotY: 269.982483 + rotZ: 359.886169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230349 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 65b30d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arcane Initiate (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76 + posY: 1.41488981 + posZ: -13.210041 + rotX: 359.987427 + rotY: 270.0008 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430907 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2728': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: ff3f17 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Eldritch Inspiration + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6000023 + posY: 1.33866286 + posZ: 85.15 + rotX: 0.02081807 + rotY: 269.96698 + rotZ: 0.0167602263 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440924 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4409': + 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: "Calamitous Blade of Celepha\xEFs" + DragSelectable: true + GMNotes: '' + GUID: bbd11b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Hungering Blade (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.6895256 + posY: 1.509287 + posZ: -64.4644852 + rotX: 0.04871207 + rotY: 270.0308 + rotZ: 359.983429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430656 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Restorative Concoction + DragSelectable: true + GMNotes: '' + GUID: 4874bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Strange Solution (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05001 + posY: 1.41639066 + posZ: -24.7099915 + rotX: 359.987427 + rotY: 270.000061 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430657 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5d25b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cryptic Research (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05001 + posY: 1.41763139 + posZ: -29.3099918 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 373819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3738': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 80b7c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Graveyard Ghouls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 53.86731 + posY: 1.36824882 + posZ: -45.67506 + rotX: 0.0158746652 + rotY: 269.99646 + rotZ: 0.0151343858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 293014 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2930': + 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: f91e14 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Guiding Spirit (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.3563347 + posY: 1.51768577 + posZ: -53.4520569 + rotX: 0.0219245274 + rotY: 270.0133 + rotZ: 0.016176559 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 078efb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Survival Instinct + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.4491959 + posY: 1.36816967 + posZ: -59.8729668 + rotX: 0.02079764 + rotY: 270.040222 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226359 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e21854 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Monster Slayer (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87001 + posY: 1.41843867 + posZ: -38.66999 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4507': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9f67e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ace in the Hole (3) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.0229378 + posY: 1.29862523 + posZ: -77.3203659 + rotX: 0.02110868 + rotY: 269.999939 + rotZ: 0.0147997057 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 121b2d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dendromorphosis + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.1638451 + posY: 3.18465137 + posZ: -78.99707 + rotX: 0.02080465 + rotY: 269.997864 + rotZ: 0.7455131 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430643 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9bd7cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shortcut (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.40708482 + posZ: 9.790022 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 534600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325549672939837/E287E1DC726FAA77E877B68A7E07908E32108F45/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4dd621 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Mauser C96 (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.20876 + posY: 1.614582 + posZ: 42.7635231 + rotX: 0.004170192 + rotY: 270.0141 + rotZ: 0.00329234824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226360 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f7a9ab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Armor of Ardennes (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.419059 + posZ: -40.9699936 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 314204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3142': + 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: e8b7ad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bandolier (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.40851247 + posZ: -1.86998224 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 370046 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3700': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 274daa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mysteries Remain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.64643 + posY: 1.54209042 + posZ: -58.08328 + rotX: 6.12337255 + rotY: 270.007751 + rotZ: 0.006448847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Unscrupulous Investor + DragSelectable: true + GMNotes: '' + GUID: 5ec1a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dario El-Amin + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500065 + posY: 1.34681618 + posZ: 55.2500038 + rotX: 0.0208117589 + rotY: 269.9888 + rotZ: 0.016770687 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2777': + 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: c2d211 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Swift Reflexes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.2479954 + posY: 1.33109152 + posZ: 71.25443 + rotX: 0.0208104569 + rotY: 269.9964 + rotZ: 0.0167663582 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 431009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2737': + 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: Let Your Arrow Fly True + DragSelectable: true + GMNotes: '' + GUID: c4d436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ace of Swords (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.40354943 + posZ: 16.5300255 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368423 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Working on Something Big + DragSelectable: true + GMNotes: '' + GUID: 234ff6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dr. William T. Maleson + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.63999271 + posY: 1.34207618 + posZ: 78.25001 + rotX: 0.02081484 + rotY: 269.978821 + rotZ: 0.016766822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2356': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: "\u2026A Device, of Some Sort" + DragSelectable: true + GMNotes: '' + GUID: e27a30 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Relic of Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.374157 + posY: 3.52680039 + posZ: -65.70076 + rotX: 0.0117934821 + rotY: 269.999969 + rotZ: 180.384445 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 293314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2933': + 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: Mystic + DragSelectable: true + GMNotes: '' + GUID: d0de54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Enchanted Blade (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.77679 + posY: 1.52551687 + posZ: -49.1203079 + rotX: 0.013238864 + rotY: 269.99353 + rotZ: 0.00522407331 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2903': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Circumstances Beyond Your Control + DragSelectable: true + GMNotes: '' + GUID: d5c93d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: "The Tower \u2022 XVI" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 79.62506 + posY: 1.3658669 + posZ: 53.07699 + rotX: 0.0129812742 + rotY: 269.999023 + rotZ: 0.0141451433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448029 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4480': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: 8e8a14 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Spectral Razor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.78683 + posY: 2.84537172 + posZ: -122.14035 + rotX: 0.0208078939 + rotY: 270.002258 + rotZ: 0.0167717487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 99765a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Clean Them Out + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.9561768 + posY: 1.297289 + posZ: -82.06933 + rotX: 0.0208087768 + rotY: 270.0 + rotZ: 0.0167709328 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368834 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 86b9c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Plucky (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.39672589 + posZ: 30.2000084 + rotX: 359.987427 + rotY: 270.000061 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447734 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4477': + 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: ea8324 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Expeditious Retreat (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.8898125 + posY: 1.29929137 + posZ: -71.58855 + rotX: 0.0208090525 + rotY: 269.999939 + rotZ: 0.0167720746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 14e212 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Delve Too Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.08289 + posY: 1.86691129 + posZ: -105.318573 + rotX: 0.0208076313 + rotY: 270.000061 + rotZ: 0.0167738479 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 45d2d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Uncage the Soul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6000023 + posY: 1.3366431 + posZ: 78.25 + rotX: 0.02081758 + rotY: 269.967 + rotZ: 0.0167609118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: baef55 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Second Wind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6300068 + posY: 1.34436178 + posZ: 62.1500053 + rotX: 0.0207944941 + rotY: 270.027039 + rotZ: 0.0167757757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2757': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Spell. + DragSelectable: true + GMNotes: '' + GUID: 863f1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Spectral Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.35961 + posY: 3.6559422 + posZ: -65.68756 + rotX: 0.0124424249 + rotY: 269.999939 + rotZ: 180.020645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5277': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1331327576938187570/A565D42A854F1569E0CBE9E56EC5738DE7E517E5/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 96ed77 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Sharpshooter (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -60.91964 + posY: 12.3025351 + posZ: -60.43129 + rotX: 0.0208032522 + rotY: 270.018616 + rotZ: 0.01677781 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230339 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e27b3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Recharge (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.213913 + posY: 3.16716123 + posZ: -86.69394 + rotX: 0.020808775 + rotY: 270.0 + rotZ: 0.0167716146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 506800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5068': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814186361/59648F1A742B1ADF41577FC848F6FB487D94D80A/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3bd955 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Backstab (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.8169975 + posY: 12.303277 + posZ: -60.338768 + rotX: 0.0208036415 + rotY: 270.0185 + rotZ: 0.01677841 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 449712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4497': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 75a0be + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Springfield M1903 (4) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.5078354 + posY: 1.42160773 + posZ: -77.65222 + rotX: 0.0208072774 + rotY: 269.999451 + rotZ: 0.01677083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 314003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3140': + 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: 25ad44 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kerosene (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.4041698 + posZ: 14.2300215 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232332 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: A Gift Unlooked For + DragSelectable: true + GMNotes: '' + GUID: f295d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Clasp of Black Onyx + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.1468964 + posY: 2.3714323 + posZ: -85.77982 + rotX: 0.0208088849 + rotY: 270.0 + rotZ: 0.01677082 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 507000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5070': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814228569/2C9CE7E5E9645D73AF3D19BE99CC8FFD1BCDD98B/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7fda7e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Familiar Spirit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.9848061 + posY: 12.3017073 + posZ: -60.8210869 + rotX: 0.0208035465 + rotY: 270.018616 + rotZ: 0.016778538 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368420 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Untranslated + DragSelectable: true + GMNotes: '' + GUID: cbfc12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Archaic Glyphs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.63999367 + posY: 1.344096 + posZ: 85.15001 + rotX: 0.0208136719 + rotY: 269.978821 + rotZ: 0.0167661384 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5690d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Knuckleduster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500046 + posY: 1.34950924 + posZ: 64.45 + rotX: 0.0208122581 + rotY: 269.98877 + rotZ: 0.0167700984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368847 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9bcdee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Newspaper (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40541124 + posZ: -2.00000286 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 261100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2611': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d3e55b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Timeworn Brand (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.94001 + posY: 1.40205884 + posZ: 4.89999962 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274005 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2740': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1186a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tony's .38 Long Colt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.5642548 + posY: 1.37087488 + posZ: -49.5318451 + rotX: 0.02080342 + rotY: 270.019775 + rotZ: 0.0167778078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226327 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 86ee68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Machete + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.230006 + posY: 1.34514689 + posZ: 69.05001 + rotX: 0.0208164584 + rotY: 269.9694 + rotZ: 0.0167631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 539600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2663': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734336099/318D7C381273C69BABCAEC9D92C08F7CB6CB8038/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: 6301fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Dark Future + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.105526 + posY: 3.28789377 + posZ: -82.62739 + rotX: 0.02080847 + rotY: 270.0 + rotZ: 0.0167712811 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3798': + 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: 91e53c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Daring + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.1511784 + posY: 1.67444432 + posZ: 7.094112 + rotX: 359.921478 + rotY: 270.000641 + rotZ: 0.0153285637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- 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: cf9ca8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Augur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.34123 + posY: 1.54816771 + posZ: 37.5141525 + rotX: 359.989624 + rotY: 269.9923 + rotZ: 359.9818 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ce0dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lucky! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.5178833 + posY: 1.36590815 + posZ: -66.2731552 + rotX: 0.0207964685 + rotY: 270.040344 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d64c99 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Truth from Fiction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.24000382 + posY: 1.340618 + posZ: 69.05 + rotX: 0.02081118 + rotY: 269.986359 + rotZ: 0.0167688 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Esteemed Eschatologist + DragSelectable: true + GMNotes: '' + GUID: 1f8539 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: David Renfield + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0 + posY: 1.33136892 + posZ: 64.45 + rotX: 0.0207990743 + rotY: 270.0313 + rotZ: 0.016784329 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- 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: ae16e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dream Parasite + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6763325 + posY: 1.6884582 + posZ: 7.569965 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168768261 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fa1d67 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Holy Rosary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0 + posY: 1.33271539 + posZ: 69.05 + rotX: 0.0207979213 + rotY: 270.0313 + rotZ: 0.0167850684 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4508': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 67a72c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sleight of Hand (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.8296623 + posY: 1.37343013 + posZ: -77.37533 + rotX: 0.0208089724 + rotY: 269.9997 + rotZ: 0.0167706124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2666': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: c17498 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Paranoia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 74.67481 + posY: 1.51525068 + posZ: 82.12781 + rotX: 0.0206127949 + rotY: 269.999451 + rotZ: 0.0157527346 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315240 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: The Louisiana Lion + DragSelectable: true + GMNotes: '' + GUID: 27446e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Leo De Luca (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.9715042 + posY: 2.18760157 + posZ: -92.92407 + rotX: 359.9792 + rotY: 270.0 + rotZ: 180.003784 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e8ea95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cunning Distraction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.970005 + posY: 1.35377693 + posZ: 52.9500046 + rotX: 0.0208033528 + rotY: 270.012939 + rotZ: 0.01677898 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 537608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5376': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: 85e7d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Accursed Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.6443253 + posY: 1.30579412 + posZ: -52.1594467 + rotX: 0.0208084453 + rotY: 269.999969 + rotZ: 0.0167711936 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 506700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5067': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814185751/95A9268FA6A77DB417D883BC73D858891285D42A/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6ab51c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Pilfer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.48722 + posY: 3.170269 + posZ: -67.5462952 + rotX: 0.0208035316 + rotY: 270.0185 + rotZ: 0.0167782977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 261700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2617': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c40cb4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"Watch this!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 31.7500019 + posY: 1.358038 + posZ: 85.15 + rotX: 0.0208082516 + rotY: 270.000122 + rotZ: 0.01677166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2699': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: ba2ae1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Doomed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 78.9933 + posY: 1.51519966 + posZ: 71.2607346 + rotX: 0.0213949829 + rotY: 269.999878 + rotZ: 0.0158619713 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230330 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Speaker to the Dead + DragSelectable: true + GMNotes: '' + GUID: 53867b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Alyssa Graham + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.4000015 + posY: 1.3361932 + posZ: 85.15 + rotX: 0.0208057817 + rotY: 270.006378 + rotZ: 0.01677696 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cb4730 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Copycat (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.92356 + posY: 1.3009609 + posZ: -67.084 + rotX: 0.0208089463 + rotY: 270.0 + rotZ: 0.0167717766 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 371565 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3715': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hour of the Huntress + DragSelectable: true + GMNotes: '' + GUID: c729ab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Green Man Medallion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 76.55286 + posY: 1.52031779 + posZ: -49.5625725 + rotX: 0.0170907769 + rotY: 270.023438 + rotZ: 0.0156170158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368846 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 439af2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lucky! (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40479088 + posZ: 0.299998045 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 452300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4523': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Expert Dreamer + DragSelectable: true + GMNotes: '' + GUID: b04c8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Randolph Carter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.3781948 + posY: 2.37428141 + posZ: -83.49261 + rotX: 0.02080912 + rotY: 270.000031 + rotZ: 0.0167708285 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 455300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4553': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734421634/77CA8DF7EF57F566E3B1CCF76FD424C511E8DCF4/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 11086d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Daredevil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.2870941 + posY: 1.80156219 + posZ: 34.93551 + rotX: 359.934357 + rotY: 269.996857 + rotZ: 0.0113790222 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230361 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7a33b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shrivelling (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.75998 + posY: 1.37819648 + posZ: -45.41002 + rotX: 0.0208078716 + rotY: 269.999878 + rotZ: 0.0167721286 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2740': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d12359 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Detached from Reality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.690937 + posY: 1.366647 + posZ: -53.89291 + rotX: 0.0208033863 + rotY: 270.0197 + rotZ: 0.0167779326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 533600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325459410603160/F6E63B024BAE92FF455E3ED55455C2A87E9D7F35/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1e2b2c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Glimpse the Unthinkable (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.2841225 + posY: 1.36854243 + posZ: 53.34116 + rotX: 0.0208014976 + rotY: 270.025421 + rotZ: 0.0167802349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 449035 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4490': + 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: Syndicate Assassin + DragSelectable: true + GMNotes: '' + GUID: 97a795 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Delilah O'Rourke (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.2241936 + posY: 1.69983244 + posZ: 15.1899557 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.0168750733 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 441023 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4410': + 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: 1258c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Logical Reasoning (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.24739 + posY: 1.45532513 + posZ: 13.47808 + rotX: 359.984955 + rotY: 270.006531 + rotZ: 359.941345 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9da37c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fire Axe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.57 + posY: 1.35927451 + posZ: 75.95 + rotX: 0.02081681 + rotY: 269.9702 + rotZ: 0.0167647749 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 098da7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Manual Dexterity (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.0126839 + posY: 1.29892731 + posZ: -73.92084 + rotX: 0.0208090562 + rotY: 270.0 + rotZ: 0.0167717729 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0a4db3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ritual Candles + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0000019 + posY: 1.3367548 + posZ: 82.85 + rotX: 0.0207984913 + rotY: 270.0313 + rotZ: 0.01678511 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4486': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: A Liar, or a Prophet, or Both + DragSelectable: true + GMNotes: '' + GUID: 16e57b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Black Cat (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.2241611 + posY: 1.69086015 + posZ: -15.2800369 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168764312 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' - Autoraise: true CardID: 370323 ColorDiffuse: @@ -1445,24 +7250,24 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 235129 + CardID: 506300 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2351': + '5063': BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ - NumHeight: 7 - NumWidth: 10 + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814177034/12EF51448F4691DB83AF9054EAB67FE590F7B72B/ + NumHeight: 1 + NumWidth: 1 Type: 0 UniqueBack: false Description: '' DragSelectable: true GMNotes: '' - GUID: da25d8 + GUID: 7337c1 Grid: true GridProjection: false Hands: true @@ -1472,205 +7277,25 @@ ContainedObjects: LuaScript: '' LuaScriptState: '' MeasureMovement: false - Name: Card - Nickname: Recharge (4) + Name: CardCustom + Nickname: Farsight (4) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -53.9628944 - posY: 1.30053878 - posZ: -65.9956741 - rotX: 0.0208086018 - rotY: 270.0 - rotZ: 0.0167710837 + posX: -56.06263 + posY: 3.170325 + posZ: -66.06527 + rotX: 0.0208021216 + rotY: 270.023468 + rotZ: 0.016778836 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368817 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0a390e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Perseverance - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 45.970005 - posY: 1.3551234 - posZ: 57.55 - rotX: 0.0208045263 - rotY: 270.012939 - rotZ: 0.0167773627 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315242 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 15643b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hard Knocks (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.40579569 - posZ: 2.59999871 - rotX: 359.987427 - rotY: 269.999878 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527552 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3800': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 16ad5d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Baron Samedi - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 6.214624 - posY: 1.37499976 - posZ: -84.58808 - rotX: 0.0183348916 - rotY: 269.969818 - rotZ: 0.016028095 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368500 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8f7289 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Guts - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 64.07001 - posY: 1.370449 - posZ: 87.4500046 - rotX: 0.02080942 - rotY: 269.9973 - rotZ: 0.016771527 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368714 + CardID: 368706 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -1687,7 +7312,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: cf1d4e + GUID: cc6b14 Grid: true GridProjection: false Hands: true @@ -1698,24 +7323,654 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Slip Away + Nickname: Daring Maneuver SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 28.3500042 - posY: 1.350744 - posZ: 64.45 - rotX: 0.0208153985 - rotY: 269.974854 - rotZ: 0.0167630762 + posX: 28.3500023 + posY: 1.35612988 + posZ: 82.85 + rotX: 0.0208152272 + rotY: 269.974884 + rotZ: 0.01676414 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 315237 + CardID: 371308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3713': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d87128 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Jenny's Twin .45s + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 76.6732559 + posY: 1.52007174 + posZ: -48.314106 + rotX: 0.04478311 + rotY: 270.017731 + rotZ: 359.920624 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8cf335 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mind over Matter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.23999333 + posY: 1.343311 + posZ: 78.25001 + rotX: 0.02081162 + rotY: 269.986359 + rotZ: 0.016769629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8a927c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scrying + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0000019 + posY: 1.33540833 + posZ: 78.25 + rotX: 0.0207991749 + rotY: 270.031281 + rotZ: 0.0167850573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9e4505 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arcane Studies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0 + posY: 1.3320421 + posZ: 66.75 + rotX: 0.020799553 + rotY: 270.0313 + rotZ: 0.0167842377 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 541200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5412': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830597915335413/F6B6100F5713A33245CFBB6F1D7316AA2DD0F760/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Advanced + DragSelectable: true + GMNotes: '' + GUID: 9c4900 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: On the Lam + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.8911133 + posY: 1.29766488 + posZ: -80.86572 + rotX: 0.0208081119 + rotY: 270.000061 + rotZ: 0.01677094 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2928': + 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: db2c81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Telescopic Sight (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.501873 + posY: 1.51489115 + posZ: -53.5625954 + rotX: 0.02066103 + rotY: 270.0146 + rotZ: 0.015778644 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 371209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3712': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cd94e3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Searching for Izzie + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 76.87588 + posY: 1.533313 + posZ: -49.37355 + rotX: 0.0206230525 + rotY: 270.0019 + rotZ: 0.0398144238 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Permanent + DragSelectable: true + GMNotes: '' + GUID: 2ebdf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: On Your Own (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.24509 + posY: 3.16501665 + posZ: -90.3928757 + rotX: 0.0208078139 + rotY: 270.0092 + rotZ: 0.0167691819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 431206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2667': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 4fb446 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Internal Injury + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 79.15498 + posY: 1.49438834 + posZ: 72.1812439 + rotX: 0.03946274 + rotY: 269.999573 + rotZ: 359.9925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448033 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4480': + 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: Acuity + DragSelectable: true + GMNotes: '' + GUID: 3d22c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Empower Self (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.2720909 + posY: 1.57276511 + posZ: 3.53009033 + rotX: 359.9201 + rotY: 270.0217 + rotZ: 0.01684677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368410 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f763e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unearth the Ancients + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.239993 + posY: 1.34196448 + posZ: 73.65001 + rotX: 0.02081152 + rotY: 269.9864 + rotZ: 0.0167682283 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 314904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3149': + 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: bb501b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rise to the Occasion (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40975392 + posZ: -18.1000061 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235667 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2356': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Forestalling the Future + DragSelectable: true + GMNotes: '' + GUID: 7667ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Relic of Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.0404434 + posY: 1.31665075 + posZ: -74.18784 + rotX: 0.0245627742 + rotY: 270.0043 + rotZ: 0.8296155 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 526100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1343712298674079746/F264A40AF71C565360F91FDC2C0DAEA449C879CE/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Dark Knowledge + DragSelectable: true + GMNotes: '' + GUID: 0f580f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Forbidden Tome (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.59372 + posY: 3.16982841 + posZ: -67.3864441 + rotX: 0.0208083242 + rotY: 270.001465 + rotZ: 0.0167707652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315232 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -1732,7 +7987,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: edd6c4 + GUID: 731d2a Grid: true GridProjection: false Hands: true @@ -1743,17 +7998,17 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Lockpicks (1) + Nickname: Adaptable (1) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: posX: 102.75 - posY: 1.401453 - posZ: 18.7000046 + posY: 1.39773071 + posZ: 32.5000153 rotX: 359.987427 - rotY: 269.999756 + rotY: 269.9997 rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 @@ -1805,283 +8060,13 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 315253 + CardID: 277812 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0db666 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Borrowed Time (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.41324031 - posZ: -25.0000019 - rotX: 359.987427 - rotY: 269.999847 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368503 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3ff641 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Reckless Assault - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 64.07 - posY: 1.36708272 - posZ: 75.95 - rotX: 0.020807568 - rotY: 269.997284 - rotZ: 0.0167717114 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368839 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 017821 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Flare (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.39920747 - posZ: 21.0000057 - rotX: 359.987427 - rotY: 270.000061 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 526400 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5264': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1343712298674123850/24EC16C0FFB1415768651DB10DC5C9C09A036C4E/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ff1b0c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Lucky Cigarette Case (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -60.33361 - posY: 12.3025923 - posZ: -60.46862 - rotX: 0.0208036173 - rotY: 270.0185 - rotZ: 0.01677831 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447935 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4479': - 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: 80fafa - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Leadership (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.4562149 - posY: 1.30115438 - posZ: -68.24378 - rotX: 0.02080835 - rotY: 270.000061 - rotZ: 0.0167708285 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368808 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3688': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: dd130e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hiding Spot - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -46.7834854 - posY: 1.36334467 - posZ: -68.49766 - rotX: 0.0207973365 - rotY: 270.040466 - rotZ: 180.016785 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448838 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4488': + '2778': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ @@ -2092,7 +8077,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: ff59dd + GUID: 8dce44 Grid: true GridProjection: false Hands: true @@ -2103,24 +8088,114 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Surprising Find (1) + Nickname: Crack the Case SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -48.5645676 - posY: 1.299145 - posZ: -77.45552 - rotX: 0.0208085515 - rotY: 270.0 - rotZ: 0.016771242 + posX: -34.2288666 + posY: 1.32635069 + posZ: 58.7566338 + rotX: 0.0208084267 + rotY: 269.999451 + rotZ: 0.0167746413 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 315241 + CardID: 230311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 30f860 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blinding Light + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6 + posY: 1.33260369 + posZ: 64.45 + rotX: 0.0208177511 + rotY: 269.96698 + rotZ: 0.0167625658 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 466112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4661': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: The Exotic Morgana + DragSelectable: true + GMNotes: '' + GUID: 692ced + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Molly Maxwell + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.0150757 + posY: 1.30660939 + posZ: 55.5211258 + rotX: 0.01782124 + rotY: 269.9919 + rotZ: 0.016412884 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315238 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -2137,7 +8212,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 63f145 + GUID: 2423e7 Grid: true GridProjection: false Hands: true @@ -2148,15 +8223,15 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Opportunist (2) + Nickname: Fence (1) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: posX: 102.75 - posY: 1.4039346 - posZ: 9.5 + posY: 1.40207338 + posZ: 16.4000072 rotX: 359.987427 rotY: 269.999878 rotZ: 359.984528 @@ -2165,16 +8240,16 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368400 + CardID: 444024 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2304': + '4408': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -2182,7 +8257,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: ffa4f9 + GUID: a33acd Grid: true GridProjection: false Hands: true @@ -2193,249 +8268,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Eureka! + Nickname: Open Gate SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 0.160005555 - posY: 1.34656549 - posZ: 85.15001 - rotX: 0.0208201762 - rotY: 269.9646 - rotZ: 0.0167591684 + posX: 93.43073 + posY: 1.5662576 + posZ: 25.0269451 + rotX: 359.986816 + rotY: 270.027649 + rotZ: 359.9844 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 507900 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5079': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814241952/2B036A03D8C140C73D00DA75EB1A0A70F4745AED/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: eb5adc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Lucky! (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.91382 - posY: 3.17056584 - posZ: -67.0530853 - rotX: 0.0208081752 - rotY: 270.000854 - rotZ: 0.0167714339 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430657 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5d25b1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cryptic Research (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05001 - posY: 1.41763139 - posZ: -29.3099918 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 314003 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3140': - 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: 25ad44 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Kerosene (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.4041698 - posZ: 14.2300215 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 372110 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3721': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 03c6a7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Jim's Trumpet - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.8095436 - posY: 2.18439317 - posZ: -93.41783 - rotX: 0.02080927 - rotY: 270.001282 - rotZ: 0.01677108 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235857 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2358': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Unleash the Timestream - DragSelectable: true - GMNotes: '' - GUID: 35bc58 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Relic of Ages - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -45.62158 - posY: 1.30171525 - posZ: -72.31322 - rotX: 0.0208297186 - rotY: 269.999664 - rotZ: 0.0166090112 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235120 + CardID: 235106 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -2452,7 +8302,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: cb4730 + GUID: 485e4c Grid: true GridProjection: false Hands: true @@ -2463,33 +8313,78 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Copycat (3) + Nickname: Anything You Can Do, Better SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -51.92356 - posY: 1.3009609 - posZ: -67.084 - rotX: 0.0208089463 + posX: -33.399147 + posY: 3.52285361 + posZ: -84.41501 + rotX: 0.0208085328 rotY: 270.0 - rotZ: 0.0167717766 + rotZ: 0.0167711861 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 379930 + CardID: 235118 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3799': + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Petrus de Dacia Translation + DragSelectable: true + GMNotes: '' + GUID: eaafcf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Necronomicon (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.0527954 + posY: 1.85880446 + posZ: 34.6249771 + rotX: 359.935 + rotY: 269.998749 + rotZ: 0.0135341221 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430640 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -2497,7 +8392,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: df0e22 + GUID: 7b42b6 Grid: true GridProjection: false Hands: true @@ -2508,33 +8403,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Otherworld Codex (2) + Nickname: In the Know (1) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 20.1328487 - posY: 1.67128038 - posZ: 3.202552 - rotX: 359.937866 - rotY: 269.99765 - rotZ: -0.00335079338 + posX: 88.05002 + posY: 1.40522373 + posZ: 16.6900253 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 447932 + CardID: 368418 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '4479': + '2304': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -2542,7 +8437,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: ebdd78 + GUID: acd0da Grid: true GridProjection: false Hands: true @@ -2553,41 +8448,41 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: .35 Winchester + Nickname: '"I''ve got a plan!"' SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -50.4082336 - posY: 1.300362 - posZ: -71.00999 - rotX: 0.0208086018 - rotY: 270.000061 - rotZ: 0.01677047 + posX: -3.24000216 + posY: 1.33657849 + posZ: 55.25 + rotX: 0.0208124332 + rotY: 269.9864 + rotZ: 0.0167701915 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 230327 + CardID: 534901 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2303': + '2317': BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: Stygian Waymark + Description: Madness. DragSelectable: true GMNotes: '' - GUID: 6527a4 + GUID: 2c76d9 Grid: true GridProjection: false Hands: true @@ -2598,69 +8493,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: The Chthonian Stone + Nickname: What Have You Done? SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -25.0 - posY: 1.33002234 - posZ: 59.85 - rotX: 0.0207988359 - rotY: 270.0313 - rotZ: 0.0167858377 + posX: -47.6642151 + posY: 2.371999 + posZ: -73.67534 + rotX: 0.0211164355 + rotY: 270.0 + rotZ: 0.0169385374 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 293014 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2930': - 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: f91e14 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Guiding Spirit (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.3563347 - posY: 1.51768577 - posZ: -53.4520569 - rotX: 0.0219245274 - rotY: 270.0133 - rotZ: 0.016176559 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368510 + CardID: 368524 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -2677,7 +8527,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 9b9e8b + GUID: bca49e Grid: true GridProjection: false Hands: true @@ -2688,41 +8538,41 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Calling in Favors + Nickname: Charisma (3) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 60.6699944 - posY: 1.368541 - posZ: 85.15 - rotX: 0.0208100677 - rotY: 270.000732 - rotZ: 0.0167711955 + posX: 116.94 + posY: 1.39647543 + posZ: 25.6000023 + rotX: 359.987427 + rotY: 269.999878 + rotZ: 359.984528 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 448735 + CardID: 379829 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '4487': + '3798': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: '' + Description: Too Noble for His Own Good DragSelectable: true GMNotes: '' - GUID: d6f6f1 + GUID: 08e5a6 Grid: true GridProjection: false Hands: true @@ -2733,69 +8583,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Nightmare Bauble (3) + Nickname: Tetsuo Mori SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -44.8109741 - posY: 2.485328 - posZ: -81.0424 - rotX: 0.0 - rotY: 270.0 - rotZ: 22.62915 + posX: 20.1324425 + posY: 1.67257357 + posZ: 7.045372 + rotX: 359.930023 + rotY: 269.9999 + rotZ: 0.007491751 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 447733 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4477': - 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: f21109 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: A Glimmer of Hope - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -56.2737465 - posY: 2.84284782 - posZ: -111.100708 - rotX: 0.020808937 - rotY: 270.0 - rotZ: 0.0167718567 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274008 + CardID: 274000 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -2809,10 +8614,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: '' + Description: Custom Marlin Model 1894 DragSelectable: true GMNotes: '' - GUID: d12359 + GUID: '587589' Grid: true GridProjection: false Hands: true @@ -2823,33 +8628,123 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Detached from Reality + Nickname: Becky SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -41.690937 - posY: 1.366647 - posZ: -53.89291 - rotX: 0.0208033863 - rotY: 270.0197 - rotZ: 0.0167779326 + posX: -38.1976166 + posY: 1.36526275 + posZ: -62.9559174 + rotX: 0.02080465 + rotY: 270.015869 + rotZ: 0.01677605 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 448029 + CardID: 231709 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '4480': + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537091085/26A674065298A59068E1D6BA3804D03554C234A3/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Skilled Botanist + DragSelectable: true + GMNotes: '' + GUID: a0c2da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Veda Whitsley + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36957 + posY: 1.30220938 + posZ: -48.6176262 + rotX: 0.0208126362 + rotY: 269.985657 + rotZ: 0.0167656019 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 532300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325426316444260/4E45EF78D10F174843D2E3ABB2F2FA353079EC84/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fec633 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Encyclopedia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.2841377 + posY: 1.337478 + posZ: 53.3411751 + rotX: 0.02081177 + rotY: 269.988129 + rotZ: 0.0167661719 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- 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/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -2857,7 +8752,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 8e8a14 + GUID: 53f076 Grid: true GridProjection: false Hands: true @@ -2868,33 +8763,78 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Spectral Razor + Nickname: Soothing Melody SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -41.78683 - posY: 2.84537172 - posZ: -122.14035 - rotX: 0.0208078939 - rotY: 270.002258 - rotZ: 0.0167717487 + posX: -20.3991413 + posY: 1.33330619 + posZ: 65.36043 + rotX: 0.0208107736 + rotY: 269.991425 + rotZ: 0.0167647582 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368803 + CardID: 232333 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2097': + '2323': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Regalia Dementia + DragSelectable: true + GMNotes: '' + GUID: 5d30a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Tattered Cloak + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.11173 + posY: 2.37783718 + posZ: -74.3121262 + rotX: 0.0208091661 + rotY: 270.000061 + rotZ: 0.0167705119 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315260 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -2902,7 +8842,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: d1d7fa + GUID: ecfa42 Grid: true GridProjection: false Hands: true @@ -2913,33 +8853,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: '"Not without a fight!"' + Nickname: Chicago Typewriter (4) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 49.37 - posY: 1.36309063 - posZ: 80.55 - rotX: 0.0208194442 - rotY: 269.9588 - rotZ: 0.01675947 + posX: 102.749992 + posY: 1.417583 + posZ: -41.1000137 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 430810 + CardID: 230502 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2732': + '2305': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -2947,7 +8887,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: b9bb2a + GUID: fa777f Grid: true GridProjection: false Hands: true @@ -2958,168 +8898,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Fingerprint Kit + Nickname: Foolishness SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -10.0399933 - posY: 1.34218788 - posZ: 82.8500061 - rotX: 0.0208109729 - rotY: 269.984833 - rotZ: 0.01676825 + posX: -48.8825455 + posY: 3.39966679 + posZ: -65.17031 + rotX: 0.0208071936 + rotY: 270.010773 + rotZ: 0.0167639218 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 312511 + CardID: 368623 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3125': + '2615': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Not Going Down That Easily - DragSelectable: true - GMNotes: '' - GUID: 2237f4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Gavriella Mizrah - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.35406 - posY: 1.62373781 - posZ: -52.944416 - rotX: 0.0179333128 - rotY: 270.007782 - rotZ: 0.028359253 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448031 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4480': - 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: Stamina - DragSelectable: true - GMNotes: '' - GUID: ffe4dd - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Empower Self (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -13.621273 - posY: 1.57495975 - posZ: 9.329683 - rotX: 359.9201 - rotY: 270.008545 - rotZ: 0.0168651175 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 380029 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3800': - 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: Muckraker - DragSelectable: true - GMNotes: '' - GUID: 90bf93 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Gregory Gry - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.0830517 - posY: 1.524828 - posZ: -0.8738573 - rotX: 359.919342 - rotY: 270.000336 - rotZ: 0.0119857425 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527103 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5271': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -3127,7 +8932,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: cbcb7a + GUID: 68744b Grid: true GridProjection: false Hands: true @@ -3138,18 +8943,243 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Delve Too Deep (Taboo) + Nickname: Hard Knocks SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -50.08526 - posY: 1.440638 - posZ: -77.7699661 - rotX: 0.0208127648 - rotY: 269.9993 - rotZ: 0.0167973619 + posX: 24.9500046 + posY: 1.35220218 + posZ: 73.65 + rotX: 0.02081169 + rotY: 269.98877 + rotZ: 0.0167679638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230345 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2ae3ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Song of the Dead (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.41178787 + posZ: -1.70998144 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 534500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325549672939499/B2CB943347831F6C535EFC1114E5A335DA778A4B/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ae6339 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Ineffable Truth (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.60289 + posY: 3.17123675 + posZ: -79.7068939 + rotX: 0.0208086334 + rotY: 270.000061 + rotZ: 0.016771337 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2667': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011565208488842326/3FF786B2685526D7475E5EE6F2621F8853BBCEA3/ + NumHeight: 2 + NumWidth: 4 + Type: 0 + UniqueBack: false + Description: Madness. + DragSelectable: true + GMNotes: '' + GUID: d91dac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Crisis of Faith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.392704 + posY: 1.717295 + posZ: 60.29674 + rotX: 0.0206187684 + rotY: 269.9819 + rotZ: 0.0177039169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226361 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2d362c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lightning Gun (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.86998 + posY: 1.38363731 + posZ: -45.57002 + rotX: 0.0208066348 + rotY: 269.999878 + rotZ: 0.0167749375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 444147 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3805': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 13eaf0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dreams of the Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.149692 + posY: 2.06653118 + posZ: -46.2199059 + rotX: 0.0160595868 + rotY: 270.0005 + rotZ: 0.0145351663 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -3199,6 +9229,1626 @@ ContainedObjects: scaleY: 1.0 scaleZ: 1.0 XmlUI: '' +- Autoraise: true + CardID: 464100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4641': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734372998/1937407D54C82745A53150E9907CE7DDB55BA97E/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9bfe76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Whitton Greene + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.2011032 + posY: 1.88803566 + posZ: 34.28374 + rotX: 359.933075 + rotY: 269.9965 + rotZ: 0.0141245332 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 526910 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5269': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b40685 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Machete (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.7488327 + posY: 1.45135522 + posZ: -77.86401 + rotX: 0.0208074432 + rotY: 269.999084 + rotZ: 0.0167784747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2f1166 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Universal Solvent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.1666946 + posY: 1.302138 + posZ: -64.00173 + rotX: 0.0208088867 + rotY: 270.0 + rotZ: 0.0167715326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 431007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2737': + 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: '683937' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Delay the Inevitable + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6300068 + posY: 1.34368849 + posZ: 59.8500023 + rotX: 0.0207936484 + rotY: 270.027039 + rotZ: 0.0167745743 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4167c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: True Understanding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.160006255 + posY: 1.34454572 + posZ: 78.25001 + rotX: 0.02081884 + rotY: 269.9646 + rotZ: 0.0167625323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: edd34a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Quantum Flux + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6000023 + posY: 1.33529663 + posZ: 73.65 + rotX: 0.02081925 + rotY: 269.967 + rotZ: 0.016761573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 314002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3140': + 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: cf4f15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Flamethrower (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.41967952 + posZ: -43.2699928 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + 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: Message from Your Inner Self + DragSelectable: true + GMNotes: '' + GUID: e80bd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: "The Moon \u2022 XVIII (1)" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.41013837 + posZ: -13.5000048 + rotX: 359.987427 + rotY: 269.999847 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368853 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dffe4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scrapper (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.4103744 + posZ: -20.4000053 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448938 + 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: '' + DragSelectable: true + GMNotes: '' + GUID: 26922c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Spiritual Resolve (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.1415749 + posY: 1.30042791 + posZ: -66.1530762 + rotX: 0.0208079927 + rotY: 270.0001 + rotZ: 0.0167709365 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 431205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2667': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: b2ef43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Indebted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 79.12614 + posY: 1.52719057 + posZ: 71.0024948 + rotX: 0.0208145846 + rotY: 270.0049 + rotZ: 0.0171645433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368519 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8948c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Emergency Cache (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.94 + posY: 1.39523458 + posZ: 30.2000065 + rotX: 359.987427 + rotY: 269.9999 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 526700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5267': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1343712298677682786/A6BAA33A2A29A98557BC19D768CD8D84A592743E/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: eef1e6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Pilfer (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.9555626 + posY: 3.17135453 + posZ: -66.5172348 + rotX: 0.02080198 + rotY: 270.023529 + rotZ: 0.016778836 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369721 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3697': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ca25bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cover Up + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 86.76924 + posY: 1.37650609 + posZ: -58.61718 + rotX: 0.0202569962 + rotY: 270.007629 + rotZ: 0.0163947754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 505300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5053': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814138232/EABA901D07E4AC22EEA62AE5CBC584B5CA319CEF/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 390a86 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Dynamite Blast (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.5154076 + posY: 3.17006421 + posZ: -66.3056641 + rotX: 0.0208035428 + rotY: 270.018555 + rotZ: 0.01677846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379930 + 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: df0e22 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Otherworld Codex (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.1328487 + posY: 1.67128038 + posZ: 3.202552 + rotX: 359.937866 + rotY: 269.99765 + rotZ: -0.00335079338 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 529200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5292': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1479946668214195500/762F7E9B05C7EB97CD942EBD536E43F17AC985EF/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cc476c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Boxing Gloves (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.2166939 + posY: 1.30145741 + posZ: -51.3760033 + rotX: 0.0208084956 + rotY: 270.000122 + rotZ: 0.01677076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bbfe9b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Guidance + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.239994 + posY: 1.34465742 + posZ: 82.8500061 + rotX: 0.0208123866 + rotY: 269.986359 + rotZ: 0.0167671517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2740': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4d9b32 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bounty Contracts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.42096 + posY: 1.49901617 + posZ: -49.8807373 + rotX: 0.0231439564 + rotY: 270.0193 + rotZ: 0.0126447231 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fe2db3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: .41 Derringer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500065 + posY: 1.34816265 + posZ: 59.8500023 + rotX: 0.0208115634 + rotY: 269.9888 + rotZ: 0.0167687647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2902': + 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: Free from the Past + DragSelectable: true + GMNotes: '' + GUID: 2e5b03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: "Death \u2022 XIII (1)" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.400881 + posZ: 32.7900352 + rotX: 359.987427 + rotY: 269.999847 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4501': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 83457e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Elusive (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.08059 + posY: 1.37134826 + posZ: -77.6898041 + rotX: 0.0213171132 + rotY: 269.9978 + rotZ: 0.4211876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Lost Son of Earth + DragSelectable: true + GMNotes: '' + GUID: a7358f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Yaotl (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40106857 + posZ: 14.1000023 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 449037 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4490': + 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: 4f5f0f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sawed-Off Shotgun (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.9328461 + posY: 1.299728 + posZ: -73.765686 + rotX: 0.02080911 + rotY: 270.0 + rotZ: 0.0167716872 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: The Head Librarian + DragSelectable: true + GMNotes: '' + GUID: 66197b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dr. Henry Armitage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.2092628 + posY: 2.37336755 + posZ: -67.14607 + rotX: 0.020810511 + rotY: 270.000031 + rotZ: 0.0167691223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230353 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8f871b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Crystalline Elder Sign (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76001 + posY: 1.41861212 + posZ: -27.0099945 + rotX: 359.987427 + rotY: 270.000366 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 30f90b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Improvised Weapon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.97 + posY: 1.3598361 + posZ: 73.65 + rotX: 0.0208048522 + rotY: 270.012939 + rotZ: 0.0167763215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226343 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d708d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Physical Training (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.40665138 + posZ: 5.03001928 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 431111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2698': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 3b3c0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Drawing the Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 79.6330948 + posY: 1.51341081 + posZ: 71.33267 + rotX: 0.020565819 + rotY: 270.0009 + rotZ: 0.01678212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 541300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5413': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830597915335843/99E638B3D735149C6624312DBAB47A3AA2D2F95D/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Advanced + DragSelectable: true + GMNotes: '' + GUID: bd323d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Hospital Debts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.0280762 + posY: 1.30279255 + posZ: -64.41893 + rotX: 0.0208086669 + rotY: 270.000031 + rotZ: 0.0167711359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 314800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3148': + 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: 44a37f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Old Hunting Rifle (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.41471708 + posZ: -36.5000038 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368430 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Acquisitions and Solicitation + DragSelectable: true + GMNotes: '' + GUID: 4a2a36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Charles Ross, Esq. + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.64000225 + posY: 1.33736348 + posZ: 62.1499977 + rotX: 0.02081471 + rotY: 269.978821 + rotZ: 0.0167644937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 505900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5059': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814170172/882DA62AAAFE048127E3B8B044ACAB63D6FBCE77/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1753a8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Cryptic Writings + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.6698341 + posY: 2.84538627 + posZ: -113.770988 + rotX: 0.0208082218 + rotY: 270.0001 + rotZ: 0.0167709831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2699': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: dd3d09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dark Pact + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 78.90516 + posY: 1.52898574 + posZ: 71.47087 + rotX: 0.01666248 + rotY: 269.9882 + rotZ: 0.021478314 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c1d796 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Survival Knife (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.05881 + posY: 3.16396856 + posZ: -94.18238 + rotX: 0.020808924 + rotY: 269.999939 + rotZ: 0.01677181 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5cb973 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fine Clothes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.2699966 + posY: 1.36797941 + posZ: 87.45 + rotX: 0.0208086763 + rotY: 269.994049 + rotZ: 0.0167718157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' - Autoraise: true CardID: 541109 ColorDiffuse: @@ -3245,24 +10895,69 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 235131 + CardID: 506400 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2351': + '5064': BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814180074/5A5E665DBD2EB41510CF3B4B25073267720CBE45/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 72d963 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Lockpicks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -60.2193565 + posY: 12.3038292 + posZ: -61.74803 + rotX: 0.0208042711 + rotY: 270.018433 + rotZ: 0.0167780221 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374420 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3744': + 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: Tough Old Bird + Description: '' DragSelectable: true GMNotes: '' - GUID: c490a4 + GUID: 1a90a4 Grid: true GridProjection: false Hands: true @@ -3273,24 +10968,2094 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Granny Orne (3) + Nickname: Lure (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -54.0994644 - posY: 1.66657078 - posZ: 34.8603973 - rotX: 359.9325 - rotY: 269.997253 - rotZ: 0.0134907318 + posX: 112.262115 + posY: 1.37650943 + posZ: 48.36173 + rotX: 0.020808477 + rotY: 270.0 + rotZ: 0.01677365 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 430643 + CardID: 379616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3796': + 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: Deals with "Devils" + DragSelectable: true + GMNotes: '' + GUID: 4f2489 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dayana Esperence (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.65864 + posY: 1.41104889 + posZ: -8.65793 + rotX: 359.987427 + rotY: 269.999176 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 293217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2932': + 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: Seeker + DragSelectable: true + GMNotes: '' + GUID: 1433eb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Grisly Totem (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.7730675 + posY: 1.36253119 + posZ: -55.4446869 + rotX: 0.020809114 + rotY: 270.0 + rotZ: 0.0167707428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 438124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4381': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: a5be8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unspeakable Oath (Bloodthirst) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.77216 + posY: 1.37203252 + posZ: 51.6075249 + rotX: 0.0207682457 + rotY: 269.999329 + rotZ: 180.022034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 531600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5316': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325328768801133/81D591BD955E01274ED85485EA83942683BFE1A4/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: add8f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Sneak By + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.2102928 + posY: 1.30273163 + posZ: -51.9938164 + rotX: 0.0208085049 + rotY: 270.0 + rotZ: 0.0167711414 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368852 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Big Man on Campus + DragSelectable: true + GMNotes: '' + GUID: e1e098 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Peter Sylvestre (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40913355 + posZ: -15.8000059 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 370422 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3704': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 321cb7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Daisy's Tote Bag + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.1865 + posY: 1.29897082 + posZ: -74.796936 + rotX: 0.0208084341 + rotY: 270.0 + rotZ: 0.0167711563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527417 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2666': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Enemy + DragSelectable: true + GMNotes: '' + GUID: 16a89d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Silver Twilight Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 74.44922 + posY: 1.56336081 + posZ: 81.83084 + rotX: 0.020568762 + rotY: 269.999268 + rotZ: 0.0177706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447835 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4478': + 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: Dreams of a Madman + DragSelectable: true + GMNotes: '' + GUID: e5f9cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dream Diary (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.5946255 + posY: 1.59327507 + posZ: 14.8424034 + rotX: 359.920135 + rotY: 269.996155 + rotZ: 0.0168813411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 261702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2617': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a88392 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Opportunist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 31.7500038 + posY: 1.35669148 + posZ: 80.55 + rotX: 0.0208076444 + rotY: 270.000122 + rotZ: 0.0167729724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368839 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 017821 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Flare (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.39920747 + posZ: 21.0000057 + rotX: 359.987427 + rotY: 270.000061 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b265c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Deduction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.16000621 + posY: 1.345219 + posZ: 80.55001 + rotX: 0.02081996 + rotY: 269.9646 + rotZ: 0.016761994 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5270': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Professor of Entomology + DragSelectable: true + GMNotes: '' + GUID: a60325 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dr. Milan Christopher (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.8091431 + posY: 1.3436749 + posZ: -69.58511 + rotX: 0.020808788 + rotY: 269.9992 + rotZ: 0.01677098 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447836 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4478': + 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: Dreams of a Child + DragSelectable: true + GMNotes: '' + GUID: ea40f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dream Diary (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.5937138 + posY: 1.59167707 + posZ: 9.419598 + rotX: 359.920135 + rotY: 269.992584 + rotZ: 0.016887974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2780': + 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: Fearless Flatfoot + DragSelectable: true + GMNotes: '' + GUID: ae20e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Alice Luxley + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.431 + posY: 1.32506227 + posZ: 54.60595 + rotX: 0.0208093189 + rotY: 269.99942 + rotZ: 0.0167746153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ab37af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scene of the Crime + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6299963 + posY: 1.34166884 + posZ: 52.9499969 + rotX: 0.0207941569 + rotY: 270.027039 + rotZ: 0.0167764034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230362 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f2877e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sacrifice (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.40248215 + posZ: 32.7900238 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3fe6de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gravedigger's Shovel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.5700035 + posY: 1.35658157 + posZ: 66.75 + rotX: 0.020816626 + rotY: 269.9702 + rotZ: 0.016764015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3125': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Took You Long Enough + DragSelectable: true + GMNotes: '' + GUID: 726d1d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Valentino Rivas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.88332 + posY: 1.35615063 + posZ: 68.6109161 + rotX: 0.02080685 + rotY: 269.9994 + rotZ: 0.0167702865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2fc31c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mi-Go Weapon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.6340179 + posY: 1.2999053 + posZ: -72.28999 + rotX: 0.0208086576 + rotY: 270.0 + rotZ: 0.0167716239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 529400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5294': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1479946668214252085/3754CC47084514AAA08DAEC8BB1718D1801EAC13/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ef0ad0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Physical Training (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.83694 + posY: 1.30376673 + posZ: -50.16186 + rotX: 0.0208085682 + rotY: 270.000183 + rotZ: 0.0167709477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226346 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: da46e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Police Badge (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.4097532 + posZ: -6.469983 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315236 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 18927e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Treasure Hunter (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.40083265 + posZ: 21.0000038 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 59d89b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Oops! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.970005 + posY: 1.35647 + posZ: 62.15 + rotX: 0.0208052136 + rotY: 270.0129 + rotZ: 0.016778376 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315258 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4eb231 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hot Streak (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.749992 + posY: 1.41634226 + posZ: -36.50001 + rotX: 359.987427 + rotY: 269.9999 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 497000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4970': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734369975/99D02D2FC7DDB1D02D8E9E91EDE42261E6AD2900/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: 50dd43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Tommy Malloy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.01433 + posY: 3.17131829 + posZ: -76.4275742 + rotX: 0.02080885 + rotY: 270.000061 + rotZ: 0.0167704932 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230335 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 90a106 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Spirit Athame (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.4055841 + posZ: 21.2900219 + rotX: 359.987427 + rotY: 270.000244 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 295504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2955': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f3b3a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gilded Volto + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.8639259 + posY: 3.18059015 + posZ: -97.1056061 + rotX: 359.503632 + rotY: 269.998138 + rotZ: 0.0167150069 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3744': + 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: eaaee9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Eucatastrophe (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.842651 + posY: 1.39317536 + posZ: 41.98588 + rotX: 359.987427 + rotY: 270.0001 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- 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: aec357 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Guardian of the Crystallizer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.8113861 + posY: 1.56324077 + posZ: 29.4504681 + rotX: 359.9853 + rotY: 269.977234 + rotZ: 359.981079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 593deb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Leather Coat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.69558 + posY: 1.366081 + posZ: -59.2587624 + rotX: 0.020795757 + rotY: 270.0401 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8f3c8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hypnotic Gaze + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6 + posY: 1.3312571 + posZ: 59.85 + rotX: 0.0208162144 + rotY: 269.96698 + rotZ: 0.0167607628 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 463400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4634': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734350506/924AD1C63A929662E8C3F5983C43DE9ECEE4C7DD/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 037dc7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Glory + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.8434868 + posY: 3.17119765 + posZ: -65.09005 + rotX: 0.0208014976 + rotY: 270.023438 + rotZ: 0.0167795885 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315253 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0db666 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Borrowed Time (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.41324031 + posZ: -25.0000019 + rotX: 359.987427 + rotY: 269.999847 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 261704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2617': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '857238' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hatchet Man + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 31.7500019 + posY: 1.35534489 + posZ: 75.95 + rotX: 0.020807296 + rotY: 270.0001 + rotZ: 0.016773833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 449036 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4490': + 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: 'Lookin'' Out For #1' + DragSelectable: true + GMNotes: '' + GUID: 48c9ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Joey "The Rat" Vigil (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.224144 + posY: 1.696496 + posZ: 3.8599503 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.016874982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0a390e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Perseverance + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.970005 + posY: 1.3551234 + posZ: 57.55 + rotX: 0.0208045263 + rotY: 270.012939 + rotZ: 0.0167773627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278012 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2780': + 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: e454c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Well-Maintained (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.5159187 + posY: 1.326544 + posZ: 54.8107338 + rotX: 0.02080832 + rotY: 269.998047 + rotZ: 0.0167722814 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 00af4f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fight or Flight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.97 + posY: 1.35848963 + posZ: 69.05 + rotX: 0.02080343 + rotY: 270.012878 + rotZ: 0.0167783517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368851 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c6c260 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cornered (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40851319 + posZ: -13.5000057 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 452504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4525': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Chained to the Waking World + DragSelectable: true + GMNotes: '' + GUID: d253a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Randolph Carter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.5121937 + posY: 2.37383485 + posZ: -80.5855255 + rotX: 0.0208091475 + rotY: 270.0 + rotZ: 0.0167707652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8e57b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Clarity of Mind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0 + posY: 1.33338857 + posZ: 71.35 + rotX: 0.0207986627 + rotY: 270.0313 + rotZ: 0.016783379 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226335 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bd3ecc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Combat Training (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.40044749 + posZ: 28.0300274 + rotX: 359.987427 + rotY: 269.9999 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448034 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4480': + 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: Lost in a Dream + DragSelectable: true + GMNotes: '' + GUID: 9f76ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Twila Katherine Price (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.4830484 + posY: 1.57222378 + posZ: 0.6929285 + rotX: 359.920135 + rotY: 270.005066 + rotZ: 0.0168688241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 449514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4495': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 015d79 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Switchblade (2) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.99968 + posY: 1.39253962 + posZ: -77.7381439 + rotX: 0.0208060052 + rotY: 269.999573 + rotZ: 0.0167830065 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226336 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 102fad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Reliable (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.40671 + posY: 3.51911259 + posZ: -65.72932 + rotX: 0.0208095815 + rotY: 270.017 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8dda2d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Colt Vest Pocket (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.0583534 + posY: 3.16848969 + posZ: -77.61848 + rotX: 0.0208065715 + rotY: 270.0092 + rotZ: 0.0167740323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430644 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -3307,7 +13072,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 9bd7cf + GUID: 23c3e5 Grid: true GridProjection: false Hands: true @@ -3318,33 +13083,123 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Shortcut (2) + Nickname: Hyperawareness (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: posX: 88.05002 - posY: 1.40708482 - posZ: 9.790022 + posY: 1.40770531 + posZ: 7.49002075 rotX: 359.987427 rotY: 270.0 - rotZ: 359.984558 + rotZ: 359.984528 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 449712 + CardID: 313501 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '4497': + '3135': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Over the Threshold and Beyond + DragSelectable: true + GMNotes: '' + GUID: 05da68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Seal of the Seventh Sign (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.75998 + posY: 1.3775233 + posZ: -47.71002 + rotX: 0.02080785 + rotY: 269.999878 + rotZ: 0.0167682189 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 537612 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5376': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: dc5b38 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Price of Failure + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.40347 + posY: 1.3066 + posZ: -49.7053833 + rotX: 0.0208091587 + rotY: 269.999969 + rotZ: 0.0167716891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -3352,7 +13207,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 75a0be + GUID: a4e44a Grid: true GridProjection: false Hands: true @@ -3363,41 +13218,41 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Springfield M1903 (4) (Taboo) + Nickname: .18 Derringer (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -49.5078354 - posY: 1.42160773 - posZ: -77.65222 - rotX: 0.0208072774 - rotY: 269.999451 - rotZ: 0.01677083 + posX: -51.0661659 + posY: 2.484017 + posZ: -77.7534561 + rotX: 0.0 + rotY: 270.0 + rotZ: 22.62915 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 533900 + CardID: 368712 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5339': + '2616': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325549672934426/9E204160F9A814470C1E41FF31A41275A951EF84/ - NumHeight: 1 - NumWidth: 1 + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 Type: 0 UniqueBack: false Description: '' DragSelectable: true GMNotes: '' - GUID: 59f3e4 + GUID: '833305' Grid: true GridProjection: false Hands: true @@ -3407,19 +13262,334 @@ ContainedObjects: LuaScript: '' LuaScriptState: '' MeasureMovement: false - Name: CardCustom - Nickname: A Test of Will (2) + Name: Card + Nickname: Elusive SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 10.5688572 - posY: 1.54649055 - posZ: 80.96074 - rotX: 2.71492243 - rotY: 270.024628 - rotZ: 0.017189106 + posX: 28.3500042 + posY: 1.35209048 + posZ: 69.05 + rotX: 0.0208152477 + rotY: 269.974854 + rotZ: 0.0167662222 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374330 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3743': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b80459 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Home Front + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.7368431 + posY: 1.64680672 + posZ: -44.52075 + rotX: 0.15098621 + rotY: 269.994263 + rotZ: 359.33197 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 294203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2942': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Ally. Sorcerer. + DragSelectable: true + GMNotes: '' + GUID: 37a76b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lady Esprit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.02124 + posY: 1.761565 + posZ: 6.88063335 + rotX: 359.381683 + rotY: 269.978363 + rotZ: 359.9881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368523 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3c959c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Relic Hunter (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.94 + posY: 1.3970958 + posZ: 23.3000031 + rotX: 359.987427 + rotY: 269.999878 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230360 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7bc995 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ward of Protection (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.4229548 + posZ: -43.109993 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4477': + 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: 0d006f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Moonstone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.3372574 + posY: 2.84537172 + posZ: -101.660507 + rotX: 0.0208083633 + rotY: 270.0 + rotZ: 0.0167707354 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 45cd73 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Truth from Fiction (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.762722 + posY: 3.28358555 + posZ: -76.61391 + rotX: 0.02080613 + rotY: 270.0092 + rotZ: 0.0167743526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2776': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2c6509 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: .45 Thompson + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.922472 + posY: 1.324889 + posZ: 49.66081 + rotX: 0.0208094623 + rotY: 269.993744 + rotZ: 0.016770605 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -3470,373 +13640,13 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 292913 + CardID: 368618 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2929': - 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: b65011 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Investments - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.4359 - posY: 1.56717479 - posZ: -53.5249176 - rotX: 0.0196301043 - rotY: 270.007874 - rotZ: 0.00258995965 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450702 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4507': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9f67e8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ace in the Hole (3) (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.0229378 - posY: 1.29862523 - posZ: -77.3203659 - rotX: 0.02110868 - rotY: 269.999939 - rotZ: 0.0147997057 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368821 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 215cec - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cherished Keepsake - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 42.57 - posY: 1.36196756 - posZ: 85.15 - rotX: 0.02081672 - rotY: 269.9702 - rotZ: 0.0167616438 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235649 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2356': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9dc3d4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Expedition Journal - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.3065948 - posY: 3.16604829 - posZ: -95.28326 - rotX: 0.0208080523 - rotY: 270.0001 - rotZ: 0.0167709477 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230316 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 80acd2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Forbidden Knowledge - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.0000019 - posY: 1.33742809 - posZ: 85.15 - rotX: 0.0207991842 - rotY: 270.0313 - rotZ: 0.01678471 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230344 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a06aa7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Recall the Future (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76001 - posY: 1.4111675 - posZ: 0.590019047 - rotX: 359.987427 - rotY: 269.999939 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 373910 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3739': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Mysterious Soothsayer - DragSelectable: true - GMNotes: '' - GUID: 03a4de - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Anna Kaslow (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.3030281 - posY: 1.72431636 - posZ: 5.39502954 - rotX: 359.9199 - rotY: 270.0 - rotZ: 0.0164847765 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368848 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6aae86 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Close Call (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40603161 - posZ: -4.30000353 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368708 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2616': + '2615': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ @@ -3844,10 +13654,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: '' + Description: Doom Begets Doom DragSelectable: true GMNotes: '' - GUID: f6ff32 + GUID: 07350b Grid: true GridProjection: false Hands: true @@ -3858,33 +13668,78 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Narrow Escape + Nickname: Decorated Skull SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 28.3500042 - posY: 1.35478342 - posZ: 78.25 - rotX: 0.0208150763 - rotY: 269.9749 - rotZ: 0.0167657565 + posX: 24.9500027 + posY: 1.35624158 + posZ: 87.45 + rotX: 0.0208102781 + rotY: 269.9888 + rotZ: 0.01676938 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368419 + CardID: 266702 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2304': + '2667': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011565208488842326/3FF786B2685526D7475E5EE6F2621F8853BBCEA3/ + NumHeight: 2 + NumWidth: 4 + Type: 0 + UniqueBack: false + Description: Pact. Cursed. + DragSelectable: true + GMNotes: '' + GUID: 5fdda4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Faustian Bargain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.3927 + posY: 1.69818175 + posZ: 60.2967377 + rotX: 0.01901129 + rotY: 269.982056 + rotZ: 0.0150372349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230347 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -3892,7 +13747,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 658d38 + GUID: ba1460 Grid: true GridProjection: false Hands: true @@ -3903,69 +13758,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Shrewd Analysis + Nickname: Bind Monster (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -6.63999367 - posY: 1.34476912 - posZ: 87.4500046 - rotX: 0.02081338 - rotY: 269.978821 - rotZ: 0.0167668 + posX: 80.76002 + posY: 1.41364908 + posZ: -8.609983 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984528 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368800 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3688': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 078efb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Survival Instinct - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -40.4491959 - posY: 1.36816967 - posZ: -59.8729668 - rotX: 0.02079764 - rotY: 270.040222 - rotZ: 180.016785 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277910 + CardID: 277911 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -3982,7 +13792,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 6d9881 + GUID: dffa9d Grid: true GridProjection: false Hands: true @@ -3993,78 +13803,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Drawing Thin + Nickname: Belly of the Beast SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -27.6383247 - posY: 1.33034 - posZ: 64.20871 - rotX: 0.0208067931 - rotY: 269.999878 - rotZ: 0.01677723 + posX: -31.2078037 + posY: 1.32907391 + posZ: 64.31217 + rotX: 0.0208104178 + rotY: 269.9969 + rotZ: 0.0167667456 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368433 + CardID: 529800 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Assistant Curator - DragSelectable: true - GMNotes: '' - GUID: 27e7b3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dr. Elli Horowitz - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -10.0399933 - posY: 1.34353435 - posZ: 87.4500046 - rotX: 0.0208115932 - rotY: 269.984833 - rotZ: 0.0167669188 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 463200 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4632': + '5298': BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734361537/EEFDA6756209075F5EB2E7E556172B63A5C408BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1479947038306998674/2DDC64951543A3A433622C6D97CA08D087D65C18/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -4072,7 +13837,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 43b3a5 + GUID: fee102 Grid: true GridProjection: false Hands: true @@ -4083,378 +13848,63 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: CardCustom - Nickname: One-Two Punch (5) + Nickname: Liquid Courage (1) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -54.24542 - posY: 1.93621385 - posZ: 34.3512154 - rotX: 359.933655 - rotY: 269.995667 - rotZ: 0.0140048908 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 539600 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2663': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734336099/318D7C381273C69BABCAEC9D92C08F7CB6CB8038/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: 6301fb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Dark Future - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -30.105526 - posY: 3.28789377 - posZ: -82.62739 - rotX: 0.02080847 + posX: -63.2431641 + posY: 1.30250943 + posZ: -47.74949 + rotX: 0.0208080523 rotY: 270.0 - rotZ: 0.0167712811 + rotZ: 0.016771324 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 292814 + CardID: 232951 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2928': + '2329': BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: '' + Description: Seeing Things Unseen DragSelectable: true GMNotes: '' - GUID: ec38db + GUID: f96ed0 Grid: true GridProjection: false Hands: true - HideWhenFaceDown: true + HideWhenFaceDown: false IgnoreFoW: false Locked: false LuaScript: '' LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Warning Shot + Nickname: Powder of Ibn Ghazi SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -59.52426 - posY: 1.50795782 - posZ: -53.83897 - rotX: 0.02122694 - rotY: 270.0166 - rotZ: 0.0197900087 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374834 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2098': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9ef062 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Improvisation - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 2.76934 - posY: 0.6104428 - posZ: -82.43481 - rotX: 358.873474 - rotY: 269.987366 - rotZ: 359.992035 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368527 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Let the Storm Rage - DragSelectable: true - GMNotes: '' - GUID: 1c98ff - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Key of Ys (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 116.94 - posY: 1.40081811 - posZ: 9.499999 - rotX: 359.987427 - rotY: 269.999817 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368806 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: cc6e4d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Take Heart - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 49.37 - posY: 1.36107087 - posZ: 73.65 - rotX: 0.0208189469 - rotY: 269.9588 - rotZ: 0.0167584512 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368717 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2616': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b4ad29 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Contraband - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500061 - posY: 1.348051 - posZ: 55.2500038 - rotX: 0.0208157171 - rotY: 269.9749 - rotZ: 0.0167655777 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430907 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2728': - 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: '' - DragSelectable: true - GMNotes: '' - GUID: ff3f17 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Eldritch Inspiration - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -21.6000023 - posY: 1.33866286 - posZ: 85.15 - rotX: 0.02081807 - rotY: 269.96698 - rotZ: 0.0167602263 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226324 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5cd622 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: First Aid - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.230006 - posY: 1.34783983 - posZ: 78.25 - rotX: 0.02081828 - rotY: 269.9694 - rotZ: 0.016761452 + posX: -48.4629173 + posY: 1.36626446 + posZ: -46.7977753 + rotX: 0.0208089761 + rotY: 270.0 + rotZ: 0.0167704951 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -4505,106 +13955,16 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 312509 + CardID: 235111 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3125': + '2351': BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Elegant and Elusive - DragSelectable: true - GMNotes: '' - GUID: 83b588 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: August Lindquist - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.2187462 - posY: 1.36356008 - posZ: -57.5782471 - rotX: 0.0208096523 - rotY: 270.000031 - rotZ: 0.0167725645 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 7502 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '75': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Trap. - DragSelectable: true - GMNotes: '' - GUID: c7b748 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fishing Net - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -39.2526932 - posY: 2.35122013 - posZ: -85.8765945 - rotX: 0.0208091941 - rotY: 270.0 - rotZ: 0.0167707223 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 370827 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3708': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -4612,7 +13972,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 7275bc + GUID: c021fd Grid: true GridProjection: false Hands: true @@ -4623,24 +13983,114 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Dark Memory + Nickname: Counterpunch SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 88.1921158 - posY: 1.37513125 - posZ: -65.1841354 - rotX: 0.0197697822 - rotY: 269.863434 - rotZ: 0.0104709994 + posX: -49.0357437 + posY: 1.29630971 + posZ: -86.55692 + rotX: 0.0208088271 + rotY: 270.000031 + rotZ: 0.0167718269 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 226319 + CardID: 315239 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2fe723 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cat Burglar (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.40269375 + posZ: 14.1000032 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 507200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5072': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814229526/806B7A0C777CC23F282B1F6B86A0A0C67E32958C/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 576e76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Azure Flame (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.35282 + posY: 12.3032722 + posZ: -62.0714035 + rotX: 0.0208038446 + rotY: 270.0184 + rotZ: 0.0167784244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226305 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -4657,7 +14107,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 97986a + GUID: 36c0cb Grid: true GridProjection: false Hands: true @@ -4668,18 +14118,1008 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Dynamite Blast + Nickname: '"Let me handle this!"' SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 12.6299963 - posY: 1.34099555 - posZ: 50.6499977 - rotX: 0.0207956564 + posX: 12.6300039 + posY: 1.35176742 + posZ: 87.45 + rotX: 0.0207943413 rotY: 270.027039 - rotZ: 0.0167747736 + rotZ: 0.01677379 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226344 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9956d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Taunt (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.40727174 + posZ: 2.73001885 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 377537 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3775': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 14c396 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Serpents of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.3039474 + posY: 1.45803213 + posZ: -82.09155 + rotX: 0.02075481 + rotY: 270.056458 + rotZ: 5.80825233 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d4fd4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shortcut + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.23999429 + posY: 1.34533072 + posZ: 85.15001 + rotX: 0.0208120123 + rotY: 269.986359 + rotZ: 0.0167688522 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.2699966 + posY: 1.36730623 + posZ: 85.15 + rotX: 0.0208092928 + rotY: 269.994049 + rotZ: 0.0167697817 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f474b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Stray Cat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.8579521 + posY: 1.36627233 + posZ: -63.36624 + rotX: 0.0207980759 + rotY: 270.040222 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ee20c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Newspaper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.57 + posY: 1.35860133 + posZ: 73.65 + rotX: 0.0208154488 + rotY: 269.9702 + rotZ: 0.01676301 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315237 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: edd6c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lockpicks (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.401453 + posZ: 18.7000046 + rotX: 359.987427 + rotY: 269.999756 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 314105 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3141': + 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: 37a2b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blackjack (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.40913284 + posZ: -4.169983 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3796': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: f57a6f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Wither (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.3716354 + posY: 1.53616381 + posZ: -13.6336412 + rotX: 359.988 + rotY: 270.833679 + rotZ: 353.443756 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235131 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Tough Old Bird + DragSelectable: true + GMNotes: '' + GUID: c490a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Granny Orne (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.0994644 + posY: 1.66657078 + posZ: 34.8603973 + rotX: 359.9325 + rotY: 269.997253 + rotZ: 0.0134907318 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2666': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 2210c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Amnesia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 74.09517 + posY: 1.505425 + posZ: 82.26855 + rotX: 0.02296656 + rotY: 270.017578 + rotZ: 0.002943524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368414 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1b0235 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Persuasion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.240003 + posY: 1.33927155 + posZ: 64.45 + rotX: 0.02081119 + rotY: 269.986359 + rotZ: 0.0167691447 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368424 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e5dd39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hyperawareness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.64000368 + posY: 1.34140289 + posZ: 75.95 + rotX: 0.0208141617 + rotY: 269.978821 + rotZ: 0.0167653561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f6fdb0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nimble + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.5831261 + posY: 1.30330253 + posZ: -64.46964 + rotX: 0.02080827 + rotY: 269.999939 + rotZ: 0.0167703666 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368528 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2acced + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ornate Bow (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.94 + posY: 1.40143847 + posZ: 7.19999933 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 507900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5079': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814241952/2B036A03D8C140C73D00DA75EB1A0A70F4745AED/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: eb5adc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Lucky! (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.91382 + posY: 3.17056584 + posZ: -67.0530853 + rotX: 0.0208081752 + rotY: 270.000854 + rotZ: 0.0167714339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2740': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f4dd3d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shocking Discovery + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.0190773 + posY: 1.36276233 + posZ: -66.7568359 + rotX: 0.0208035558 + rotY: 270.019226 + rotZ: 0.016777629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447633 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4476': + 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: b3cad4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Daredevil (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.17774 + posY: 1.29656863 + posZ: -83.01471 + rotX: 0.0208081063 + rotY: 270.0001 + rotZ: 0.0167712811 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bb0f6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Heroic Rescue + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6300049 + posY: 1.347728 + posZ: 73.65001 + rotX: 0.0207946822 + rotY: 270.027039 + rotZ: 0.0167737771 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3747': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d8705c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Angered Spirits + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.7983246 + posY: 1.64011288 + posZ: -45.68833 + rotX: 0.1292641 + rotY: 270.009277 + rotZ: 359.981171 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 526300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5263': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1343712298674122976/357887F0D1BFDDDE543B10FC6E72A470152F0EFD/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f850b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Leather Coat (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.64874 + posY: 3.16968036 + posZ: -65.6091156 + rotX: 0.0208081733 + rotY: 270.0006 + rotZ: 0.0167706925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368848 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6aae86 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Close Call (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40603161 + posZ: -4.30000353 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -4730,13 +15170,58 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 441023 + CardID: 368521 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '4410': + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c4cf62 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bulletproof Vest (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.94 + posY: 1.39771616 + posZ: 21.0000038 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3790': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ @@ -4747,7 +15232,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 1258c6 + GUID: 4ea716 Grid: true GridProjection: false Hands: true @@ -4758,30 +15243,975 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Logical Reasoning (4) + Nickname: Studious (3) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 89.24739 - posY: 1.45532513 - posZ: 13.47808 - rotX: 359.984955 - rotY: 270.006531 - rotZ: 359.941345 + posX: 112.560387 + posY: 1.51067376 + posZ: 48.3394127 + rotX: 0.01354435 + rotY: 270.000061 + rotZ: 0.0102723185 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 378017 + CardID: 533900 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3780': + '5339': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325549672934426/9E204160F9A814470C1E41FF31A41275A951EF84/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 59f3e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: A Test of Will (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5688572 + posY: 1.54649055 + posZ: 80.96074 + rotX: 2.71492243 + rotY: 270.024628 + rotZ: 0.017189106 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430908 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2728': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: 8aa0c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Deny Existence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6000042 + posY: 1.339336 + posZ: 87.45 + rotX: 0.0208175164 + rotY: 269.96698 + rotZ: 0.0167635437 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235648 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2356': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: The Forgotten Guardian + DragSelectable: true + GMNotes: '' + GUID: 29fc24 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ichtaca + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.62483 + posY: 3.17204762 + posZ: -63.4302139 + rotX: 0.020808531 + rotY: 269.999847 + rotZ: 0.0167708434 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235644 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2356': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Poision. + DragSelectable: true + GMNotes: '' + GUID: 819f52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.88728 + posY: 3.174081 + posZ: -64.36427 + rotX: 0.0208086278 + rotY: 270.0 + rotZ: 0.0167710856 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230354 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 296dc8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Book of Shadows (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.41923249 + posZ: -29.3099937 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d5cac6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Taunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6300049 + posY: 1.34974778 + posZ: 80.55 + rotX: 0.0207943153 + rotY: 270.027039 + rotZ: 0.0167732947 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226339 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6a9021 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Marksmanship (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.40292907 + posZ: 18.8300266 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 84ba9d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"I''ll see you in hell!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6300039 + posY: 1.350421 + posZ: 82.85 + rotX: 0.02079607 + rotY: 270.027039 + rotZ: 0.0167730115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 375129 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 79b4af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Abandoned and Alone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 87.96376 + posY: 1.37863719 + posZ: -52.84543 + rotX: 0.0208916031 + rotY: 270.023865 + rotZ: 0.0165571664 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315250 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f2508d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hot Streak (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.4113791 + posZ: -18.1000061 + rotX: 359.987427 + rotY: 269.999847 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226353 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bc80ab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: First Aid (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.41471636 + posZ: -24.86999 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7d4749 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Beat Cop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.230008 + posY: 1.34245384 + posZ: 59.85 + rotX: 0.0208177976 + rotY: 269.969421 + rotZ: 0.0167637467 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440621 + 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: bda4fd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lantern (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.32716 + posY: 1.5488534 + posZ: 37.4422379 + rotX: 359.989349 + rotY: 269.992371 + rotZ: 359.982239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '358387' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rise to the Occasion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.37 + posY: 1.36443722 + posZ: 85.15 + rotX: 0.0208204873 + rotY: 269.9588 + rotZ: 0.0167588126 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2728': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: 493b03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Prophesy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.2000046 + posY: 1.33989763 + posZ: 85.15 + rotX: 0.0208171364 + rotY: 269.970978 + rotZ: 0.0167635083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 431008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2737': + 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: c70ad8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Interrogate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6300068 + posY: 1.342342 + posZ: 55.2500038 + rotX: 0.02079588 + rotY: 270.027039 + rotZ: 0.0167742781 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235857 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2358': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Unleash the Timestream + DragSelectable: true + GMNotes: '' + GUID: 35bc58 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Relic of Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.62158 + posY: 1.30171525 + posZ: -72.31322 + rotX: 0.0208297186 + rotY: 269.999664 + rotZ: 0.0166090112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 454741 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4547': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Item. Relic. + DragSelectable: true + GMNotes: '' + GUID: 0ce113 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ancient Ankh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.99787 + posY: 2.36574912 + posZ: -93.55096 + rotX: 0.0208107159 + rotY: 269.999939 + rotZ: 0.01676894 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 431006 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2737': + 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: 4e1d91 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Steadfast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.0300045 + posY: 1.34963584 + posZ: 75.95 + rotX: 0.0208116733 + rotY: 269.987427 + rotZ: 0.0167684965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374532 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3745': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7b6ab5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Analytical Mind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.42199 + posY: 1.61407924 + posZ: -45.08632 + rotX: 0.362734765 + rotY: 270.015045 + rotZ: 359.680054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226341 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d2e026 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vicious Blow (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.40541053 + posZ: 9.630022 + rotX: 359.987427 + rotY: 270.000061 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4476': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ @@ -4792,7 +16222,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 006d44 + GUID: 1bd139 Grid: true GridProjection: false Hands: true @@ -4803,17 +16233,107 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Another Day, Another Dollar (3) + Nickname: Haste (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 112.317162 - posY: 1.39417815 - posZ: 37.881134 + posX: -52.716 + posY: 1.30109835 + posZ: -65.63145 + rotX: 0.0208085626 + rotY: 269.999969 + rotZ: 0.0167710073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232934 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Olaus Wormius Translation + DragSelectable: true + GMNotes: '' + GUID: d45f10 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Necronomicon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.2950974 + posY: 1.36349916 + posZ: -51.4901772 + rotX: 0.0208088756 + rotY: 270.0 + rotZ: 0.0167707372 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226351 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2f9de4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Keen Eye (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.41285515 + posZ: -17.969986 rotX: 359.987427 - rotY: 270.0001 + rotY: 270.0 rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 @@ -4865,952 +16385,7 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 545206 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3d57b4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mists of R'lyeh (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -58.62183 - posY: 3.284762 - posZ: -72.6944351 - rotX: 0.0208067857 - rotY: 270.0092 - rotZ: 0.0167715121 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235123 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2351': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f6fdb0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Nimble - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.5831261 - posY: 1.30330253 - posZ: -64.46964 - rotX: 0.02080827 - rotY: 269.999939 - rotZ: 0.0167703666 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368429 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d6771f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fieldwork - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -6.64000225 - posY: 1.33803678 - posZ: 64.45 - rotX: 0.02081346 - rotY: 269.978821 - rotZ: 0.0167630222 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 380949 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3809': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ce3a1a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Vengeful Hound - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -1.62743974 - posY: 1.87950075 - posZ: -44.0202332 - rotX: 0.0293578617 - rotY: 269.9289 - rotZ: 338.761932 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368812 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3f3488 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: A Chance Encounter - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 45.97 - posY: 1.35916281 - posZ: 71.35 - rotX: 0.02080517 - rotY: 270.012939 - rotZ: 0.0167774316 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431111 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2698': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 3b3c0a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Drawing the Sign - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 79.6330948 - posY: 1.51341081 - posZ: 71.33267 - rotX: 0.020565819 - rotY: 270.0009 - rotZ: 0.01678212 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 292813 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2928': - 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: Guardian - DragSelectable: true - GMNotes: '' - GUID: b492cb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: .45 Thompson (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -46.9860268 - posY: 1.36414373 - posZ: -55.87514 - rotX: 0.02081064 - rotY: 270.0 - rotZ: 0.01677142 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368711 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2616': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 256da2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Eavesdrop - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500042 - posY: 1.35276365 - posZ: 71.35 - rotX: 0.0208145473 - rotY: 269.974884 - rotZ: 0.0167638231 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368418 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: acd0da - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"I''ve got a plan!"' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.24000216 - posY: 1.33657849 - posZ: 55.25 - rotX: 0.0208124332 - rotY: 269.9864 - rotZ: 0.0167701915 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 507000 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5070': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814228569/2C9CE7E5E9645D73AF3D19BE99CC8FFD1BCDD98B/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7fda7e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Familiar Spirit - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.9848061 - posY: 12.3017073 - posZ: -60.8210869 - rotX: 0.0208035465 - rotY: 270.018616 - rotZ: 0.016778538 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266500 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2665': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734339700/799FE6D03024701D5DD27E643960B8BF268D6EAF/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: a9a639 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Called by the Mists - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -20.6085854 - posY: 3.17541957 - posZ: -91.6246643 - rotX: 0.0208091736 - rotY: 269.999939 - rotZ: 0.0167705584 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374717 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3747': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d8705c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Angered Spirits - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 52.7983246 - posY: 1.64011288 - posZ: -45.68833 - rotX: 0.1292641 - rotY: 270.009277 - rotZ: 359.981171 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 526700 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5267': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1343712298677682786/A6BAA33A2A29A98557BC19D768CD8D84A592743E/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: eef1e6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Pilfer (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.9555626 - posY: 3.17135453 - posZ: -66.5172348 - rotX: 0.02080198 - rotY: 270.023529 - rotZ: 0.016778836 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230335 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 90a106 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Spirit Athame (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.4055841 - posZ: 21.2900219 - rotX: 359.987427 - rotY: 270.000244 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315247 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ce1b89 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: High Roller (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.40827727 - posZ: -6.60000229 - rotX: 359.987427 - rotY: 269.999878 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 377537 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3775': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 14c396 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Serpents of Yig - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 27.3039474 - posY: 1.45803213 - posZ: -82.09155 - rotX: 0.02075481 - rotY: 270.056458 - rotZ: 5.80825233 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277711 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2777': - 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: c2d211 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Swift Reflexes - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -31.2479954 - posY: 1.33109152 - posZ: 71.25443 - rotX: 0.0208104569 - rotY: 269.9964 - rotZ: 0.0167663582 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374834 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2098': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9aee7f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Improvisation - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 2.28952074 - posY: 0.4800682 - posZ: -82.19826 - rotX: 358.634 - rotY: 270.0588 - rotZ: 359.989777 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545209 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Permanent - DragSelectable: true - GMNotes: '' - GUID: 2ebdf1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: On Your Own (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.24509 - posY: 3.16501665 - posZ: -90.3928757 - rotX: 0.0208078139 - rotY: 270.0092 - rotZ: 0.0167691819 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368833 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1b4434 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dark Horse - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 42.5700035 - posY: 1.35388863 - posZ: 57.5500031 - rotX: 0.0208167 - rotY: 269.9702 - rotZ: 0.0167615525 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379828 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3798': - 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: 0bb3da - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: First Watch - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.2650452 - posY: 1.67629635 - posZ: 7.016553 - rotX: 359.922668 - rotY: 270.003845 - rotZ: 0.0136328405 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527401 + CardID: 527416 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -5824,10 +16399,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Basic Weakness + Description: Enemy DragSelectable: true GMNotes: '' - GUID: c17498 + GUID: b239d7 Grid: true GridProjection: false Hands: true @@ -5838,153 +16413,18 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Paranoia + Nickname: Mob Enforcer SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 74.67481 - posY: 1.51525068 - posZ: 82.12781 - rotX: 0.0206127949 - rotY: 269.999451 - rotZ: 0.0157527346 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368853 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: dffe4a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scrapper (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.4103744 - posZ: -20.4000053 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 261100 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2611': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d3e55b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Timeworn Brand (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 116.94001 - posY: 1.40205884 - posZ: 4.89999962 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235107 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2351': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 41f205 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Vault of Knowledge - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -15.8005047 - posY: 3.29959369 - posZ: -86.04429 - rotX: 0.020808639 - rotY: 270.0 - rotZ: 0.016771242 + posX: 74.1295853 + posY: 1.57301271 + posZ: 81.96535 + rotX: 0.0202451628 + rotY: 269.998047 + rotZ: 0.017438814 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -6035,24 +16475,24 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 293313 + CardID: 368503 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2933': + '2096': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: Signs of the Black Stars + Description: '' DragSelectable: true GMNotes: '' - GUID: b40b98 + GUID: 3ff641 Grid: true GridProjection: false Hands: true @@ -6063,41 +16503,41 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: De Vermis Mysteriis (2) + Nickname: Reckless Assault SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -58.93073 - posY: 1.58519077 - posZ: -53.4560623 - rotX: 0.0240930859 - rotY: 270.008118 - rotZ: 0.00300934631 + posX: 64.07 + posY: 1.36708272 + posZ: 75.95 + rotX: 0.020807568 + rotY: 269.997284 + rotZ: 0.0167717114 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368432 + CardID: 431557 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2304': + '3790': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: Mortal Reminder + Description: '' DragSelectable: true GMNotes: '' - GUID: c1a687 + GUID: '394603' Grid: true GridProjection: false Hands: true @@ -6108,24 +16548,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Tooth of Eztli + Nickname: Family Inheritance SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -6.640002 - posY: 1.336017 - posZ: 57.55 - rotX: 0.020814199 - rotY: 269.978821 - rotZ: 0.0167644545 + posX: 7.289977 + posY: 1.47384119 + posZ: -58.3566551 + rotX: 0.02373747 + rotY: 269.918823 + rotZ: 4.809997 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 226315 + CardID: 226306 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -6142,7 +16582,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 1bc300 + GUID: eab2ed Grid: true GridProjection: false Hands: true @@ -6153,30 +16593,390 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Trusted + Nickname: Teamwork SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 12.6300058 - posY: 1.34503508 - posZ: 64.4500046 - rotX: 0.0207948089 + posX: 12.6300039 + posY: 1.35109425 + posZ: 85.15 + rotX: 0.0207958911 rotY: 270.027039 - rotZ: 0.0167727638 + rotZ: 0.01677621 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 374014 + CardID: 455400 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2098': + '4554': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734424536/8DA5176D229BB4049EDE9A072C1E4B0B39E9880B/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 728fa3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: "D\xE9j\xE0 Vu (5)" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.29856 + posY: 2.4900713 + posZ: -69.2471542 + rotX: 0.0 + rotY: 270.0 + rotZ: 22.62915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 396e1c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Azure Flame + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.19778 + posY: 1.29653013 + posZ: -81.88072 + rotX: 0.0208082963 + rotY: 270.000061 + rotZ: 0.0167705864 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230337 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b2e27e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fearless (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.40682483 + posZ: 16.6900234 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 463200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4632': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734361537/EEFDA6756209075F5EB2E7E556172B63A5C408BB/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 43b3a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: One-Two Punch (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.24542 + posY: 1.93621385 + posZ: 34.3512154 + rotX: 359.933655 + rotY: 269.995667 + rotZ: 0.0140048908 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2358': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Madness. Paradox. + DragSelectable: true + GMNotes: '' + GUID: d64b8f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Out of Body Experience + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.1434669 + posY: 3.17477942 + posZ: -63.370575 + rotX: 0.0208083838 + rotY: 269.999847 + rotZ: 0.0167704877 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230336 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 35166c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Book of Shadows (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76 + posY: 1.40620458 + posZ: 18.99002 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2667': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011565208488842326/3FF786B2685526D7475E5EE6F2621F8853BBCEA3/ + NumHeight: 2 + NumWidth: 4 + Type: 0 + UniqueBack: false + Description: Insight. Blessed. + DragSelectable: true + GMNotes: '' + GUID: 30d9ca + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ward of Radiance + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.1240578 + posY: 1.99382424 + posZ: 34.2070541 + rotX: 359.932739 + rotY: 269.994415 + rotZ: 0.0141723724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 438128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4381': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 406ab2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Your Worst Nightmare + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.45674 + posY: 1.52149308 + posZ: 51.4070473 + rotX: 0.019881621 + rotY: 269.999634 + rotZ: 180.018326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 370926 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3709': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ @@ -6187,7 +16987,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: '170538' + GUID: 576d70 Grid: true GridProjection: false Hands: true @@ -6198,78 +16998,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: The Painted World + Nickname: Heirloom of Hyperborea SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 7.05049372 - posY: 0.475667953 - posZ: -49.01768 - rotX: -4.56944e-06 - rotY: 269.999939 - rotZ: 359.991943 + posX: -46.5228539 + posY: 2.19076967 + posZ: -89.842 + rotX: 359.9792 + rotY: 270.0 + rotZ: 180.005737 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 274005 + CardID: 448737 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2740': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1186a1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Tony's .38 Long Colt - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -33.5642548 - posY: 1.37087488 - posZ: -49.5318451 - rotX: 0.02080342 - rotY: 270.019775 - rotZ: 0.0167778078 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368424 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': + '4487': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -6277,7 +17032,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: e5dd39 + GUID: ff4aea Grid: true GridProjection: false Hands: true @@ -6288,18 +17043,63 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Hyperawareness + Nickname: Scavenging (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -6.64000368 - posY: 1.34140289 - posZ: 75.95 - rotX: 0.0208141617 - rotY: 269.978821 - rotZ: 0.0167653561 + posX: -47.56107 + posY: 2.483187 + posZ: -84.9376 + rotX: 0.0 + rotY: 270.0 + rotZ: 22.62915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 378863 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3788': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 785f68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hoods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.60880375 + posY: 1.4786005 + posZ: -49.8665657 + rotX: 0.0228390861 + rotY: 269.882355 + rotZ: 4.91904736 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -6350,142 +17150,7 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 226312 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: acf2b0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"If it bleeds..."' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6300058 - posY: 1.34705472 - posZ: 71.3500061 - rotX: 0.0207952652 - rotY: 270.027039 - rotZ: 0.01677259 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 506100 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5061': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814173947/287EA7C4E87EB0AECA562C312DF7320FCF33281C/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: dff559 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Occult Invocation - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -56.1680336 - posY: 3.16996861 - posZ: -67.7829361 - rotX: 0.0208079536 - rotY: 270.001221 - rotZ: 0.0167717021 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448839 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4488': - 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: Library Intern - DragSelectable: true - GMNotes: '' - GUID: 97e9ce - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Abigail Foreman (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -17.1198387 - posY: 1.67931545 - posZ: 7.569963 - rotX: 359.9201 - rotY: 269.999939 - rotZ: 0.016875755 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235106 + CardID: 235117 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -6502,7 +17167,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 485e4c + GUID: '731411' Grid: true GridProjection: false Hands: true @@ -6513,288 +17178,18 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Anything You Can Do, Better + Nickname: Mind Over Matter (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -33.399147 - posY: 3.52285361 - posZ: -84.41501 - rotX: 0.0208085328 + posX: -54.22279 + posY: 1.29565561 + posZ: -82.35593 + rotX: 0.02080845 rotY: 270.0 - rotZ: 0.0167711861 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 371209 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3712': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: cd94e3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Searching for Izzie - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 76.87588 - posY: 1.533313 - posZ: -49.37355 - rotX: 0.0206230525 - rotY: 270.0019 - rotZ: 0.0398144238 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277710 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2777': - 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: 5115d9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Intel Report - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -27.1022224 - posY: 1.332592 - posZ: 71.23809 - rotX: 0.0208069868 - rotY: 269.998962 - rotZ: 0.01677785 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 313604 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3136': - 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: '' - DragSelectable: true - GMNotes: '' - GUID: 4f2668 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Rite of Seeking (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.4130286 - posZ: -6.3099823 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368855 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3f91af - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Rabbit's Foot (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.41161513 - posZ: -25.0000057 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 370046 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3700': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 274daa - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mysteries Remain - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 84.64643 - posY: 1.54209042 - posZ: -58.08328 - rotX: 6.12337255 - rotY: 270.007751 - rotZ: 0.006448847 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 232300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2323': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Humanoid. Elite. - DragSelectable: true - GMNotes: '' - GUID: 6720ef - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Man in the Pallid Mask - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -22.02582 - posY: 2.37551236 - posZ: -83.66287 - rotX: 0.020809222 - rotY: 270.0 - rotZ: 0.0167703032 + rotZ: 0.0167710669 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -6845,142 +17240,7 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368801 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '358387' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Rise to the Occasion - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 49.37 - posY: 1.36443722 - posZ: 85.15 - rotX: 0.0208204873 - rotY: 269.9588 - rotZ: 0.0167588126 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 537609 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: 6cbc01 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Bell Tolls - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.8913 - posY: 1.30483675 - posZ: -55.12381 - rotX: 0.0208084658 - rotY: 269.999969 - rotZ: 0.01677108 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 290321 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2903': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c1ce8e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The 13th Vision - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -68.38262 - posY: 2.36265874 - posZ: -70.43153 - rotX: 0.0208098218 - rotY: 270.0 - rotZ: 359.983521 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230301 + CardID: 230350 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -6997,7 +17257,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: a5c780 + GUID: e58d2a Grid: true GridProjection: false Hands: true @@ -7008,24 +17268,654 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Enraptured + Nickname: Scrying (3) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -18.2000046 - posY: 1.33922434 - posZ: 82.85 - rotX: 0.0208174363 - rotY: 269.971 - rotZ: 0.0167632867 + posX: 80.76001 + posY: 1.41551018 + posZ: -15.5099869 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 448032 + CardID: 262204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2622': + 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: Mind-Expanding Ideas + DragSelectable: true + GMNotes: '' + GUID: 344d98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pnakotic Manuscripts (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.4213537 + posZ: -43.109993 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368838 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8a4673 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fire Extinguisher (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.37135 + posY: 3.51983881 + posZ: -65.69757 + rotX: 0.0124902874 + rotY: 270.0 + rotZ: 180.027863 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430639 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Unidentified + DragSelectable: true + GMNotes: '' + GUID: 9bc46e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ancient Stone (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.40460336 + posZ: 18.99002 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 463300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4633': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734369090/64C3A5BDC79736739298202441B7EA98601A7A0F/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 03367f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Stand Together + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -60.77679 + posY: 12.3349133 + posZ: -60.5461464 + rotX: 0.0208036788 + rotY: 270.018433 + rotZ: 0.0167783722 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 506000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5060': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814171690/DA4D9D15D6303F30A331C93018D72C6EB43216E0/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '178794' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Extensive Research + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.8662453 + posY: 2.84540915 + posZ: -113.444908 + rotX: 0.0208084919 + rotY: 270.0 + rotZ: 0.016771188 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3125': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Elegant and Elusive + DragSelectable: true + GMNotes: '' + GUID: 83b588 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: August Lindquist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.2187462 + posY: 1.36356008 + posZ: -57.5782471 + rotX: 0.0208096523 + rotY: 270.000031 + rotZ: 0.0167725645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2929': + 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: Rogue + DragSelectable: true + GMNotes: '' + GUID: b5e5f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tennessee Sour Mash (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.25424 + posY: 1.5068202 + posZ: -48.776722 + rotX: 359.875 + rotY: 269.98233 + rotZ: 359.889984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430642 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 95272b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Deduction (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.40646446 + posZ: 12.090023 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 473700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4737': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1474318984931858827/B4C31886CADC19F707BFDC4902DC652DAF878FBE/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a0b9a7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Parallel Fates + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.817688 + posY: 12.3020468 + posZ: -61.2843323 + rotX: 0.0208037477 + rotY: 270.0185 + rotZ: 0.0167784188 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 497100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4971': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734364594/44448CCCEE2BA864DB3323AE97C91B687201A228/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '217349' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Randall Cho + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.05583 + posY: 3.17256284 + posZ: -79.24217 + rotX: 0.0208090711 + rotY: 269.999939 + rotZ: 0.0167705715 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 444021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4408': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: 1e9213 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Storm of Spirits (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.9545746 + posY: 1.56445456 + posZ: 24.95834 + rotX: 359.985535 + rotY: 270.028625 + rotZ: 359.981476 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368928 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3689': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a56ffe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Wendy's Amulet + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 87.36852 + posY: 1.4640274 + posZ: -54.70025 + rotX: 0.0210064612 + rotY: 270.000427 + rotZ: 4.54647064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2616': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cf1d4e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Slip Away + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500042 + posY: 1.350744 + posZ: 64.45 + rotX: 0.0208153985 + rotY: 269.974854 + rotZ: 0.0167630762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226342 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fc2629 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"Eat lead!" (2)' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.406031 + posZ: 7.33001947 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448030 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -7039,10 +17929,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Alacrity + Description: '' DragSelectable: true GMNotes: '' - GUID: 4c0f00 + GUID: 26853e Grid: true GridProjection: false Hands: true @@ -7053,18 +17943,378 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Empower Self (2) + Nickname: Word of Command (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -13.6544161 - posY: 1.57417119 - posZ: 6.495031 - rotX: 359.920135 - rotY: 270.00177 - rotZ: 0.016874047 + posX: -53.18796 + posY: 1.29924214 + posZ: -71.38749 + rotX: 0.020774316 + rotY: 270.000275 + rotZ: 0.0167474784 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2db518 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Evidence! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6300049 + posY: 1.34907448 + posZ: 78.25 + rotX: 0.0207955912 + rotY: 270.027039 + rotZ: 0.0167759154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 296500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2965': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Ally. Believer. + DragSelectable: true + GMNotes: '' + GUID: 1e7f1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Abbess Allegria Di Biase + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.02915 + posY: 1.77067351 + posZ: 4.416883 + rotX: 2.0594604 + rotY: 270.102448 + rotZ: 3.75599837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226333 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c55160 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mano a Mano (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.39920676 + posZ: 32.6300278 + rotX: 359.987427 + rotY: 269.9999 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 528400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5284': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1479946491539972527/879AC4638A6CD46470B35AB4D0FFBEEB4E9E5123/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: O'Bannion Driver + DragSelectable: true + GMNotes: '' + GUID: a3075e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Chuck Fergus (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.35062 + posY: 1.30438709 + posZ: -47.4047928 + rotX: 0.02080145 + rotY: 270.024261 + rotZ: 0.01677987 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 464600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4646': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734363045/92D5FC9DEDD33A87F4FA2A0D4D771FAD4D522792/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5e3a3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Prescient + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.43865 + posY: 1.77277577 + posZ: 34.37831 + rotX: 359.9336 + rotY: 269.996765 + rotZ: 0.0140671479 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 507100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5071': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814229114/15873F3BCF06F73943445E1182DB7A094FA55EB6/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 24621a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Robes of Endless Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.0207672 + posY: 3.17013931 + posZ: -80.71543 + rotX: 0.020809073 + rotY: 270.0 + rotZ: 0.0167717636 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 293214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2932': + 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: Seeker + DragSelectable: true + GMNotes: '' + GUID: 0b12ac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scroll of Secrets (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.51326 + posY: 1.36290967 + posZ: -48.93328 + rotX: 0.0249342881 + rotY: 269.99054 + rotZ: -0.00200824486 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527404 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2666': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 88ee43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hypochondria + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 75.0673 + posY: 1.53452182 + posZ: 81.82477 + rotX: 0.0157311484 + rotY: 269.999634 + rotZ: 0.018423602 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -7115,24 +18365,24 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 526100 + CardID: 528800 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5261': + '5288': BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1343712298674079746/F264A40AF71C565360F91FDC2C0DAEA449C879CE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1479946668213573646/CCC574E14479B8E06748DE612AEF492C99B3E681/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - Description: Dark Knowledge + Description: '' DragSelectable: true GMNotes: '' - GUID: 0f580f + GUID: a49b7c Grid: true GridProjection: false Hands: true @@ -7143,24 +18393,249 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: CardCustom - Nickname: Forbidden Tome (3) + Nickname: Eldritch Inspiration (1) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -56.59372 - posY: 3.16982841 - posZ: -67.3864441 - rotX: 0.0208083242 - rotY: 270.001465 - rotZ: 0.0167707652 + posX: -61.9842873 + posY: 1.30115819 + posZ: -53.9275742 + rotX: 0.0208085142 + rotY: 270.000183 + rotZ: 0.0167711452 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 226348 + CardID: 530700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5307': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325035904695245/1986827BC5DD7C78A3B57362EECC7E5851274E9D/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cd796e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Azure Flame (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.05531 + posY: 1.30390918 + posZ: -48.1632156 + rotX: 0.0208082926 + rotY: 270.000183 + rotZ: 0.0167712718 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 529300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5293': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1479946668214251171/F9BA27FD8A3D59ABD75F82936FDE6E92E36FF74C/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 47d116 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Counterpunch (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.8856239 + posY: 3.39667273 + posZ: -58.592556 + rotX: 0.0124938544 + rotY: 270.0 + rotZ: 180.009979 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2746': + 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: 6fa7fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Track Shoes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.5700035 + posY: 1.35321534 + posZ: 55.2500038 + rotX: 0.0208173972 + rotY: 269.9702 + rotZ: 0.0167611558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2669': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734347445/B6DDBDAE36CE2548EC420514F505418416752046/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: edd051 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '"Get over here!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.80434 + posY: 12.3023243 + posZ: -59.9522972 + rotX: 0.020803595 + rotY: 270.0185 + rotZ: 0.0167784076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368422 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Unidentified + DragSelectable: true + GMNotes: '' + GUID: 565b6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Strange Solution + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.639993 + posY: 1.34274948 + posZ: 80.55001 + rotX: 0.0208139587 + rotY: 269.978821 + rotZ: 0.0167658776 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226357 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -7177,7 +18652,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 7001be + GUID: c92ea3 Grid: true GridProjection: false Hands: true @@ -7188,17 +18663,7127 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Beat Cop (2) + Nickname: Shotgun (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87001 + posY: 1.41719782 + posZ: -34.0699921 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 215cec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cherished Keepsake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.57 + posY: 1.36196756 + posZ: 85.15 + rotX: 0.02081672 + rotY: 269.9702 + rotZ: 0.0167616438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368425 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ba16cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Medical Texts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.640003 + posY: 1.34072971 + posZ: 73.65 + rotX: 0.0208145548 + rotY: 269.978821 + rotZ: 0.0167659223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2358': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Repossess the Past + DragSelectable: true + GMNotes: '' + GUID: 87718c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Relic of Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.5658951 + posY: 2.845377 + posZ: -108.118523 + rotX: 0.0208081175 + rotY: 270.000061 + rotZ: 0.0167709235 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3798': + 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: b6506d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"Fool me once..." (1)' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.9733334 + posY: 1.6903677 + posZ: 7.17354536 + rotX: 359.9186 + rotY: 270.001282 + rotZ: 0.0155457929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 441024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4410': + 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: Markings of Isis + DragSelectable: true + GMNotes: '' + GUID: 66d5a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Archaic Glyphs (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.97676 + posY: 1.36161959 + posZ: -63.2690926 + rotX: 0.0208061747 + rotY: 270.0178 + rotZ: 0.0167769343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368411 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2f9ab1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vantage Point + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.240004 + posY: 1.34129119 + posZ: 71.35 + rotX: 0.02081259 + rotY: 269.986359 + rotZ: 0.0167654455 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292913 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2929': + 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: b65011 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Investments + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.4359 + posY: 1.56717479 + posZ: -53.5249176 + rotX: 0.0196301043 + rotY: 270.007874 + rotZ: 0.00258995965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 377436 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3774': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0e4a82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Codex of Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.3793259 + posY: 2.1848042 + posZ: -94.20157 + rotX: 0.02080714 + rotY: 270.000854 + rotZ: 0.0167760067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 431110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2698': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 88a9b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Overzealous + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 79.34387 + posY: 1.521027 + posZ: 71.2091 + rotX: 0.0200308 + rotY: 269.999939 + rotZ: 0.0167929437 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 505000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5050': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814129238/FBD338DC049788112D163516A85CD87531C68166/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: de2d0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Overpower (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.4582977 + posY: 3.17148185 + posZ: -66.3234 + rotX: 0.020802673 + rotY: 270.018829 + rotZ: 0.01677802 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2761': + 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: 5a305e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Colt Vest Pocket + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500046 + posY: 1.348836 + posZ: 62.1500053 + rotX: 0.02081202 + rotY: 269.9888 + rotZ: 0.0167703833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2616': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 256da2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Eavesdrop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500042 + posY: 1.35276365 + posZ: 71.35 + rotX: 0.0208145473 + rotY: 269.974884 + rotZ: 0.0167638231 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527561 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3798': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 06322f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Terrible Secret + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.347881 + posY: 1.52229333 + posZ: -78.62629 + rotX: 0.037793614 + rotY: 269.967255 + rotZ: 0.009221422 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 443723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4437': + 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: 600a3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Stars Are Right + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.37835 + posY: 1.401744 + posZ: 25.1459961 + rotX: 359.9877 + rotY: 270.0277 + rotZ: 359.982635 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430648 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Protective Amulet + DragSelectable: true + GMNotes: '' + GUID: b00b76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Disc of Itzamna (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.41018677 + posZ: -1.7099812 + rotX: 359.987427 + rotY: 270.000122 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368428 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 07a8f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Art Student + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.64000273 + posY: 1.33871 + posZ: 66.75 + rotX: 0.0208162684 + rotY: 269.978821 + rotZ: 0.0167661086 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 449034 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4490': + 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: b45c82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Garrote Wire (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.2366447 + posY: 1.30114961 + posZ: -71.01385 + rotX: 0.0208082478 + rotY: 270.000031 + rotZ: 0.0167703424 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 293215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2932': + 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: 6de21b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Knowledge is Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.55411 + posY: 1.53692091 + posZ: -53.7382545 + rotX: 0.0209390428 + rotY: 270.015747 + rotZ: 0.0191810168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 444022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4408': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: 968a26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Stargazing (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.17623 + posY: 1.5469203 + posZ: 25.128376 + rotX: 359.989166 + rotY: 270.027618 + rotZ: 359.9685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Mysterious Benefactress + DragSelectable: true + GMNotes: '' + GUID: 1ee492 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Madame Labranche + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.5700035 + posY: 1.35725486 + posZ: 69.05 + rotX: 0.0208162181 + rotY: 269.970184 + rotZ: 0.0167627446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440722 + 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: e3bd71 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Crystallizer of Dreams + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.95309 + posY: 1.40061021 + posZ: 29.4435387 + rotX: 359.9884 + rotY: 269.9784 + rotZ: 359.978058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230333 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '599209' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Protective Incantation (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.40372288 + posZ: 28.1900234 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 313906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3139': + 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: 5e32a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Preposterous Sketches (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.40336251 + posZ: 23.590023 + rotX: 359.987427 + rotY: 270.0001 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368631 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3686': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: The Louisiana Lion + DragSelectable: true + GMNotes: '' + GUID: eaa415 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Leo De Luca + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.11792 + posY: 2.18863821 + posZ: -89.20177 + rotX: 359.9792 + rotY: 270.0 + rotZ: 180.003784 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5efc92 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood Eclipse (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.8165779 + posY: 3.28376937 + posZ: -77.12867 + rotX: 0.0208068 + rotY: 270.0092 + rotZ: 0.0167717934 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 371112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3711': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '876557' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Duke + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.51822 + posY: 1.49823117 + posZ: -57.04474 + rotX: 0.02328792 + rotY: 270.0 + rotZ: 0.0151858637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 528900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5289': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1479946668213574519/CCDF8CCCA248DE667B8EEAE10427D360EAE9AF93/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3c4db8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Higher Education + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.5385628 + posY: 1.30131328 + posZ: -53.95056 + rotX: 0.02080831 + rotY: 270.000031 + rotZ: 0.0167711768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 530500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5305': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1479946880515191128/2542787F8FE126F466BC02864E2B9BBB35790C53/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2c2972 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Guts (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.949 + posY: 1.30257463 + posZ: -54.0950356 + rotX: 0.0208147839 + rotY: 269.978973 + rotZ: 0.0167635288 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230346 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2236f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Counterspell (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.41240823 + posZ: -4.00998259 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440623 + 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: Cat General of Ulthar + DragSelectable: true + GMNotes: '' + GUID: e1aedf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Miss Doyle (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.43 + posY: 1.54419959 + posZ: 37.4258842 + rotX: 359.974884 + rotY: 269.9931 + rotZ: 359.982422 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235136 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 682e84 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Old Keyring + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.55525 + posY: 2.84518933 + posZ: -99.01316 + rotX: 0.0208082441 + rotY: 270.000031 + rotZ: 0.0167707447 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2616': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b8c93a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cheap Shot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500042 + posY: 1.35007071 + posZ: 62.1500053 + rotX: 0.0208151955 + rotY: 269.974884 + rotZ: 0.0167636182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226340 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Pure of Spirit + DragSelectable: true + GMNotes: '' + GUID: 3c9617 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Brother Xavier (1) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: posX: 95.87002 - posY: 1.410994 - posZ: -11.0699854 + posY: 1.40479016 + posZ: 11.9300222 + rotX: 359.987427 + rotY: 270.000061 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '213853' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Switchblade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500027 + posY: 1.35422194 + posZ: 80.55 + rotX: 0.0208109 + rotY: 269.988831 + rotZ: 0.0167680886 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3790': + 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: eafd12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood-Rite + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5311451 + posY: 1.33218 + posZ: 61.67714 + rotX: 0.02081183 + rotY: 269.995056 + rotZ: 0.0167690534 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 377141 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3771': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 275dc3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bought in Blood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.31953 + posY: 1.35254145 + posZ: -66.75125 + rotX: 0.0208099447 + rotY: 269.994476 + rotZ: 0.0167683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448738 + 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: '' + DragSelectable: true + GMNotes: '' + GUID: f0389b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nothing Left to Lose (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.3847427 + posY: 1.30081713 + posZ: -67.00287 + rotX: 0.0208080914 + rotY: 270.0001 + rotZ: 0.01677122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 534000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5340': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325549672934842/FCBE5BE067C256F96F92709DD4E0E5B8300329C1/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 81850d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Cheap Shot (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6390228 + posY: 1.62685072 + posZ: 41.9535561 + rotX: 0.004156579 + rotY: 270.005737 + rotZ: 0.00336218462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230334 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5d6e57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mind Wipe (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.40434325 + posZ: 25.8900242 + rotX: 359.987427 + rotY: 270.000122 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315241 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 63f145 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Opportunist (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.4039346 + posZ: 9.5 + rotX: 359.987427 + rotY: 269.999878 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2616': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f6ff32 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Narrow Escape + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500042 + posY: 1.35478342 + posZ: 78.25 + rotX: 0.0208150763 + rotY: 269.9749 + rotZ: 0.0167657565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2616': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b4ad29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Contraband + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500061 + posY: 1.348051 + posZ: 55.2500038 + rotX: 0.0208157171 + rotY: 269.9749 + rotZ: 0.0167655777 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292914 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2929': + 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: 2ee50e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Decoy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.5756035 + posY: 1.54699683 + posZ: -53.2420578 + rotX: 0.0201706048 + rotY: 270.0111 + rotZ: 0.00609406969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2669': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1597043896927362614/70DA6DB25DE90476346C7EA4FDC2297FD3A80E91/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 894b60 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Sword Cane + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.74495 + posY: 1.3074739 + posZ: -51.25899 + rotX: 0.0206765644 + rotY: 270.44812 + rotZ: 0.0169334188 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2775': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: 6eceef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sixth Sense + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.6880589 + posY: 1.4528209 + posZ: 43.8413734 + rotX: 0.0197454374 + rotY: 269.9732 + rotZ: 353.253143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315243 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2fba3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Switchblade (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.406416 + posZ: 0.299998581 + rotX: 359.987427 + rotY: 269.999878 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226358 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b1ad65 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: M1918 BAR (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87001 + posY: 1.41781831 + posZ: -36.36999 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 530300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5303': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1483324826177261183/B82215010ECAF38CAFBB8A41505392120526308F/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9e1428 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Esoteric Atlas (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -60.3701057 + posY: 1.30416358 + posZ: -45.6630173 + rotX: 0.02080811 + rotY: 270.000031 + rotZ: 0.0167711619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368404 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: edb554 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Barricade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.23999453 + posY: 1.34600389 + posZ: 87.4500046 + rotX: 0.02081109 + rotY: 269.986359 + rotZ: 0.0167644043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374417 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3744': + 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: 864fb6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bait and Switch (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 112.267654 + posY: 1.3757329 + posZ: 45.7017555 + rotX: 0.0208089612 + rotY: 269.999878 + rotZ: 0.0167736318 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 530400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5304': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1483324826181933138/C9406673F298E095EFE3EFE7AF36B5AA81EDC990/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e0a595 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Perception (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.8975868 + posY: 1.30453134 + posZ: -48.7149849 + rotX: 0.0208086576 + rotY: 269.999939 + rotZ: 0.0167718716 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 371605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3716': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e68658 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Smite the Wicked + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 76.515625 + posY: 1.52500629 + posZ: -50.03807 + rotX: 0.037379235 + rotY: 269.966217 + rotZ: 0.06762503 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369424 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3694': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 02777c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: On the Lam + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.76734 + posY: 1.29576933 + posZ: -86.254364 + rotX: 0.0208080411 + rotY: 270.0001 + rotZ: 0.0167710967 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '648590' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ineffable Truth (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.37789 + posY: 1.30184162 + posZ: -67.23382 + rotX: 0.0208083242 + rotY: 269.999969 + rotZ: 0.0167709384 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Doom Begets Doom + DragSelectable: true + GMNotes: '' + GUID: 946a58 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Decorated Skull (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.5000725 + posY: 3.16913486 + posZ: -87.17431 + rotX: 0.0208039563 + rotY: 270.0092 + rotZ: 0.0167778078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2655': + 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: 7d3a27 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: All In (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.41820335 + posZ: -43.400013 + rotX: 359.987427 + rotY: 269.999847 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e66002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lantern + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.57 + posY: 1.357928 + posZ: 71.35 + rotX: 0.020816328 + rotY: 269.970184 + rotZ: 0.0167607069 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374014 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2098': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '170538' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Painted World + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.31871462 + posY: 0.6395771 + posZ: -49.1846924 + rotX: -5.89429e-06 + rotY: 269.999939 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9b9e8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Calling in Favors + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 60.6699944 + posY: 1.368541 + posZ: 85.15 + rotX: 0.0208100677 + rotY: 270.000732 + rotZ: 0.0167711955 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230358 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 194adb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rite of Seeking (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.42171407 + posZ: -38.50999 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315254 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 308be1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sure Gamble (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.41386068 + posZ: -27.300005 + rotX: 359.987427 + rotY: 269.999725 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2732': + 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: 13413d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Connect the Dots + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.24000168 + posY: 1.33590531 + posZ: 52.95 + rotX: 0.02081261 + rotY: 269.9864 + rotZ: 0.0167691931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d1d7fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"Not without a fight!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.37 + posY: 1.36309063 + posZ: 80.55 + rotX: 0.0208194442 + rotY: 269.9588 + rotZ: 0.01675947 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447832 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4478': + 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: 1ac667 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Practice Makes Perfect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.6022263 + posY: 2.84541368 + posZ: -100.448311 + rotX: 0.0208086036 + rotY: 270.0 + rotZ: 0.0167711917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226334 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bb640d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ever Vigilant (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.39982712 + posZ: 30.3300285 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 534100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5341': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325549672938028/EBDB6CD1A74F85316C33079EB5DEC87BBA994226/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4c9ed8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Daring Maneuver (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.332653 + posY: 1.617292 + posZ: 42.0650253 + rotX: 0.00416217139 + rotY: 269.977234 + rotZ: 0.0033495042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368707 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2616': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 62cf25 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"I''m outta here!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500023 + posY: 1.35545671 + posZ: 80.55 + rotX: 0.02081474 + rotY: 269.974884 + rotZ: 0.01676473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2666': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: d83baf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Psychosis + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 74.05512 + posY: 1.54381335 + posZ: 81.50433 + rotX: 0.0185714755 + rotY: 269.999481 + rotZ: 0.0229028482 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5272': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: b4b991 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shining Trapezohedron (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.4998856 + posY: 1.297716 + posZ: -78.69504 + rotX: 0.0208082087 + rotY: 270.000061 + rotZ: 0.01677083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3798': + 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: 0bb3da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: First Watch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.2650452 + posY: 1.67629635 + posZ: 7.016553 + rotX: 359.922668 + rotY: 270.003845 + rotZ: 0.0136328405 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 371907 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3719': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 033a35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rex's Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 76.5889359 + posY: 1.49881017 + posZ: -49.1716652 + rotX: 0.0157422461 + rotY: 270.000061 + rotZ: 0.0127807 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368413 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: eb6165 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Working a Hunch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.24000335 + posY: 1.33994472 + posZ: 66.75 + rotX: 0.0208135787 + rotY: 269.986359 + rotZ: 0.0167685822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1fe462 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Last Chance + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.37 + posY: 1.36241734 + posZ: 78.25 + rotX: 0.02081953 + rotY: 269.9588 + rotZ: 0.0167597178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430641 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7f99cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pathfinder (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.40584409 + posZ: 14.3900223 + rotX: 359.987427 + rotY: 270.000061 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 293313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2933': + 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: Signs of the Black Stars + DragSelectable: true + GMNotes: '' + GUID: b40b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: De Vermis Mysteriis (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.93073 + posY: 1.58519077 + posZ: -53.4560623 + rotX: 0.0240930859 + rotY: 270.008118 + rotZ: 0.00300934631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 449359 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3797': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Sanctum's Reward + DragSelectable: true + GMNotes: '' + GUID: 223ba3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Twilight Blade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.766281 + posY: 1.376472 + posZ: -79.3358841 + rotX: 0.0199582744 + rotY: 269.996155 + rotZ: 0.0131309 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278846 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2788': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Key to the Gate of Dreams + DragSelectable: true + GMNotes: '' + GUID: 61fd07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Silver Key + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.46796 + posY: 3.47810078 + posZ: -50.62324 + rotX: 0.0125573976 + rotY: 270.0 + rotZ: 180.024521 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 534300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5343': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325549672938811/8307157C980A20698A6FC1BE27E18389A2D09AD3/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3a011c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Grotesque Statue (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6462011 + posY: 1.71622229 + posZ: 42.2586327 + rotX: 1.86072671 + rotY: 269.9995 + rotZ: 0.00333905523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 378017 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3780': + 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: 006d44 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Another Day, Another Dollar (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 112.317162 + posY: 1.39417815 + posZ: 37.881134 + rotX: 359.987427 + rotY: 270.0001 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 505200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5052': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814136015/7AF2F7CE9930A339D702FA6C426258A4C03D268F/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ddc9f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Grete Wagner (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -60.4185028 + posY: 12.3132067 + posZ: -60.5282555 + rotX: 0.020803025 + rotY: 270.0205 + rotZ: 0.0167791024 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527236 + 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: 86cf9c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unbound Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1196747 + posY: 1.67481875 + posZ: -7.70004559 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168745462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 377042 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3770': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f91fd9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mitch Brown + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.353 + posY: 2.190368 + posZ: -89.69797 + rotX: 359.9792 + rotY: 270.0 + rotZ: 180.006226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368629 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: 'Lookin'' Out For #1' + DragSelectable: true + GMNotes: '' + GUID: b51688 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Joey "The Rat" Vigil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500065 + posY: 1.34748948 + posZ: 57.5500031 + rotX: 0.0208110325 + rotY: 269.9888 + rotZ: 0.0167695936 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 441025 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4410': + 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: 7686cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Astounding Revelation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.23474 + posY: 1.60116971 + posZ: 13.8044615 + rotX: 359.978638 + rotY: 270.006348 + rotZ: 359.946381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 528700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5287': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1479946491544587394/E4523D4911728A4E0306C4D152B08F4E95F0A505/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: edfe0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Mano a Mano (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.5320358 + posY: 1.30062222 + posZ: -55.0788574 + rotX: 0.02080834 + rotY: 270.000031 + rotZ: 0.0167706665 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Monster. Nightgaunt. Power. + DragSelectable: true + GMNotes: '' + GUID: cf96b9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Summoned Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.42212 + posY: 2.36338925 + posZ: -96.24052 + rotX: 0.02081042 + rotY: 270.000031 + rotZ: 0.0167689342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 534400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5344': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325549672939179/7DC3134447B65CE6E9BA9EA7043DFFCC10C2975E/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 720cf7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Hypnotic Gaze (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6239891 + posY: 1.6557349 + posZ: 42.29812 + rotX: 0.004157718 + rotY: 269.990082 + rotZ: 0.00335860439 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Transient Thoughts + DragSelectable: true + GMNotes: '' + GUID: 3289b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ancient Stone (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.2151833 + posY: 3.174882 + posZ: -77.24949 + rotX: 0.0208067745 + rotY: 270.0092 + rotZ: 0.0167708267 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0d4eb9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Trench Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.230004 + posY: 1.35053277 + posZ: 87.45 + rotX: 0.0208162982 + rotY: 269.9694 + rotZ: 0.0167616438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226350 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 82d62c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Stick to the Plan (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.41223478 + posZ: -15.6699867 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4500': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5033a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Higher Education (3) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.78863 + posY: 1.46033812 + posZ: -77.58968 + rotX: 0.0208079629 + rotY: 269.998962 + rotZ: 0.0167762563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 438125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4381': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: eff3c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Self-Centered + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.28279 + posY: 1.52067816 + posZ: 50.95579 + rotX: 0.02054261 + rotY: 270.00177 + rotZ: 180.013779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 293016 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2930': + 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: Survivor + DragSelectable: true + GMNotes: '' + GUID: 5fae20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Grisly Totem (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.07575 + posY: 1.36818731 + posZ: -54.3571167 + rotX: 0.0208107289 + rotY: 270.0 + rotZ: 0.0167712681 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430654 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Freezing Variant + DragSelectable: true + GMNotes: '' + GUID: 9afe23 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Strange Solution (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.0500259 + posY: 1.41514981 + posZ: -20.11004 + rotX: 359.987427 + rotY: 270.0011 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 378617 + 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: 0ab574 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mk 1 Grenades (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.6650848 + posY: 1.29916561 + posZ: -73.53806 + rotX: 0.0208087023 + rotY: 270.000061 + rotZ: 0.01677142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 26398a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pet Oozeling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.6435547 + posY: 1.3010807 + posZ: -68.26276 + rotX: 0.02080807 + rotY: 270.0001 + rotZ: 0.0167711359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 371806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3718': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4156cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Search for the Truth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 76.2037659 + posY: 1.48903632 + posZ: -49.09441 + rotX: 0.0161498226 + rotY: 270.00058 + rotZ: 0.0117214322 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374014 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2098': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '170538' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Painted World + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.05049372 + posY: 0.475667953 + posZ: -49.01768 + rotX: -4.56944e-06 + rotY: 269.999939 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5558f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mists of R'lyeh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0 + posY: 1.33069563 + posZ: 62.15 + rotX: 0.020798916 + rotY: 270.0313 + rotZ: 0.01678454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368855 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3f91af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rabbit's Foot (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.41161513 + posZ: -25.0000057 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 313905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3139': + 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: Empowering Elixir + DragSelectable: true + GMNotes: '' + GUID: d96e4b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Strange Solution (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05001 + posY: 1.417011 + posZ: -27.0099945 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226328 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b0f851 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: .32 Colt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.230006 + posY: 1.3444736 + posZ: 66.75001 + rotX: 0.0208173022 + rotY: 269.9694 + rotZ: 0.0167636052 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2763': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: e470cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Premonition + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6000023 + posY: 1.33798957 + posZ: 82.85 + rotX: 0.02081856 + rotY: 269.96698 + rotZ: 0.0167606138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- 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: 464ca1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Wish Eater + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6764431 + posY: 1.68172979 + posZ: -15.2800417 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.0168755446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 505100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5051': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814133007/5176F0B4012AA220389FFF427D604D723A6761AC/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a0e05d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Galvanize (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -60.9882774 + posY: 12.3497763 + posZ: -61.70214 + rotX: 0.0208034758 + rotY: 270.018463 + rotZ: 0.0167775881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 438126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4381': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 447a08 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kleptomania + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.8331757 + posY: 1.54224169 + posZ: 51.3644943 + rotX: 0.0211661216 + rotY: 269.999542 + rotZ: 180.017242 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368849 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f66dd9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Snare Trap (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40727246 + posZ: -8.900003 rotX: 359.987427 rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f34090 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rabbit's Foot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.3146324 + posY: 1.3624531 + posZ: -65.92177 + rotX: 0.020795932 + rotY: 270.040283 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5273': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 122e98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lucid Dreaming (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.90816 + posY: 1.29874861 + posZ: -77.14222 + rotX: 0.0208085887 + rotY: 270.0 + rotZ: 0.0167711675 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232907 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Professor of Archaeology + DragSelectable: true + GMNotes: '' + GUID: f03306 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dr. Francis Morgan + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.4931259 + posY: 2.37332487 + posZ: -69.13057 + rotX: 0.02081106 + rotY: 269.998016 + rotZ: 0.0167686362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226338 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a1fd61 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ambush (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.4023087 + posZ: 21.130024 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278011 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2780': + 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: a3f105 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Something Worth Fighting For + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.43471 + posY: 1.32809985 + posZ: 55.0619354 + rotX: 0.0208080262 + rotY: 269.999481 + rotZ: 0.0167707372 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dc3b07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lone Wolf + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500027 + posY: 1.35556841 + posZ: 85.15 + rotX: 0.0208101571 + rotY: 269.9888 + rotZ: 0.01676966 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 318703 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3187': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: The Fateful Step + DragSelectable: true + GMNotes: '' + GUID: 52a677 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ace of Rods (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.94 + posY: 1.39461422 + posZ: 32.5000076 + rotX: 359.987427 + rotY: 269.999878 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447834 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4478': + 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: Dreams of an Explorer + DragSelectable: true + GMNotes: '' + GUID: 5f9a10 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dream Diary (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.4953213 + posY: 1.59229374 + posZ: 11.9794865 + rotX: 359.920135 + rotY: 269.992523 + rotZ: 0.01688575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430649 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d48b25 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Higher Education (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.41080713 + posZ: -4.009982 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368508 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: acb83a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.07 + posY: 1.36506307 + posZ: 69.05 + rotX: 0.02081015 + rotY: 269.997284 + rotZ: 0.0167725924 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3796': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: 060943 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sixth Sense (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.56764 + posY: 1.41171122 + posZ: -11.039938 + rotX: 359.987427 + rotY: 269.999329 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 464000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4640': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734382454/CE56F0F0FE3604F9D02F07EA3626615F48D021E5/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b92e9b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Miskatonic Archaeology Funding (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.9278755 + posY: 1.89711642 + posZ: 34.46537 + rotX: 359.932953 + rotY: 269.9965 + rotZ: 0.0141070625 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368859 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8837ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: True Survivor (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.41409659 + posZ: -34.2 + rotX: 359.987427 + rotY: 269.999847 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379253 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3792': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7f1b48 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hypnotic Therapy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.17400074 + posY: 1.52685761 + posZ: -65.01166 + rotX: 0.0271723326 + rotY: 270.0131 + rotZ: -0.00206514588 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8e915d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arcane Enlightenment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.834343 + posY: 2.84507322 + posZ: -113.358162 + rotX: 0.0208085366 + rotY: 270.0 + rotZ: 0.0167709831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368844 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0edef1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Chance Encounter (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40355015 + posZ: 4.899999 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368527 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Let the Storm Rage + DragSelectable: true + GMNotes: '' + GUID: 1c98ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Key of Ys (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.94 + posY: 1.40081811 + posZ: 9.499999 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230357 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 68fce2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mists of R'lyeh (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76001 + posY: 1.42109358 + posZ: -36.2099876 + rotX: 359.987427 + rotY: 270.000183 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 295501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2955': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a42f33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bauta + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.87838 + posY: 3.16514683 + posZ: -98.8938751 + rotX: 0.0208086148 + rotY: 269.999634 + rotZ: 0.01677102 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 449400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4494': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734366341/8229E47C117E16021DC1F098B6D700904DC7E2DE/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '493908' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Relentless + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -60.77507 + posY: 12.3773661 + posZ: -60.59894 + rotX: 0.0208017118 + rotY: 270.023438 + rotZ: 0.0167800933 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4504': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Let the Storm Rage + DragSelectable: true + GMNotes: '' + GUID: e7d356 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Key of Ys (5) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.8861542 + posY: 1.3012538 + posZ: -69.85178 + rotX: 0.02080861 + rotY: 270.0 + rotZ: 0.016771147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315245 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5f19e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sneak Attack (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.40703642 + posZ: -2.00000238 + rotX: 359.987427 + rotY: 269.999878 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 380c3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cryptic Writings (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.0029335 + posY: 1.298163 + posZ: -76.54372 + rotX: 0.02080826 + rotY: 270.000061 + rotZ: 0.016770767 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430660 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8b0193 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Deciphered Reality (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.42073345 + posZ: -40.80999 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 376739 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3767': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 848d9c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Finn's Trusty .38 + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.2706032 + posY: 1.6863116 + posZ: -50.91697 + rotX: 0.0885372162 + rotY: 269.817535 + rotZ: 4.42904139 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3796': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: d24531 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Deny Existence (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.68603 + posY: 1.41275847 + posZ: -14.9164782 + rotX: 359.987061 + rotY: 270.0 + rotZ: 359.985779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 441026 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4410': + 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: ff9f23 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Segment of Onyx (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.24019 + posY: 1.40603662 + posZ: 12.822814 + rotX: 359.987183 + rotY: 270.0061 + rotZ: 359.986481 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545208 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9e4e11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Alter Fate (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.9760551 + posY: 3.28508377 + posZ: -73.30521 + rotX: 0.0208075289 + rotY: 270.0092 + rotZ: 0.016770035 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2740': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3586e6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Occult Evidence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.41361 + posY: 1.363961 + posZ: -67.13534 + rotX: 0.0208034515 + rotY: 270.0197 + rotZ: 0.01677786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368426 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8f91ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Research Librarian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.640003 + posY: 1.34005642 + posZ: 71.35 + rotX: 0.0208149925 + rotY: 269.978821 + rotZ: 0.0167664737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 31d087 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Astral Travel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6 + posY: 1.3319304 + posZ: 62.15 + rotX: 0.020817386 + rotY: 269.96698 + rotZ: 0.0167596154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5c3dd0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Say Your Prayers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.07001 + posY: 1.36977577 + posZ: 85.15001 + rotX: 0.0208101626 + rotY: 269.9973 + rotZ: 0.0167729165 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374418 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3744': + 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: 869d4c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Trial by Fire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 67.71913 + posY: 1.365251 + posZ: 65.1638641 + rotX: 0.0208075251 + rotY: 269.9998 + rotZ: 0.01677034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2777': + 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: 5115d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Intel Report + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.1022224 + posY: 1.332592 + posZ: 71.23809 + rotX: 0.0208069868 + rotY: 269.998962 + rotZ: 0.01677785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 454740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4547': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Ally. Government. + DragSelectable: true + GMNotes: '' + GUID: cfb393 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: John & Jessie Burke + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.7820168 + posY: 2.36514521 + posZ: -94.073204 + rotX: 0.02081031 + rotY: 270.0 + rotZ: 0.0167692546 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 457600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4576': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690737854184/3A2EDA5D13EACD1036D71478CA10C38A93D06B94/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3a4576 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Grete Wagner + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.48749 + posY: 3.17158031 + posZ: -66.49329 + rotX: 0.0208035633 + rotY: 270.0185 + rotZ: 0.01677837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315252 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 074858 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ace in the Hole (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.41262 + posZ: -22.7000065 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 531500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5315': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325217454093262/FA240E4EAE4590836A8E7AE9A317A3751722EC73/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e2a8be + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Clairvoyance (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.1914978 + posY: 1.379037 + posZ: -44.06792 + rotX: 0.00482979743 + rotY: 269.988678 + rotZ: 3.82058239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2928': + 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: Guardian + DragSelectable: true + GMNotes: '' + GUID: b492cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: .45 Thompson (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.9860268 + posY: 1.36414373 + posZ: -55.87514 + rotX: 0.02081064 + rotY: 270.0 + rotZ: 0.01677142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 444020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4408': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: 283e54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Alchemical Transmutation (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.6973 + posY: 1.364044 + posZ: -55.3335571 + rotX: 0.0208053179 + rotY: 270.017761 + rotZ: 0.016775595 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5cd622 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: First Aid + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.230006 + posY: 1.34783983 + posZ: 78.25 + rotX: 0.02081828 + rotY: 269.9694 + rotZ: 0.016761452 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2757': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Signed in Blood + DragSelectable: true + GMNotes: '' + GUID: ae3775 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Black Book + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.35961 + posY: 3.65594316 + posZ: -65.68756 + rotX: 0.0124454033 + rotY: 269.999939 + rotZ: 180.02034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '889121' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vicious Blow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.0300045 + posY: 1.3516556 + posZ: 82.85 + rotX: 0.0208114255 + rotY: 269.987427 + rotZ: 0.0167701989 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5386': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0de10c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: False Awakening + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3814354 + posY: 3.52287769 + posZ: -65.7089539 + rotX: 0.0125160087 + rotY: 270.000122 + rotZ: 179.900925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 380027 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3800': + 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: d3dcf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"Let God sort them out..."' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.1617146 + posY: 1.66998422 + posZ: -1.0745914 + rotX: 359.9013 + rotY: 269.995422 + rotZ: 0.0255841073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 371013 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3710': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 97781f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Wracked by Nightmares + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 76.6226044 + posY: 1.37552524 + posZ: -49.2005348 + rotX: 0.0178489313 + rotY: 269.9939 + rotZ: 0.015755007 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a8298f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Drawn to the Flame + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6000023 + posY: 1.33731639 + posZ: 80.55 + rotX: 0.020818064 + rotY: 269.96698 + rotZ: 0.01676225 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374834 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2098': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9ef062 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Improvisation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.76934 + posY: 0.6104428 + posZ: -82.43481 + rotX: 358.873474 + rotY: 269.987366 + rotZ: 359.992035 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 534800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5348': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325549672938504/67410EA19E4945164AFEE078BA59881B5520D566/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0b4ea6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Dumb Luck (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5688419 + posY: 1.481653 + posZ: 80.9607239 + rotX: 0.0208074879 + rotY: 270.009735 + rotZ: 0.0167756937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448837 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4488': + 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: 8a0060 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Old Book of Lore (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.6117477 + posY: 2.845372 + posZ: -123.871094 + rotX: 0.0208082739 + rotY: 269.999939 + rotZ: 0.0167707168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3153': + 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: 3e0653 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Think on Your Feet (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.404555 + posZ: 7.20000029 + rotX: 359.987427 + rotY: 269.999878 rotZ: 359.984528 scaleX: 1.0 scaleY: 1.0 @@ -7250,24 +25835,24 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 545211 + CardID: 266216 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '5452': + '2662': BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 NumWidth: 10 Type: 0 - UniqueBack: false - Description: Basic Weakness + UniqueBack: true + Description: Item. Weapon. Relic. Melee. DragSelectable: true GMNotes: '' - GUID: 121b2d + GUID: dc674e Grid: true GridProjection: false Hands: true @@ -7278,708 +25863,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Dendromorphosis + Nickname: Khopesh of the Abyss SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -45.1638451 - posY: 3.18465137 - posZ: -78.99707 - rotX: 0.02080465 - rotY: 269.997864 - rotZ: 0.7455131 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 369424 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3694': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 02777c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: On the Lam - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.76734 - posY: 1.29576933 - posZ: -86.254364 - rotX: 0.0208080411 - rotY: 270.0001 - rotZ: 0.0167710967 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440925 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4409': - 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: aafc17 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bloodlust - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.1916046 - posY: 1.36471915 - posZ: -64.52677 - rotX: 0.0206168424 - rotY: 270.022461 - rotZ: 0.009735803 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 314800 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3148': - 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: 44a37f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Old Hunting Rifle (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.41471708 - posZ: -36.5000038 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- 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: 695bb7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Zeal - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.16347 - posY: 1.56949711 - posZ: 37.4911728 - rotX: 359.9874 - rotY: 269.9922 - rotZ: 359.9842 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230337 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b2e27e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fearless (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.40682483 - posZ: 16.6900234 - rotX: 359.987427 + posX: -35.6707649 + posY: 2.041185 + posZ: -100.924431 + rotX: 0.020810727 rotY: 270.0 - rotZ: 359.984528 + rotZ: 0.0167692 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 274606 + CardID: 506100 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2746': - 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: '051742' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Able Bodied - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 49.37 - posY: 1.36039758 - posZ: 71.35 - rotX: 0.0208197385 - rotY: 269.9588 - rotZ: 0.0167587847 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 376501 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3765': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f93ea8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Voice of the Messenger - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.2586918 - posY: 1.357923 - posZ: -50.11138 - rotX: 0.0269877315 - rotY: 270.035828 - rotZ: 0.01620763 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368526 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: He Was Never There - DragSelectable: true - GMNotes: '' - GUID: ad18a6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Red-Gloved Man (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 116.94 - posY: 1.40019763 - posZ: 11.8000021 - rotX: 359.987427 - rotY: 269.999847 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 443723 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4437': - 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: 600a3c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Stars Are Right - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 93.37835 - posY: 1.401744 - posZ: 25.1459961 - rotX: 359.9877 - rotY: 270.0277 - rotZ: 359.982635 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 380028 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3800': - 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: 2cfa4f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Swift Reload (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.1356068 - posY: 1.687724 - posZ: -1.17973149 - rotX: 359.921173 - rotY: 270.000244 - rotZ: 0.0157240219 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 262204 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2622': - 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: Mind-Expanding Ideas - DragSelectable: true - GMNotes: '' - GUID: 344d98 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Pnakotic Manuscripts (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.4213537 - posZ: -43.109993 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368409 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a8e495 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Anatomical Diagrams - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.239993 - posY: 1.34263766 - posZ: 75.9500046 - rotX: 0.0208109878 - rotY: 269.986359 - rotZ: 0.0167700239 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527417 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2666': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Enemy - DragSelectable: true - GMNotes: '' - GUID: 16a89d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Silver Twilight Acolyte - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 74.44922 - posY: 1.56336081 - posZ: 81.83084 - rotX: 0.020568762 - rotY: 269.999268 - rotZ: 0.0177706 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235644 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2356': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Poision. - DragSelectable: true - GMNotes: '' - GUID: 819f52 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Poisoned - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.88728 - posY: 3.174081 - posZ: -64.36427 - rotX: 0.0208086278 - rotY: 270.0 - rotZ: 0.0167710856 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 313905 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3139': - 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: Empowering Elixir - DragSelectable: true - GMNotes: '' - GUID: d96e4b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Strange Solution (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05001 - posY: 1.417011 - posZ: -27.0099945 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266800 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2668': + '5061': BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734346234/4FA6E9B9034B9A95ECF035E84EAB76ED8A3B2DB1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814173947/287EA7C4E87EB0AECA562C312DF7320FCF33281C/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -7987,7 +25897,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 4719d3 + GUID: dff559 Grid: true GridProjection: false Hands: true @@ -7998,3708 +25908,18 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: CardCustom - Nickname: Flesh Ward + Nickname: Occult Invocation SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -54.5479736 - posY: 3.17113161 - posZ: -66.25877 - rotX: 0.0208036751 - rotY: 270.0185 - rotZ: 0.0167784 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368805 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 58c435 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Stunning Blow - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 49.37 - posY: 1.361744 - posZ: 75.95 - rotX: 0.0208197571 - rotY: 269.9588 - rotZ: 0.0167563129 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 438127 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4381': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 57e648 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Narcolepsy - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.20527 - posY: 1.5186789 - posZ: 51.2058372 - rotX: 0.0206013937 - rotY: 270.002258 - rotZ: 180.0141 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 314904 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3149': - 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: bb501b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Rise to the Occasion (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40975392 - posZ: -18.1000061 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230359 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 91e890 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Seal of the Elder Sign (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.42233443 - posZ: -40.80999 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230314 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9c922f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Storm of Spirits - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -21.6 - posY: 1.33058393 - posZ: 57.55 - rotX: 0.0208180714 - rotY: 269.96698 - rotZ: 0.01676364 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 541200 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5412': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830597915335413/F6B6100F5713A33245CFBB6F1D7316AA2DD0F760/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: Advanced - DragSelectable: true - GMNotes: '' - GUID: 9c4900 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: On the Lam - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.8911133 - posY: 1.29766488 - posZ: -80.86572 - rotX: 0.0208081119 - rotY: 270.000061 - rotZ: 0.01677094 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368845 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0414b4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dig Deep (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40417051 - posZ: 2.59999847 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527404 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2666': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 88ee43 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hypochondria - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 75.0673 - posY: 1.53452182 - posZ: 81.82477 - rotX: 0.0157311484 - rotY: 269.999634 - rotZ: 0.018423602 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 380125 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3801': - 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: '' - DragSelectable: true - GMNotes: '' - GUID: 0d926f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scroll of Prophecies - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.18582 - posY: 1.68684137 - posZ: -4.21236 - rotX: 359.933044 - rotY: 270.002258 - rotZ: 0.0111596575 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230355 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b3ce16 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Shrivelling (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.41985285 - posZ: -31.6099911 - rotX: 359.987427 - rotY: 270.000153 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 534000 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5340': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325549672934842/FCBE5BE067C256F96F92709DD4E0E5B8300329C1/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 81850d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Cheap Shot (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.6390228 - posY: 1.62685072 - posZ: 41.9535561 - rotX: 0.004156579 - rotY: 270.005737 - rotZ: 0.00336218462 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 380026 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3800': - 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: d753d7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Momentum (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.0951538 - posY: 1.67418337 - posZ: -0.8636197 - rotX: 359.909546 - rotY: 270.009155 - rotZ: 0.006574045 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368838 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3688': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8a4673 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fire Extinguisher (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.37135 - posY: 3.51983881 - posZ: -65.69757 - rotX: 0.0124902874 - rotY: 270.0 - rotZ: 180.027863 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 376739 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3767': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 848d9c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Finn's Trusty .38 - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 26.2706032 - posY: 1.6863116 - posZ: -50.91697 - rotX: 0.0885372162 - rotY: 269.817535 - rotZ: 4.42904139 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 378620 - 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: 312d38 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hallowed Mirror - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 30.8494987 - posY: 1.351685 - posZ: 64.56357 - rotX: 0.0208110046 - rotY: 269.990936 - rotZ: 0.0167647637 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 455400 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4554': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734424536/8DA5176D229BB4049EDE9A072C1E4B0B39E9880B/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 728fa3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: "D\xE9j\xE0 Vu (5)" - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.29856 - posY: 2.4900713 - posZ: -69.2471542 - rotX: 0.0 - rotY: 270.0 - rotZ: 22.62915 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379831 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3798': - 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: 5e808d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Self-Sacrifice - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.0898914 - posY: 1.5271982 - posZ: 6.91475 - rotX: 359.920441 - rotY: 270.003418 - rotZ: 0.0135479523 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 505900 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5059': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814170172/882DA62AAAFE048127E3B8B044ACAB63D6FBCE77/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1753a8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Cryptic Writings - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.6698341 - posY: 2.84538627 - posZ: -113.770988 - rotX: 0.0208082218 - rotY: 270.0001 - rotZ: 0.0167709831 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379019 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3790': - 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: 4ea716 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Studious (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 112.560387 - posY: 1.51067376 - posZ: 48.3394127 - rotX: 0.01354435 - rotY: 270.000061 - rotZ: 0.0102723185 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274608 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2746': - 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: 6fa7fa - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Track Shoes - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 42.5700035 - posY: 1.35321534 - posZ: 55.2500038 - rotX: 0.0208173972 - rotY: 269.9702 - rotZ: 0.0167611558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368512 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0ab3f1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Knife - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 57.2699966 - posY: 1.36730623 - posZ: 85.15 - rotX: 0.0208092928 - rotY: 269.994049 - rotZ: 0.0167697817 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 233605 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2336': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 26398a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Pet Oozeling - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.6435547 - posY: 1.3010807 - posZ: -68.26276 - rotX: 0.02080807 - rotY: 270.0001 - rotZ: 0.0167711359 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 463400 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4634': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734350506/924AD1C63A929662E8C3F5983C43DE9ECEE4C7DD/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 037dc7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Glory - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.8434868 - posY: 3.17119765 - posZ: -65.09005 - rotX: 0.0208014976 - rotY: 270.023438 - rotZ: 0.0167795885 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274006 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2740': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d6f8d1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Tony's Quarry - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -41.39597 - posY: 1.36798072 - posZ: -49.70266 - rotX: 0.0208089426 - rotY: 269.999939 - rotZ: 0.016770659 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 465000 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4650': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734341653/C4D4BB816E92F82AB3A303AC86D80974062783C4/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d371d6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: .18 Derringer - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -22.997509 - posY: 2.845373 - posZ: -121.849457 - rotX: 0.020807948 - rotY: 270.0 - rotZ: 0.01677115 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 530400 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5304': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1483324826181933138/C9406673F298E095EFE3EFE7AF36B5AA81EDC990/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e0a595 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Perception (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -56.8975868 - posY: 1.30453134 - posZ: -48.7149849 - rotX: 0.0208086576 - rotY: 269.999939 - rotZ: 0.0167718716 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527235 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5272': - 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: '' - DragSelectable: true - GMNotes: '' - GUID: ab4fb3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Summoned Hound (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.6454124 - posY: 1.29864454 - posZ: -75.34238 - rotX: 0.0208087377 - rotY: 269.999756 - rotZ: 0.01677042 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274004 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2740': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4d9b32 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bounty Contracts - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.42096 - posY: 1.49901617 - posZ: -49.8807373 - rotX: 0.0231439564 - rotY: 270.0193 - rotZ: 0.0126447231 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 79287f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Torrent of Power - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -18.2000046 - posY: 1.34057081 - posZ: 87.45 - rotX: 0.0208165441 - rotY: 269.971 - rotZ: 0.0167645477 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 529400 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5294': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1479946668214252085/3754CC47084514AAA08DAEC8BB1718D1801EAC13/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ef0ad0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Physical Training (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -57.83694 - posY: 1.30376673 - posZ: -50.16186 - rotX: 0.0208085682 - rotY: 270.000183 - rotZ: 0.0167709477 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 506000 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5060': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814171690/DA4D9D15D6303F30A331C93018D72C6EB43216E0/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '178794' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Extensive Research - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -41.8662453 - posY: 2.84540915 - posZ: -113.444908 - rotX: 0.0208084919 - rotY: 270.0 - rotZ: 0.016771188 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 378958 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3789': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: acce72 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lodge "Debts" - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 7.70438576 - posY: 1.38385892 - posZ: -56.5958862 - rotX: 0.0223048571 - rotY: 270.0155 - rotZ: 0.00638814643 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235134 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2351': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e173d0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Grit Your Teeth - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.5804367 - posY: 2.84395123 - posZ: -112.694794 - rotX: 0.0208083186 - rotY: 270.0 - rotZ: 0.0167707168 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 278012 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2780': - 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: e454c3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Well-Maintained (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -30.5159187 - posY: 1.326544 - posZ: 54.8107338 - rotX: 0.02080832 - rotY: 269.998047 - rotZ: 0.0167722814 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545207 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Stygian Waymark - DragSelectable: true - GMNotes: '' - GUID: 698fcc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Chthonian Stone (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -56.721096 - posY: 3.28535 - posZ: -72.75358 - rotX: 0.0208072979 - rotY: 270.0092 - rotZ: 0.0167705286 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368842 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: be4abe - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Survival Instinct (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40230942 - posZ: 9.500001 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277606 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2776': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a20887 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Grisly Totem - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -31.1001987 - posY: 1.32403064 - posZ: 46.94928 - rotX: 0.0208084043 - rotY: 269.998535 - rotZ: 0.0167739969 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 534901 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2317': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Madness. - DragSelectable: true - GMNotes: '' - GUID: 2c76d9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: What Have You Done? - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.6642151 - posY: 2.371999 - posZ: -73.67534 - rotX: 0.0211164355 - rotY: 270.0 - rotZ: 0.0169385374 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 464600 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4646': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734363045/92D5FC9DEDD33A87F4FA2A0D4D771FAD4D522792/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5e3a3b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Prescient - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.43865 - posY: 1.77277577 - posZ: 34.37831 - rotX: 359.9336 - rotY: 269.996765 - rotZ: 0.0140671479 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235648 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2356': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: The Forgotten Guardian - DragSelectable: true - GMNotes: '' - GUID: 29fc24 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ichtaca - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.62483 - posY: 3.17204762 - posZ: -63.4302139 - rotX: 0.020808531 - rotY: 269.999847 - rotZ: 0.0167708434 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226314 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a13ca4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: On the Hunt - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.49531 - posY: 2.36478925 - posZ: -86.53236 - rotX: 0.020807568 - rotY: 269.999939 - rotZ: 0.0167751536 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235125 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2351': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4ff44f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Crystal Pendulum - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.1276054 - posY: 1.29777145 - posZ: -78.9681 - rotX: 0.02080821 - rotY: 270.000061 - rotZ: 0.0167705473 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368814 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f0e425 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dumb Luck - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 45.97 - posY: 1.35714316 - posZ: 64.45 - rotX: 0.020805018 - rotY: 270.0129 - rotZ: 0.0167762935 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315245 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5f19e0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sneak Attack (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.40703642 - posZ: -2.00000238 - rotX: 359.987427 - rotY: 269.999878 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230341 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4d74f6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ward of Protection (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.40930641 - posZ: 7.490021 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368427 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c18ebe - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Laboratory Assistant - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -6.64000273 - posY: 1.33938324 - posZ: 69.05 - rotX: 0.02081406 - rotY: 269.978821 - rotZ: 0.01676627 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 441027 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4410': - 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: 9b0dcf - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Pendant of the Queen - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.96671 - posY: 1.36040926 - posZ: -67.41669 - rotX: 0.0207998231 - rotY: 270.027985 - rotZ: 0.01677813 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374532 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3745': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7b6ab5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Analytical Mind - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 52.42199 - posY: 1.61407924 - posZ: -45.08632 - rotX: 0.362734765 - rotY: 270.015045 - rotZ: 359.680054 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368856 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 83c86b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Alter Fate (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.4122355 - posZ: -27.3000031 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 276101 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2761': - 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: 5a305e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Colt Vest Pocket - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500046 - posY: 1.348836 - posZ: 62.1500053 - rotX: 0.02081202 - rotY: 269.9888 - rotZ: 0.0167703833 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430646 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f5bcec - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Encyclopedia (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.408946 - posZ: 2.89002 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 449514 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4495': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 015d79 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Switchblade (2) (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.99968 - posY: 1.39253962 - posZ: -77.7381439 - rotX: 0.0208060052 - rotY: 269.999573 - rotZ: 0.0167830065 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 507200 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5072': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814229526/806B7A0C777CC23F282B1F6B86A0A0C67E32958C/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 576e76 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Azure Flame (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.35282 - posY: 12.3032722 - posZ: -62.0714035 - rotX: 0.0208038446 - rotY: 270.0184 - rotZ: 0.0167784244 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 438126 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4381': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 447a08 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Kleptomania - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.8331757 - posY: 1.54224169 - posZ: 51.3644943 - rotX: 0.0211661216 - rotY: 269.999542 - rotZ: 180.017242 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 444348 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3806': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9d6e9a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Nautical Prowess - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -2.30395651 - posY: 2.05984831 - posZ: -45.23866 - rotX: 0.869807959 - rotY: 269.5711 - rotZ: 359.8488 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 314204 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3142': - 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: e8b7ad - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bandolier (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.40851247 - posZ: -1.86998224 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235117 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2351': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '731411' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mind Over Matter (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.22279 - posY: 1.29565561 - posZ: -82.35593 - rotX: 0.02080845 - rotY: 270.0 - rotZ: 0.0167710669 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 497100 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4971': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734364594/44448CCCEE2BA864DB3323AE97C91B687201A228/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '217349' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Randall Cho - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -41.05583 - posY: 3.17256284 - posZ: -79.24217 - rotX: 0.0208090711 - rotY: 269.999939 - rotZ: 0.0167705715 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 371112 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3711': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '876557' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Duke - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -62.51822 - posY: 1.49823117 - posZ: -57.04474 - rotX: 0.02328792 - rotY: 270.0 - rotZ: 0.0151858637 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235105 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2351': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: 23a3ed - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Arrogance - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -41.455616 - posY: 1.2649765 - posZ: 56.5946922 - rotX: 0.020895334 - rotY: 269.991638 - rotZ: 0.0162042417 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545213 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: 39452d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fine Print - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.3330345 - posY: 3.16976333 - posZ: -76.16513 - rotX: 0.02080835 - rotY: 269.999878 - rotZ: 0.0167706367 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 530900 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5309': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1479946880519920521/521ABDFDA56F75B0103A579F41046367E6E0BDDA/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3dfe22 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '"Look what I found!" (2)' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.3777122 - posY: 1.30281138 - posZ: -51.51361 - rotX: 0.02080922 - rotY: 269.998962 - rotZ: 0.0167698525 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431818 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3739': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e6efe6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bury Them Deep - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 52.9744873 - posY: 1.4029851 - posZ: -45.9182663 - rotX: 0.652829766 - rotY: 269.939 - rotZ: 359.007477 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 380126 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3801': - 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: '' - DragSelectable: true - GMNotes: '' - GUID: 75eca5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Read the Signs - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.2260036 - posY: 1.688674 - posZ: -4.15322065 - rotX: 359.919952 - rotY: 269.999664 - rotZ: 0.0162679963 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 369820 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3698': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 49a91e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Roland's .38 Special - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 86.96031 - posY: 1.51700377 - posZ: -58.5377922 - rotX: 0.00607056357 - rotY: 269.999817 - rotZ: 0.0136969965 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 378762 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3787': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d8a324 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"I''m done runnin''!"' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 8.340292 - posY: 1.3865602 - posZ: -48.14536 - rotX: 0.02273901 - rotY: 270.006256 - rotZ: 0.008764074 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 232348 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2323': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Madness. Pact. - DragSelectable: true - GMNotes: '' - GUID: 4f903e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lost Soul - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -28.30787 - posY: 2.37636733 - posZ: -74.3676 - rotX: 0.0208093375 - rotY: 270.0 - rotZ: 0.0167706758 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 233604 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2336': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2f1166 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Universal Solvent - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.1666946 - posY: 1.302138 - posZ: -64.00173 - rotX: 0.0208088867 - rotY: 270.0 - rotZ: 0.0167715326 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374419 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3744': - 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: eaaee9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Eucatastrophe (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 111.842651 - posY: 1.39317536 - posZ: 41.98588 - rotX: 359.987427 - rotY: 270.0001 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315303 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3153': - 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: 3e0653 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Think on Your Feet (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.404555 - posZ: 7.20000029 - rotX: 359.987427 - rotY: 269.999878 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 533800 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5338': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325459410606935/677029794379C4CED3F47FD95F903B7200D63F75/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5d4212 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Whitton Greene (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 19.2841225 - posY: 1.37817955 - posZ: 53.34116 - rotX: 0.0208032522 - rotY: 270.017731 - rotZ: 0.01677699 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447631 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4476': - 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: 2aeb8a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Burglary (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.607933 - posY: 1.30007148 - posZ: -68.03267 - rotX: 0.0208079722 - rotY: 270.000061 - rotZ: 0.0167707112 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 233135 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2331': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Ruthless Tactician - DragSelectable: true - GMNotes: '' - GUID: 7f7ecc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Naomi O'Bannion - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -27.6088257 - posY: 2.373914 - posZ: -84.50722 - rotX: 0.020808164 - rotY: 270.0 - rotZ: 0.0484022573 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 231709 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2317': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537091085/26A674065298A59068E1D6BA3804D03554C234A3/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Skilled Botanist - DragSelectable: true - GMNotes: '' - GUID: a0c2da - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Veda Whitsley - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.36957 - posY: 1.30220938 - posZ: -48.6176262 - rotX: 0.0208126362 - rotY: 269.985657 - rotZ: 0.0167656019 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- 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 - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Essence of the Dream - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.46684 - posY: 1.68849742 - posZ: 2.97275424 - rotX: 359.9218 - rotY: 269.9981 - rotZ: 0.0143287377 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226326 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 08bdf1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Guard Dog - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.230006 - posY: 1.34582007 - posZ: 71.3500061 - rotX: 0.0208174884 - rotY: 269.9694 - rotZ: 0.01676253 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 313603 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3136': - 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: '' - DragSelectable: true - GMNotes: '' - GUID: a53344 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Clarity of Mind (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76001 - posY: 1.41675091 - posZ: -20.109993 - rotX: 359.987427 - rotY: 270.000183 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277709 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2777': - 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: Aspiring Actor - DragSelectable: true - GMNotes: '' - GUID: 9df9df - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Henry Wan - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -30.642086 - posY: 1.33200514 - posZ: 73.6239853 - rotX: 0.020809764 - rotY: 269.999359 - rotZ: 0.0167665128 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368621 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '213853' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Switchblade - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500027 - posY: 1.35422194 - posZ: 80.55 - rotX: 0.0208109 - rotY: 269.988831 - rotZ: 0.0167680886 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- 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: 464ca1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Wish Eater - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -23.6764431 - posY: 1.68172979 - posZ: -15.2800417 - rotX: 359.9201 - rotY: 269.999969 - rotZ: 0.0168755446 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230304 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a8298f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Drawn to the Flame - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -21.6000023 - posY: 1.33731639 - posZ: 80.55 - rotX: 0.020818064 - rotY: 269.96698 - rotZ: 0.01676225 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277911 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2779': - 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: dffa9d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Belly of the Beast - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -31.2078037 - posY: 1.32907391 - posZ: 64.31217 - rotX: 0.0208104178 - rotY: 269.9969 - rotZ: 0.0167667456 + posX: -56.1680336 + posY: 3.16996861 + posZ: -67.7829361 + rotX: 0.0208079536 + rotY: 270.001221 + rotZ: 0.0167717021 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -11749,1986 +25969,6 @@ ContainedObjects: scaleY: 1.0 scaleZ: 1.0 XmlUI: '' -- Autoraise: true - CardID: 444024 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4408': - 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: '' - DragSelectable: true - GMNotes: '' - GUID: a33acd - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Open Gate - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 93.43073 - posY: 1.5662576 - posZ: 25.0269451 - rotX: 359.986816 - rotY: 270.027649 - rotZ: 359.9844 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235119 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2351': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 50d462 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Beretta M1918 (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -44.8764153 - posY: 1.3028295 - posZ: -69.44372 - rotX: 0.02080886 - rotY: 270.0 - rotZ: 0.0167718232 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368423 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Working on Something Big - DragSelectable: true - GMNotes: '' - GUID: 234ff6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dr. William T. Maleson - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -6.63999271 - posY: 1.34207618 - posZ: 78.25001 - rotX: 0.02081484 - rotY: 269.978821 - rotZ: 0.016766822 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 534500 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5345': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325549672939499/B2CB943347831F6C535EFC1114E5A335DA778A4B/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ae6339 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Ineffable Truth (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -43.60289 - posY: 3.17123675 - posZ: -79.7068939 - rotX: 0.0208086334 - rotY: 270.000061 - rotZ: 0.016771337 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 473800 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4738': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1474318984931856599/78BA545A076F53B9CC1D092FCD49894EDE720343/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: 64e35f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Thrice-Damned Curiosity - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -45.6902771 - posY: 3.16999316 - posZ: -80.46993 - rotX: 0.02080862 - rotY: 270.0 - rotZ: 0.01677128 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226354 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f03baa - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Custom Ammunition (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87001 - posY: 1.41533685 - posZ: -27.1699924 - rotX: 359.987427 - rotY: 269.999939 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274011 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2740': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6945f7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Watcher from Another Dimension - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -41.8951149 - posY: 1.36539435 - posZ: -57.9189568 - rotX: 0.0208037551 - rotY: 270.0197 - rotZ: 0.0167778321 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 438122 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4381': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: ea0fa1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Unspeakable Oath (Cowardice) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.3509445 - posY: 1.51659238 - posZ: 51.50479 - rotX: 0.0444448479 - rotY: 269.9969 - rotZ: 180.044754 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 534700 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5347': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325549672940139/4F29E81F67811E6FF4124295CA1347DCBDB8D37E/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2c1846 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Slip Away (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.4047441 - posY: 1.637285 - posZ: 42.6227951 - rotX: 0.00416094344 - rotY: 270.006378 - rotZ: 0.00335595 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368629 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: 'Lookin'' Out For #1' - DragSelectable: true - GMNotes: '' - GUID: b51688 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Joey "The Rat" Vigil - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500065 - posY: 1.34748948 - posZ: 57.5500031 - rotX: 0.0208110325 - rotY: 269.9888 - rotZ: 0.0167695936 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230317 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0a4db3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ritual Candles - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.0000019 - posY: 1.3367548 - posZ: 82.85 - rotX: 0.0207984913 - rotY: 270.0313 - rotZ: 0.01678511 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315255 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a6af13 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lupara (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.414481 - posZ: -29.600008 - rotX: 359.987427 - rotY: 269.999817 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226318 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ab37af - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scene of the Crime - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6299963 - posY: 1.34166884 - posZ: 52.9499969 - rotX: 0.0207941569 - rotY: 270.027039 - rotZ: 0.0167764034 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 262200 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2622': - 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: bc4788 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Feed the Mind (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.41452944 - posZ: -17.8099861 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 290320 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2903': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Circumstances Beyond Your Control - DragSelectable: true - GMNotes: '' - GUID: d5c93d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: "The Tower \u2022 XVI" - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 79.62506 - posY: 1.3658669 - posZ: 53.07699 - rotX: 0.0129812742 - rotY: 269.999023 - rotZ: 0.0141451433 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230312 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 31d087 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Astral Travel - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -21.6 - posY: 1.3319304 - posZ: 62.15 - rotX: 0.020817386 - rotY: 269.96698 - rotZ: 0.0167596154 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230336 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 35166c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Book of Shadows (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76 - posY: 1.40620458 - posZ: 18.99002 - rotX: 359.987427 - rotY: 269.999817 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 262202 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2622': - 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: Knowledge of the Elders - DragSelectable: true - GMNotes: '' - GUID: 863f91 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ancient Stone (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.41887212 - posZ: -33.9099922 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 369721 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3697': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ca25bc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cover Up - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 86.76924 - posY: 1.37650609 - posZ: -58.61718 - rotX: 0.0202569962 - rotY: 270.007629 - rotZ: 0.0163947754 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315236 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 18927e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Treasure Hunter (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.40083265 - posZ: 21.0000038 - rotX: 359.987427 - rotY: 269.999817 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226357 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c92ea3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Shotgun (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87001 - posY: 1.41719782 - posZ: -34.0699921 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448519 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4485': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: 3bf831 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: False Awakening - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.374157 - posY: 3.52493143 - posZ: -65.7005 - rotX: 0.0124949375 - rotY: 270.0 - rotZ: 180.220673 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 297101 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2971': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Curse. - DragSelectable: true - GMNotes: '' - GUID: 569b06 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Curse of the Rougarou - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -62.49299 - posY: 1.78174841 - posZ: 6.4157424 - rotX: 2.12603521 - rotY: 269.862244 - rotZ: 4.248013 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226307 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 84ba9d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"I''ll see you in hell!"' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6300039 - posY: 1.350421 - posZ: 82.85 - rotX: 0.02079607 - rotY: 270.027039 - rotZ: 0.0167730115 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230331 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Cleansing Fire - DragSelectable: true - GMNotes: '' - GUID: 423d46 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: St. Hubert's Key - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -28.4000015 - posY: 1.33551991 - posZ: 82.85 - rotX: 0.02080567 - rotY: 270.0064 - rotZ: 0.0167738758 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430660 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8b0193 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Deciphered Reality (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.42073345 - posZ: -40.80999 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 232951 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2329': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Seeing Things Unseen - DragSelectable: true - GMNotes: '' - GUID: f96ed0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Powder of Ibn Ghazi - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.4629173 - posY: 1.36626446 - posZ: -46.7977753 - rotX: 0.0208089761 - rotY: 270.0 - rotZ: 0.0167704951 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 528900 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5289': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1479946668213574519/CCDF8CCCA248DE667B8EEAE10427D360EAE9AF93/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3c4db8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Higher Education - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.5385628 - posY: 1.30131328 - posZ: -53.95056 - rotX: 0.02080831 - rotY: 270.000031 - rotZ: 0.0167711768 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 371013 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3710': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 97781f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Wracked by Nightmares - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 76.6226044 - posY: 1.37552524 - posZ: -49.2005348 - rotX: 0.0178489313 - rotY: 269.9939 - rotZ: 0.015755007 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 371605 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3716': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e68658 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Smite the Wicked - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 76.515625 - posY: 1.52500629 - posZ: -50.03807 - rotX: 0.037379235 - rotY: 269.966217 - rotZ: 0.06762503 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447632 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4476': - 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: 1bd139 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Haste (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.716 - posY: 1.30109835 - posZ: -65.63145 - rotX: 0.0208085626 - rotY: 269.999969 - rotZ: 0.0167710073 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 528600 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5286': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1479946491544212264/69451B5D0CCEAB549F451F3746CAAA1D100739A1/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8b13de - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Neither Rain nor Snow - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.80068 - posY: 3.17277646 - posZ: -60.0027122 - rotX: 0.0208114833 - rotY: 269.989471 - rotZ: 0.01676666 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 462900 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4629': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734332782/EBF522BD8B719A8F233F6A067C5B7139E5492B50/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: Talent - DragSelectable: true - GMNotes: '' - GUID: 31be15 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Arbiter of Fates - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -41.3401642 - posY: 1.30818319 - posZ: 61.2431374 - rotX: 0.0175818484 - rotY: 269.977722 - rotZ: 0.0158620458 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 232904 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2329': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Professor of Languages - DragSelectable: true - GMNotes: '' - GUID: 42806b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Professor Warren Rice - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -42.05947 - posY: 2.373765 - posZ: -66.9028549 - rotX: 0.0208103973 - rotY: 270.000031 - rotZ: 0.0167690516 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368804 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1fe462 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Last Chance - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 49.37 - posY: 1.36241734 - posZ: 78.25 - rotX: 0.02081953 - rotY: 269.9588 - rotZ: 0.0167597178 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230353 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8f871b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Crystalline Elder Sign (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76001 - posY: 1.41861212 - posZ: -27.0099945 - rotX: 359.987427 - rotY: 270.000366 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235603 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2356': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: "\u2026A Device, of Some Sort" - DragSelectable: true - GMNotes: '' - GUID: e27a30 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Relic of Ages - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.374157 - posY: 3.52680039 - posZ: -65.70076 - rotX: 0.0117934821 - rotY: 269.999969 - rotZ: 180.384445 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430809 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2732': - 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: 13413d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Connect the Dots - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.24000168 - posY: 1.33590531 - posZ: 52.95 - rotX: 0.02081261 - rotY: 269.9864 - rotZ: 0.0167691931 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368428 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 07a8f0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Art Student - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -6.64000273 - posY: 1.33871 - posZ: 66.75 - rotX: 0.0208162684 - rotY: 269.978821 - rotZ: 0.0167661086 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 312512 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3125': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: In Way Over His Head - DragSelectable: true - GMNotes: '' - GUID: d99735 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Jerome Davids - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 39.5597267 - posY: 1.354802 - posZ: 64.40544 - rotX: 0.0208125934 - rotY: 269.988464 - rotZ: 0.0167639647 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448200 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4482': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734354026/CB8C37257A131247F1C115CC56965B9C2DA293E1/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 310d95 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Monster Slayer - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.20985 - posY: 3.17165613 - posZ: -65.67503 - rotX: 0.0208017379 - rotY: 270.023468 - rotZ: 0.0167800244 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448738 - 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: '' - DragSelectable: true - GMNotes: '' - GUID: f0389b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Nothing Left to Lose (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.3847427 - posY: 1.30081713 - posZ: -67.00287 - rotX: 0.0208080914 - rotY: 270.0001 - rotZ: 0.01677122 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430501 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2758': - 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: aa3984 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Winging It - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 45.97 - posY: 1.35781634 - posZ: 66.75 - rotX: 0.02080432 - rotY: 270.012939 - rotZ: 0.0167804044 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431008 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2737': - 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: c70ad8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Interrogate - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6300068 - posY: 1.342342 - posZ: 55.2500038 - rotX: 0.02079588 - rotY: 270.027039 - rotZ: 0.0167742781 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' - Autoraise: true CardID: 380025 ColorDiffuse: @@ -13774,2256 +26014,6 @@ ContainedObjects: scaleY: 1.0 scaleZ: 1.0 XmlUI: '' -- Autoraise: true - CardID: 232949 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2329': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Recalling Ancient Things - DragSelectable: true - GMNotes: '' - GUID: 6714b2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Zebulon Whateley - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.8655548 - posY: 1.363576 - posZ: -55.4826279 - rotX: 0.0208091382 - rotY: 270.0 - rotZ: 0.0167707019 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235133 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2351': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5c25fa - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Grimm's Fairy Tales - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.28659 - posY: 2.84471154 - posZ: -98.70071 - rotX: 0.02080876 - rotY: 270.0 - rotZ: 0.0167703759 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235840 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2358': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Repossess the Past - DragSelectable: true - GMNotes: '' - GUID: 87718c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Relic of Ages - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -44.5658951 - posY: 2.845377 - posZ: -108.118523 - rotX: 0.0208081175 - rotY: 270.000061 - rotZ: 0.0167709235 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527605 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2742': - 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: Message from Your Inner Self - DragSelectable: true - GMNotes: '' - GUID: e80bd8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: "The Moon \u2022 XVIII (1)" - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.41013837 - posZ: -13.5000048 - rotX: 359.987427 - rotY: 269.999847 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 292912 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2929': - 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: Rogue - DragSelectable: true - GMNotes: '' - GUID: b5e5f1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Tennessee Sour Mash (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.25424 - posY: 1.5068202 - posZ: -48.776722 - rotX: 359.875 - rotY: 269.98233 - rotZ: 359.889984 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274003 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2740': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f4dd3d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Shocking Discovery - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -42.0190773 - posY: 1.36276233 - posZ: -66.7568359 - rotX: 0.0208035558 - rotY: 270.019226 - rotZ: 0.016777629 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450207 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4502': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1105b0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Drawing Thin (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.56755 - posY: 1.43135858 - posZ: -77.02304 - rotX: 0.020805493 - rotY: 269.999268 - rotZ: 0.016788885 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447934 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4479': - 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: 93381d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Heroic Rescue (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.9259224 - posY: 1.29796028 - posZ: -78.57276 - rotX: 0.0208088644 - rotY: 270.000061 - rotZ: 0.0167711973 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368626 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ddee79 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Stealth - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500046 - posY: 1.35018241 - posZ: 66.75 - rotX: 0.0208121948 - rotY: 269.988831 - rotZ: 0.0167690367 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368832 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Big Man on Campus - DragSelectable: true - GMNotes: '' - GUID: ffdeb5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Peter Sylvestre - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 42.5700035 - posY: 1.35456181 - posZ: 59.8500023 - rotX: 0.0208163559 - rotY: 269.9702 - rotZ: 0.0167621151 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379018 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3790': - 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: b7c503 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ghastly Revelation - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 13.8512068 - posY: 1.34525955 - posZ: 63.70211 - rotX: 0.0208136924 - rotY: 269.981 - rotZ: 0.01676558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 293016 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2930': - 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: Survivor - DragSelectable: true - GMNotes: '' - GUID: 5fae20 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Grisly Totem (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -37.07575 - posY: 1.36818731 - posZ: -54.3571167 - rotX: 0.0208107289 - rotY: 270.0 - rotZ: 0.0167712681 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315261 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3add54 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cheat Death (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.749962 - posY: 1.38609779 - posZ: -45.70004 - rotX: 0.02080863 - rotY: 269.9999 - rotZ: 0.0167719424 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431115 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2698': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Enemy - DragSelectable: true - GMNotes: '' - GUID: da227d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Thing That Follows - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 79.6971741 - posY: 1.516075 - posZ: 71.10236 - rotX: 0.02737251 - rotY: 269.988983 - rotZ: 0.00684426632 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448737 - 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: '' - DragSelectable: true - GMNotes: '' - GUID: ff4aea - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scavenging (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.56107 - posY: 2.483187 - posZ: -84.9376 - rotX: 0.0 - rotY: 270.0 - rotZ: 22.62915 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274007 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2740': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Worlds within Worlds - DragSelectable: true - GMNotes: '' - GUID: b8c891 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Gate Box - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.39115 - posY: 1.52415013 - posZ: -50.30054 - rotX: 0.0206940472 - rotY: 270.019836 - rotZ: 0.0163330827 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545203 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Transient Thoughts - DragSelectable: true - GMNotes: '' - GUID: 3289b0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ancient Stone (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.2151833 - posY: 3.174882 - posZ: -77.24949 - rotX: 0.0208067745 - rotY: 270.0092 - rotZ: 0.0167708267 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 532200 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5322': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325426316443664/65B40BE18A1EAEAE214492B98A37C1F3F4AE03C0/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: Protective Amulet - DragSelectable: true - GMNotes: '' - GUID: a05cb9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Disc of Itzamna - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 19.2841549 - posY: 1.28609121 - posZ: 53.3411942 - rotX: 0.0208116267 - rotY: 269.9889 - rotZ: 0.0167668052 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368841 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: The Forgotten Daughter - DragSelectable: true - GMNotes: '' - GUID: 9393ec - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Aquinnah (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40168893 - posZ: 11.8 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226337 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f60263 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Extra Ammunition (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.40168822 - posZ: 23.430027 - rotX: 359.987427 - rotY: 269.999817 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226340 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Pure of Spirit - DragSelectable: true - GMNotes: '' - GUID: 3c9617 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Brother Xavier (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.40479016 - posZ: 11.9300222 - rotX: 359.987427 - rotY: 270.000061 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 438124 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4381': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: a5be8b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Unspeakable Oath (Bloodthirst) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.77216 - posY: 1.37203252 - posZ: 51.6075249 - rotX: 0.0207682457 - rotY: 269.999329 - rotZ: 180.022034 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368625 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: da7c01 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Pickpocketing - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500046 - posY: 1.35085571 - posZ: 69.05 - rotX: 0.0208106581 - rotY: 269.98877 - rotZ: 0.0167695228 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230339 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e27b3c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Recharge (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.213913 - posY: 3.16716123 - posZ: -86.69394 - rotX: 0.020808775 - rotY: 270.0 - rotZ: 0.0167716146 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 529200 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5292': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1479946668214195500/762F7E9B05C7EB97CD942EBD536E43F17AC985EF/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: cc476c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Boxing Gloves (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.2166939 - posY: 1.30145741 - posZ: -51.3760033 - rotX: 0.0208084956 - rotY: 270.000122 - rotZ: 0.01677076 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 505200 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5052': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814136015/7AF2F7CE9930A339D702FA6C426258A4C03D268F/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ddc9f8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Grete Wagner (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -60.4185028 - posY: 12.3132067 - posZ: -60.5282555 - rotX: 0.020803025 - rotY: 270.0205 - rotZ: 0.0167791024 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379830 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3798': - 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: b6506d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"Fool me once..." (1)' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 19.9733334 - posY: 1.6903677 - posZ: 7.17354536 - rotX: 359.9186 - rotY: 270.001282 - rotZ: 0.0155457929 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315238 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2423e7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fence (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.40207338 - posZ: 16.4000072 - rotX: 359.987427 - rotY: 269.999878 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 233607 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2336': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Logistical Genius - DragSelectable: true - GMNotes: '' - GUID: 4120f3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lt. Wilson Stewart - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.3919563 - posY: 1.31971157 - posZ: -46.01424 - rotX: 359.394073 - rotY: 270.001282 - rotZ: 0.016761262 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 373819 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3738': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 80b7c6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Graveyard Ghouls - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 53.86731 - posY: 1.36824882 - posZ: -45.67506 - rotX: 0.0158746652 - rotY: 269.99646 - rotZ: 0.0151343858 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368705 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2616': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: dcdcea - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"You handle this one!"' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500023 - posY: 1.35680318 - posZ: 85.15 - rotX: 0.0208152775 - rotY: 269.9749 - rotZ: 0.0167649742 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 454100 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4541': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Trap. - DragSelectable: true - GMNotes: '' - GUID: 74840a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bear Trap - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.3778458 - posY: 2.36909652 - posZ: -86.7653351 - rotX: 0.0208093915 - rotY: 270.0 - rotZ: 0.01677069 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 505800 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5058': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814164290/D32CCEABA5EB8191753875F96B57AC9B924CA2F5/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: Secrets Revealed - DragSelectable: true - GMNotes: '' - GUID: 43c826 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Forbidden Tome (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -57.88892 - posY: 3.169279 - posZ: -67.29838 - rotX: 0.0208151359 - rotY: 269.97934 - rotZ: 0.0167641938 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 452504 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4525': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Chained to the Waking World - DragSelectable: true - GMNotes: '' - GUID: d253a6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Randolph Carter - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -30.5121937 - posY: 2.37383485 - posZ: -80.5855255 - rotX: 0.0208091475 - rotY: 270.0 - rotZ: 0.0167707652 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368852 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Big Man on Campus - DragSelectable: true - GMNotes: '' - GUID: e1e098 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Peter Sylvestre (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40913355 - posZ: -15.8000059 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 313502 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3135': - 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: '' - DragSelectable: true - GMNotes: '' - GUID: b94d12 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Shards of the Void (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76 - posY: 1.41737127 - posZ: -22.4099979 - rotX: 359.987427 - rotY: 270.000061 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379827 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3798': - 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: 91e53c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Daring - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.1511784 - posY: 1.67444432 - posZ: 7.094112 - rotX: 359.921478 - rotY: 270.000641 - rotZ: 0.0153285637 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368860 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0027f2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Will to Survive (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.41533744 - posZ: -38.8000031 - rotX: 359.987427 - rotY: 269.999939 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226336 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 102fad - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Reliable (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.40671 - posY: 3.51911259 - posZ: -65.72932 - rotX: 0.0208095815 - rotY: 270.017 - rotZ: 180.016769 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368520 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 408cb5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Emergency Cache (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 116.94 - posY: 1.395855 - posZ: 27.9000053 - rotX: 359.987427 - rotY: 269.9999 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368630 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Unscrupulous Investor - DragSelectable: true - GMNotes: '' - GUID: 5ec1a2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dario El-Amin - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500065 - posY: 1.34681618 - posZ: 55.2500038 - rotX: 0.0208117589 - rotY: 269.9888 - rotZ: 0.016770687 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 530800 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5308': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325035909448376/BEC84DC58609FE33EC9BB3E1FF2D647CB50C8A17/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '658691' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Will to Survive - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.5899124 - posY: 1.30077147 - posZ: -55.7378845 - rotX: 0.0208122134 - rotY: 269.9875 - rotZ: 0.0167664737 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230330 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Speaker to the Dead - DragSelectable: true - GMNotes: '' - GUID: 53867b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Alyssa Graham - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -28.4000015 - posY: 1.3361932 - posZ: 85.15 - rotX: 0.0208057817 - rotY: 270.006378 - rotZ: 0.01677696 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 278846 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2788': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Key to the Gate of Dreams - DragSelectable: true - GMNotes: '' - GUID: 61fd07 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Silver Key - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.46796 - posY: 3.47810078 - posZ: -50.62324 - rotX: 0.0125573976 - rotY: 270.0 - rotZ: 180.024521 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235127 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2351': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 396e1c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Azure Flame - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.19778 - posY: 1.29653013 - posZ: -81.88072 - rotX: 0.0208082963 - rotY: 270.000061 - rotZ: 0.0167705864 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230308 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6656ad - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ward of Protection - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -21.6000023 - posY: 1.33462334 - posZ: 71.35 - rotX: 0.0208182335 - rotY: 269.966949 - rotZ: 0.01676331 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368412 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d64c99 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Truth from Fiction - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.24000382 - posY: 1.340618 - posZ: 69.05 - rotX: 0.02081118 - rotY: 269.986359 - rotZ: 0.0167688 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430653 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Prophecy Foretold - DragSelectable: true - GMNotes: '' - GUID: 3d35aa - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Archaic Glyphs (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.41390908 - posZ: -15.509985 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527561 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3798': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 06322f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Terrible Secret - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 6.347881 - posY: 1.52229333 - posZ: -78.62629 - rotX: 0.037793614 - rotY: 269.967255 - rotZ: 0.009221422 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368522 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 324e49 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Elder Sign Amulet (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 116.94 - posY: 1.39833653 - posZ: 18.7000027 - rotX: 359.987427 - rotY: 269.999878 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' - Autoraise: true CardID: 440721 ColorDiffuse: @@ -16069,6 +26059,2211 @@ ContainedObjects: scaleY: 1.0 scaleZ: 1.0 XmlUI: '' +- Autoraise: true + CardID: 545206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3d57b4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mists of R'lyeh (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.62183 + posY: 3.284762 + posZ: -72.6944351 + rotX: 0.0208067857 + rotY: 270.0092 + rotZ: 0.0167715121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232348 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Madness. Pact. + DragSelectable: true + GMNotes: '' + GUID: 4f903e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lost Soul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.30787 + posY: 2.37636733 + posZ: -74.3676 + rotX: 0.0208093375 + rotY: 270.0 + rotZ: 0.0167706758 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2616': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 819aee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sleight of Hand + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500042 + posY: 1.353437 + posZ: 73.65 + rotX: 0.0208148733 + rotY: 269.974884 + rotZ: 0.0167639721 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2670': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1597043896927363108/189F8DCE708B9975ADE834B7066AE77332D1C4DF/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7a8657 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Rite of Sanctification + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.57046 + posY: 1.30922318 + posZ: -50.46248 + rotX: 0.0208086129 + rotY: 270.000061 + rotZ: 0.016770998 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368833 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1b4434 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dark Horse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.5700035 + posY: 1.35388863 + posZ: 57.5500031 + rotX: 0.0208167 + rotY: 269.9702 + rotZ: 0.0167615525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 293315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2933': + 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: Mystic + DragSelectable: true + GMNotes: '' + GUID: 194d88 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scroll of Secrets (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.73687 + posY: 1.50124466 + posZ: -49.17045 + rotX: 0.05648235 + rotY: 270.0217 + rotZ: -0.002907931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 380949 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3809': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ce3a1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vengeful Hound + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.62743974 + posY: 1.87950075 + posZ: -44.0202332 + rotX: 0.0293578617 + rotY: 269.9289 + rotZ: 338.761932 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374935 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3749': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 367aac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Crisis of Identity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.4951439 + posY: 3.299623 + posZ: -50.0249023 + rotX: 359.920135 + rotY: 270.0012 + rotZ: 0.8290588 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 261102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2611': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b14dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Thermos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.27 + posY: 1.36259353 + posZ: 69.05 + rotX: 0.0208096933 + rotY: 269.99408 + rotZ: 0.01677326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 45bdf0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Desperate Search + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.07 + posY: 1.3684293 + posZ: 80.55 + rotX: 0.02080979 + rotY: 269.997284 + rotZ: 0.0167730879 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: da7c01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pickpocketing + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500046 + posY: 1.35085571 + posZ: 69.05 + rotX: 0.0208106581 + rotY: 269.98877 + rotZ: 0.0167695228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368427 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c18ebe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Laboratory Assistant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.64000273 + posY: 1.33938324 + posZ: 69.05 + rotX: 0.02081406 + rotY: 269.978821 + rotZ: 0.01676627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440926 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4409': + 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: ef7c11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Solemn Vow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.1418 + posY: 1.403798 + posZ: 21.0005112 + rotX: 359.9877 + rotY: 270.0044 + rotZ: 359.9829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2306': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 00b6c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: To Fight the Black Wind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.0920258 + posY: 3.39960217 + posZ: -65.15591 + rotX: 0.0208092 + rotY: 270.006958 + rotZ: 0.01676712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368854 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c803ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Infighting (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.41099477 + posZ: -22.7000084 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230348 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 64e131 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood Pact (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.41426945 + posZ: -10.9099836 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430652 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Guiding Stones + DragSelectable: true + GMNotes: '' + GUID: a14a11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Archaic Glyphs (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.41328871 + posZ: -13.2099848 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 525800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5258': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1343712298674068500/A04DB160C29453230EDD1747C134C7E44A7AC402/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a561ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Chainsaw (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.8791542 + posY: 3.17043233 + posZ: -64.25585 + rotX: 0.02080814 + rotY: 270.0009 + rotZ: 0.0167710334 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315246 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2f4db2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pickpocketing (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.40765679 + posZ: -4.300003 + rotX: 359.987427 + rotY: 269.999878 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368518 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ba560e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Trench Coat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.27 + posY: 1.36326671 + posZ: 71.35 + rotX: 0.02081009 + rotY: 269.99408 + rotZ: 0.0167732555 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368506 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c6ac19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.07 + posY: 1.36910248 + posZ: 82.85 + rotX: 0.0208097026 + rotY: 269.997284 + rotZ: 0.01677215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 438127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4381': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 57e648 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Narcolepsy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.20527 + posY: 1.5186789 + posZ: 51.2058372 + rotX: 0.0206013937 + rotY: 270.002258 + rotZ: 180.0141 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235105 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: 23a3ed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arrogance + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.455616 + posY: 1.2649765 + posZ: 56.5946922 + rotX: 0.020895334 + rotY: 269.991638 + rotZ: 0.0162042417 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527237 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5272': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: ad58aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mind's Eye (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.7199135 + posY: 1.29997373 + posZ: -68.2275848 + rotX: 0.0208084621 + rotY: 270.000061 + rotZ: 0.0167708471 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 831b6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Prepared for the Worst + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6300049 + posY: 1.34840119 + posZ: 75.9500046 + rotX: 0.02079622 + rotY: 270.027039 + rotZ: 0.0167754125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9c922f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Storm of Spirits + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6 + posY: 1.33058393 + posZ: 57.55 + rotX: 0.0208180714 + rotY: 269.96698 + rotZ: 0.01676364 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7307c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arcane Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.6670818 + posY: 2.845372 + posZ: -145.168243 + rotX: 0.0208097361 + rotY: 269.99588 + rotZ: 0.0167698245 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 534902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Two Days Until Retirement + DragSelectable: true + GMNotes: '' + GUID: 5630c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sergeant Monroe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.17111 + posY: 2.37525 + posZ: -70.6252747 + rotX: 0.0211165547 + rotY: 270.0 + rotZ: 0.0169378966 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2666': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: 249d83 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Haunted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 74.82835 + posY: 1.524788 + posZ: 81.67362 + rotX: 0.0176790953 + rotY: 269.9997 + rotZ: 0.0187719874 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 372011 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3720': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2c901b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Final Rhapsody + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 86.87249 + posY: 1.621133 + posZ: -58.3100052 + rotX: 0.0415969267 + rotY: 270.006866 + rotZ: 359.9695 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 526800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5268': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1343712472677893625/E35C1EC307E1D4E7747841880A59A144E2991D3F/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 90e0af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Library Docent (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.793808 + posY: 3.17063713 + posZ: -65.03686 + rotX: 0.0208078921 + rotY: 270.0013 + rotZ: 0.0167711489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368841 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: The Forgotten Daughter + DragSelectable: true + GMNotes: '' + GUID: 9393ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Aquinnah (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40168893 + posZ: 11.8 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 97986a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dynamite Blast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6299963 + posY: 1.34099555 + posZ: 50.6499977 + rotX: 0.0207956564 + rotY: 270.027039 + rotZ: 0.0167747736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 444451 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3801': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3b8cb7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mystifying Song + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.54795074 + posY: 1.51128662 + posZ: -84.96509 + rotX: 5.05340624 + rotY: 270.0641 + rotZ: 0.0321298726 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734354026/CB8C37257A131247F1C115CC56965B9C2DA293E1/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 310d95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Monster Slayer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.20985 + posY: 3.17165613 + posZ: -65.67503 + rotX: 0.0208017379 + rotY: 270.023468 + rotZ: 0.0167800244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 371466 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3714': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 46812e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sacrificial Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 76.95408 + posY: 1.51747715 + posZ: -49.6841774 + rotX: 0.018425867 + rotY: 270.021179 + rotZ: 0.02911497 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: The Murder Weapon + DragSelectable: true + GMNotes: '' + GUID: d71f11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bloodstained Dagger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.4621468 + posY: 2.36952639 + posZ: -73.6884155 + rotX: 0.0211172719 + rotY: 270.0 + rotZ: 0.0169384666 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 54832d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Alchemical Transmutation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0000019 + posY: 1.334735 + posZ: 75.95 + rotX: 0.0207990371 + rotY: 270.0313 + rotZ: 0.0167850517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 82775a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bandolier + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.230005 + posY: 1.34716654 + posZ: 75.9500046 + rotX: 0.0208153687 + rotY: 269.9694 + rotZ: 0.01676186 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Professor of Languages + DragSelectable: true + GMNotes: '' + GUID: 42806b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Professor Warren Rice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.05947 + posY: 2.373765 + posZ: -66.9028549 + rotX: 0.0208103973 + rotY: 270.000031 + rotZ: 0.0167690516 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cc6e4d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Take Heart + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.37 + posY: 1.36107087 + posZ: 73.65 + rotX: 0.0208189469 + rotY: 269.9588 + rotZ: 0.0167584512 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 462900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4629': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734332782/EBF522BD8B719A8F233F6A067C5B7139E5492B50/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Talent + DragSelectable: true + GMNotes: '' + GUID: 31be15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Arbiter of Fates + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.3401642 + posY: 1.30818319 + posZ: 61.2431374 + rotX: 0.0175818484 + rotY: 269.977722 + rotZ: 0.0158620458 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2746': + 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: '051742' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Able Bodied + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.37 + posY: 1.36039758 + posZ: 71.35 + rotX: 0.0208197385 + rotY: 269.9588 + rotZ: 0.0167587847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Elite. + DragSelectable: true + GMNotes: '' + GUID: 6720ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Man in the Pallid Mask + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.02582 + posY: 2.37551236 + posZ: -83.66287 + rotX: 0.020809222 + rotY: 270.0 + rotZ: 0.0167703032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 295503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2955': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 080d4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pantalone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.1961975 + posY: 1.303426 + posZ: -60.8053932 + rotX: 0.0208087284 + rotY: 270.0 + rotZ: 0.01677115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440925 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4409': + 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: aafc17 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bloodlust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.1916046 + posY: 1.36471915 + posZ: -64.52677 + rotX: 0.0206168424 + rotY: 270.022461 + rotZ: 0.009735803 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cd0ac1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fearless + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.2000027 + posY: 1.33787787 + posZ: 78.25 + rotX: 0.0208174773 + rotY: 269.971 + rotZ: 0.0167640541 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 380230 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3802': + 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: fb9b7e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Brute Force (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.9545345 + posY: 1.5229435 + posZ: -8.064844 + rotX: 359.9151 + rotY: 270.007782 + rotZ: 0.0103515983 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2622': + 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: bc4788 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Feed the Mind (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.41452944 + posZ: -17.8099861 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' - Autoraise: true CardID: 226329 ColorDiffuse: @@ -16114,6 +28309,861 @@ ContainedObjects: scaleY: 1.0 scaleZ: 1.0 XmlUI: '' +- Autoraise: true + CardID: 447934 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4479': + 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: 93381d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Heroic Rescue (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.9259224 + posY: 1.29796028 + posZ: -78.57276 + rotX: 0.0208088644 + rotY: 270.000061 + rotZ: 0.0167711973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4d971e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Survival Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.230005 + posY: 1.3491863 + posZ: 82.85 + rotX: 0.0208167434 + rotY: 269.9694 + rotZ: 0.0167635381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 372110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3721': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 03c6a7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Jim's Trumpet + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.8095436 + posY: 2.18439317 + posZ: -93.41783 + rotX: 0.02080927 + rotY: 270.001282 + rotZ: 0.01677108 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447932 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4479': + 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: ebdd78 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: .35 Winchester + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.4082336 + posY: 1.300362 + posZ: -71.00999 + rotX: 0.0208086018 + rotY: 270.000061 + rotZ: 0.01677047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2776': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '230835' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scroll of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.5756321 + posY: 1.326131 + posZ: 49.75152 + rotX: 0.0208086669 + rotY: 269.9986 + rotZ: 0.01677173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440724 + 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: cdbb37 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Easy Mark (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.19893 + posY: 1.56512642 + posZ: 29.48283 + rotX: 359.987854 + rotY: 269.9784 + rotZ: 359.9843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 539500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1017195287736531119/B300331BEF8B29732A2AD6123D59380B7ECB631C/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: John Dee Translation (Advanced) + DragSelectable: true + GMNotes: '' + GUID: 5b2e10 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: The Necronomicon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.11229 + posY: 2.84077334 + posZ: -98.24499 + rotX: 0.02080472 + rotY: 270.0131 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 438123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4381': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: f6aba5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unspeakable Oath (Curiosity) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.0862484 + posY: 2.377057 + posZ: -75.92746 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379555 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3795': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f4bac6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Detective's Colt 1911s + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.403568 + posY: 1.378892 + posZ: -71.7250748 + rotX: 0.0207481515 + rotY: 269.99942 + rotZ: 0.0167482235 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 380028 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3800': + 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: 2cfa4f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Swift Reload (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.1356068 + posY: 1.687724 + posZ: -1.17973149 + rotX: 359.921173 + rotY: 270.000244 + rotZ: 0.0157240219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3741': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1890d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Stars of Hyades + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.30492 + posY: 2.19019938 + posZ: -81.69471 + rotX: 0.02080839 + rotY: 270.000031 + rotZ: 0.0167755783 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232950 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Smarter Than He Lets On + DragSelectable: true + GMNotes: '' + GUID: f14dce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Earl Sawyer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.5583954 + posY: 1.3651762 + posZ: -51.63776 + rotX: 0.0208091978 + rotY: 270.0 + rotZ: 0.0167707857 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368837 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4cfcc7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Test of Will (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.39796674 + posZ: 25.6000061 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368525 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 523b76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Moment of Respite (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.94 + posY: 1.39957726 + posZ: 14.1 + rotX: 359.987427 + rotY: 269.999847 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1b76c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scavenging + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.6326675 + posY: 1.36736 + posZ: -66.1336441 + rotX: 0.0207946468 + rotY: 270.040375 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f0e425 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dumb Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.97 + posY: 1.35714316 + posZ: 64.45 + rotX: 0.020805018 + rotY: 270.0129 + rotZ: 0.0167762935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 378620 + 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: 312d38 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hallowed Mirror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.8494987 + posY: 1.351685 + posZ: 64.56357 + rotX: 0.0208110046 + rotY: 269.990936 + rotZ: 0.0167647637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 41f205 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vault of Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.8005047 + posY: 3.29959369 + posZ: -86.04429 + rotX: 0.020808639 + rotY: 270.0 + rotZ: 0.016771242 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368433 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Assistant Curator + DragSelectable: true + GMNotes: '' + GUID: 27e7b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dr. Elli Horowitz + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.0399933 + posY: 1.34353435 + posZ: 87.4500046 + rotX: 0.0208115932 + rotY: 269.984833 + rotZ: 0.0167669188 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' - Autoraise: true CardID: 527418 ColorDiffuse: @@ -16160,24 +29210,69 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 315262 + CardID: 535000 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3152': + '2664': BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734337699/0094A41451048DED809D1E4016E260260722ED5E/ + NumHeight: 1 + NumWidth: 1 Type: 0 UniqueBack: false Description: '' DragSelectable: true GMNotes: '' - GUID: 9f0b34 + GUID: 94ebe8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Arcane Studies (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.04534 + posY: 2.84537315 + posZ: -140.945343 + rotX: 0.0208085626 + rotY: 269.9999 + rotZ: 0.01677063 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2622': + 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: Knowledge of the Elders + DragSelectable: true + GMNotes: '' + GUID: 863f91 Grid: true GridProjection: false Hands: true @@ -16188,24 +29283,159 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Pay Day (1) + Nickname: Ancient Stone (4) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 102.75 - posY: 1.39897144 - posZ: 27.90001 + posX: 88.05002 + posY: 1.41887212 + posZ: -33.9099922 rotX: 359.987427 - rotY: 269.999725 - rotZ: 359.984528 + rotY: 270.000031 + rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 226311 + CardID: 368429 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d6771f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fieldwork + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.64000225 + posY: 1.33803678 + posZ: 64.45 + rotX: 0.02081346 + rotY: 269.978821 + rotZ: 0.0167630222 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230327 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Stygian Waymark + DragSelectable: true + GMNotes: '' + GUID: 6527a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Chthonian Stone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0 + posY: 1.33002234 + posZ: 59.85 + rotX: 0.0207988359 + rotY: 270.0313 + rotZ: 0.0167858377 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bc3451 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Burglary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500046 + posY: 1.35354865 + posZ: 78.25 + rotX: 0.020810673 + rotY: 269.98877 + rotZ: 0.0167701356 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226321 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -16222,7 +29452,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: bb0f6a + GUID: 097dcc Grid: true GridProjection: false Hands: true @@ -16233,33 +29463,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Heroic Rescue + Nickname: Blackjack SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 12.6300049 - posY: 1.347728 - posZ: 73.65001 - rotX: 0.0207946822 - rotY: 270.027039 - rotZ: 0.0167737771 + posX: 9.230005 + posY: 1.3498596 + posZ: 85.15 + rotX: 0.0208169557 + rotY: 269.9694 + rotZ: 0.0167641137 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 274002 + CardID: 368520 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2740': + '2096': BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -16267,7 +29497,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 3586e6 + GUID: 408cb5 Grid: true GridProjection: false Hands: true @@ -16278,18 +29508,18 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Occult Evidence + Nickname: Emergency Cache (3) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -38.41361 - posY: 1.363961 - posZ: -67.13534 - rotX: 0.0208034515 - rotY: 270.0197 - rotZ: 0.01677786 + posX: 116.94 + posY: 1.395855 + posZ: 27.9000053 + rotX: 359.987427 + rotY: 269.9999 + rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -16340,24 +29570,24 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 374264 + CardID: 380029 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3742': + '3800': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/960860341956230050/FB390FF37A182334B982AA19488275BB5C6E2219/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + 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: '' + Description: Muckraker DragSelectable: true GMNotes: '' - GUID: f8c873 + GUID: 90bf93 Grid: true GridProjection: false Hands: true @@ -16368,30 +29598,255 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Sophie + Nickname: Gregory Gry SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 52.49042 - posY: 1.64879036 - posZ: -45.3774376 - rotX: 0.213860989 - rotY: 269.996277 - rotZ: 359.8976 + posX: 20.0830517 + posY: 1.524828 + posZ: -0.8738573 + rotX: 359.919342 + rotY: 270.000336 + rotZ: 0.0119857425 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368408 + CardID: 507800 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2304': + '5078': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814241153/68D34A25980C036008C98BFC5E26FA4C38F89717/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 04de70 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Unexpected Courage (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.8062553 + posY: 3.17013669 + posZ: -66.17587 + rotX: 0.0208084434 + rotY: 270.0008 + rotZ: 0.0167706851 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374834 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2098': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9aee7f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Improvisation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.28952074 + posY: 0.4800682 + posZ: -82.19826 + rotX: 358.634 + rotY: 270.0588 + rotZ: 359.989777 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 444260 + 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/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f08934 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dark Insight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.14029932 + posY: 1.58196938 + posZ: -77.8714752 + rotX: 7.61785269 + rotY: 269.935059 + rotZ: 0.0212708171 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368843 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 06228f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Stroke of Luck (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40292978 + posZ: 7.200001 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447935 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4479': + 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: 80fafa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Leadership (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.4562149 + posY: 1.30115438 + posZ: -68.24378 + rotX: 0.02080835 + rotY: 270.000061 + rotZ: 0.0167708285 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430659 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ @@ -16402,7 +29857,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 8cf335 + GUID: 536b52 Grid: true GridProjection: false Hands: true @@ -16413,33 +29868,78 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Mind over Matter + Nickname: Arcane Insight (4) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -3.23999333 - posY: 1.343311 - posZ: 78.25001 - rotX: 0.02081162 - rotY: 269.986359 - rotZ: 0.016769629 + posX: 88.05002 + posY: 1.41949248 + posZ: -36.2099876 + rotX: 359.987427 + rotY: 270.0001 + rotZ: 359.984528 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 276200 + CardID: 315257 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2762': + '3152': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Stealing Time + DragSelectable: true + GMNotes: '' + GUID: 62d930 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Gold Pocket Watch (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.749992 + posY: 1.41572177 + posZ: -34.200016 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -16447,7 +29947,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 2240f9 + GUID: 8f7289 Grid: true GridProjection: false Hands: true @@ -16458,24 +29958,744 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: "Coup de Gr\xE2ce" + Nickname: Guts SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 28.3500042 - posY: 1.34939754 - posZ: 59.8500023 - rotX: 0.0208155029 - rotY: 269.974884 - rotZ: 0.0167655852 + posX: 64.07001 + posY: 1.370449 + posZ: 87.4500046 + rotX: 0.02080942 + rotY: 269.9973 + rotZ: 0.016771527 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 230360 + CardID: 274007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2740': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Worlds within Worlds + DragSelectable: true + GMNotes: '' + GUID: b8c891 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gate Box + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.39115 + posY: 1.52415013 + posZ: -50.30054 + rotX: 0.0206940472 + rotY: 270.019836 + rotZ: 0.0163330827 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368857 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f1b0f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Try and Try Again (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.41285586 + posZ: -29.6000061 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4ff44f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Crystal Pendulum + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.1276054 + posY: 1.29777145 + posZ: -78.9681 + rotX: 0.02080821 + rotY: 270.000061 + rotZ: 0.0167705473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734339700/799FE6D03024701D5DD27E643960B8BF268D6EAF/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: a9a639 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Called by the Mists + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.6085854 + posY: 3.17541957 + posZ: -91.6246643 + rotX: 0.0208091736 + rotY: 269.999939 + rotZ: 0.0167705584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226354 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f03baa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Custom Ammunition (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87001 + posY: 1.41533685 + posZ: -27.1699924 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315255 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a6af13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lupara (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.414481 + posZ: -29.600008 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 528600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5286': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1479946491544212264/69451B5D0CCEAB549F451F3746CAAA1D100739A1/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8b13de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Neither Rain nor Snow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.80068 + posY: 3.17277646 + posZ: -60.0027122 + rotX: 0.0208114833 + rotY: 269.989471 + rotZ: 0.01676666 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 313604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3136': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: 4f2668 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rite of Seeking (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.4130286 + posZ: -6.3099823 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2622': + 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: 77f92c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Expose Weakness (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.412048 + posZ: -8.60998249 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315256 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: No-Nonsense Archaeologist + DragSelectable: true + GMNotes: '' + GUID: 8bec05 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lola Santiago (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.41510141 + posZ: -31.9000053 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 526000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5260': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1343712298674071454/4597D8381A1403A6EADC88770B3FFD1933874927/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 20ff08 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Voice of Ra + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.45269 + posY: 12.3024073 + posZ: -60.60305 + rotX: 0.0208035652 + rotY: 270.0185 + rotZ: 0.0167782921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9f8a0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Clairvoyance + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.4975128 + posY: 1.29861641 + posZ: -73.14046 + rotX: 0.0208083373 + rotY: 270.000061 + rotZ: 0.0167708267 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315248 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f57af7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: .41 Derringer (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.409518 + posZ: -11.2000046 + rotX: 359.987427 + rotY: 269.999847 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8c5d4c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: One-Two Punch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.95812 + posY: 1.29527724 + posZ: -88.93968 + rotX: 0.0208082628 + rotY: 270.000061 + rotZ: 0.0167709477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 293216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2932': + 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: 0ce005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Esoteric Atlas (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.42852 + posY: 1.51032472 + posZ: -53.8481 + rotX: 0.0210976042 + rotY: 270.016876 + rotZ: 0.0175880175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 08bdf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Guard Dog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.230006 + posY: 1.34582007 + posZ: 71.3500061 + rotX: 0.0208174884 + rotY: 269.9694 + rotZ: 0.01676253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230340 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -16492,7 +30712,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 7bc995 + GUID: 644af9 Grid: true GridProjection: false Hands: true @@ -16503,17 +30723,917 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Ward of Protection (5) + Nickname: Arcane Studies (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: posX: 80.76002 - posY: 1.4229548 - posZ: -43.109993 + posY: 1.40868592 + posZ: 9.790023 rotX: 359.987427 rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440622 + 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: 96a440 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gravedigger's Shovel (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.45989 + posY: 1.56187952 + posZ: 37.3573074 + rotX: 359.9887 + rotY: 269.9923 + rotZ: 359.98288 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230344 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a06aa7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Recall the Future (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76001 + posY: 1.4111675 + posZ: 0.590019047 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2776': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c7d9b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Enchanted Blade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.748642 + posY: 1.32271636 + posZ: 46.98568 + rotX: 0.0208090227 + rotY: 269.998566 + rotZ: 0.0167730749 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 431115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2698': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Enemy + DragSelectable: true + GMNotes: '' + GUID: da227d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Thing That Follows + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 79.6971741 + posY: 1.516075 + posZ: 71.10236 + rotX: 0.02737251 + rotY: 269.988983 + rotZ: 0.00684426632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315244 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '... Or Are They?' + DragSelectable: true + GMNotes: '' + GUID: 9dd911 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lucky Dice (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.40517533 + posZ: 4.89999962 + rotX: 359.987427 + rotY: 269.999878 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3121': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: "What\u2019s in the Box?" + DragSelectable: true + GMNotes: '' + GUID: 0e39c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Council's Coffer (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.4600334 + posY: 1.52728856 + posZ: -53.46696 + rotX: 0.0193714 + rotY: 270.016724 + rotZ: 0.0191046689 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2758': + 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: 9591ac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Impromptu Barrier + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.97 + posY: 1.362529 + posZ: 82.85 + rotX: 0.0208036583 + rotY: 270.012939 + rotZ: 0.01677902 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: 39452d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fine Print + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.3330345 + posY: 3.16976333 + posZ: -76.16513 + rotX: 0.02080835 + rotY: 269.999878 + rotZ: 0.0167706367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 444348 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3806': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9d6e9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nautical Prowess + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.30395651 + posY: 2.05984831 + posZ: -45.23866 + rotX: 0.869807959 + rotY: 269.5711 + rotZ: 359.8488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277910 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2779': + 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: 6d9881 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Drawing Thin + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.6383247 + posY: 1.33034 + posZ: 64.20871 + rotX: 0.0208067931 + rotY: 269.999878 + rotZ: 0.01677723 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5271': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cbcb7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Delve Too Deep (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.08526 + posY: 1.440638 + posZ: -77.7699661 + rotX: 0.0208127648 + rotY: 269.9993 + rotZ: 0.0167973619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368505 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0f32e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Run For Your Life + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.07 + posY: 1.36573625 + posZ: 71.35 + rotX: 0.0208081417 + rotY: 269.997284 + rotZ: 0.01677328 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315262 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9f0b34 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pay Day (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.39897144 + posZ: 27.90001 + rotX: 359.987427 + rotY: 269.999725 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315233 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: The Ferryman's Pay + DragSelectable: true + GMNotes: '' + GUID: 1dbc95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Charon's Obol (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.39835107 + posZ: 30.20001 + rotX: 359.987427 + rotY: 269.9998 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3698': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 49a91e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Roland's .38 Special + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 86.96031 + posY: 1.51700377 + posZ: -58.5377922 + rotX: 0.00607056357 + rotY: 269.999817 + rotZ: 0.0136969965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2356': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Renowned Historian + DragSelectable: true + GMNotes: '' + GUID: c49b4b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Alejandro Vela + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.8602333 + posY: 3.17244 + posZ: -61.7880058 + rotX: 0.0208084844 + rotY: 269.999847 + rotZ: 0.0167707447 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230332 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 98fc57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Grounded (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.40310252 + posZ: 30.4900265 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0c859f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Painkillers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.27 + posY: 1.36663294 + posZ: 82.85 + rotX: 0.0208111759 + rotY: 269.99408 + rotZ: 0.01677131 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292915 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2929': + 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: Rogue + DragSelectable: true + GMNotes: '' + GUID: d4dbc7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: .45 Thompson (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.28594 + posY: 1.36603451 + posZ: -55.2474 + rotX: 0.0208098963 + rotY: 270.000031 + rotZ: 0.0167697147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368860 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0027f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Will to Survive (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.41533744 + posZ: -38.8000031 + rotX: 359.987427 + rotY: 269.999939 rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 @@ -16565,24 +31685,24 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 235118 + CardID: 430651 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2351': + '2915': BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: Petrus de Dacia Translation + Description: '' DragSelectable: true GMNotes: '' - GUID: eaafcf + GUID: 2e3115 Grid: true GridProjection: false Hands: true @@ -16593,24 +31713,69 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: The Necronomicon (5) + Nickname: Barricade (3) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -54.0527954 - posY: 1.85880446 - posZ: 34.6249771 - rotX: 359.935 - rotY: 269.998749 - rotZ: 0.0135341221 + posX: 88.05002 + posY: 1.41266835 + posZ: -10.9099836 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 235108 + CardID: 533500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325459410602626/4BF3C48E230C901EB6C44325F67FEE271A612D74/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6750db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Feed the Mind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.2841282 + posY: 1.36448312 + posZ: 53.3411674 + rotX: 0.0208057463 + rotY: 270.0089 + rotZ: 0.0167737454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235135 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -16627,7 +31792,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 99765a + GUID: a177db Grid: true GridProjection: false Hands: true @@ -16638,30 +31803,30 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Clean Them Out + Nickname: Quick Learner (4) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -49.9561768 - posY: 1.297289 - posZ: -82.06933 - rotX: 0.0208087768 + posX: -51.02678 + posY: 2.485092 + posZ: -74.1366 + rotX: 0.0 rotY: 270.0 - rotZ: 0.0167709328 + rotZ: 22.62915 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368622 + CardID: 315242 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2615': + '3152': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ @@ -16672,7 +31837,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: bc3451 + GUID: 15643b Grid: true GridProjection: false Hands: true @@ -16683,24 +31848,654 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Burglary + Nickname: Hard Knocks (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 24.9500046 - posY: 1.35354865 - posZ: 78.25 - rotX: 0.020810673 - rotY: 269.98877 - rotZ: 0.0167701356 + posX: 102.75 + posY: 1.40579569 + posZ: 2.59999871 + rotX: 359.987427 + rotY: 269.999878 + rotZ: 359.984528 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 226347 + CardID: 230356 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 07bc04 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Grotesque Statue (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.42047322 + posZ: -33.90999 + rotX: 359.987427 + rotY: 270.0001 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 297101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2971': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Curse. + DragSelectable: true + GMNotes: '' + GUID: 569b06 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Curse of the Rougarou + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.49299 + posY: 1.78174841 + posZ: 6.4157424 + rotX: 2.12603521 + rotY: 269.862244 + rotZ: 4.248013 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315247 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ce1b89 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: High Roller (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.40827727 + posZ: -6.60000229 + rotX: 359.987427 + rotY: 269.999878 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 679b13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.07 + posY: 1.36640954 + posZ: 73.65 + rotX: 0.0208091382 + rotY: 269.997284 + rotZ: 0.0167735945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315249 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f8dc01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Skeleton Key (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.41075873 + posZ: -15.8000069 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 505600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5056': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814162888/1C32CD007654F01CD17862F2487752B3266DF7E3/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Untranslated + DragSelectable: true + GMNotes: '' + GUID: 6743e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Forbidden Tome + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.794796 + posY: 3.16968346 + posZ: -66.54757 + rotX: 0.0208079983 + rotY: 270.0011 + rotZ: 0.0167708937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3790': + 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: b7c503 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ghastly Revelation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.8512068 + posY: 1.34525955 + posZ: 63.70211 + rotX: 0.0208136924 + rotY: 269.981 + rotZ: 0.01676558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 507700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5077': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814240860/EFCD98DF505AEAACC2E9F9E968F19138B7E2DFA7/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d984a8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Cherished Keepsake (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.8605232 + posY: 3.169969 + posZ: -65.690834 + rotX: 0.0208087415 + rotY: 270.00058 + rotZ: 0.0167721659 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448735 + 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: '' + DragSelectable: true + GMNotes: '' + GUID: d6f6f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nightmare Bauble (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.8109741 + posY: 2.485328 + posZ: -81.0424 + rotX: 0.0 + rotY: 270.0 + rotZ: 22.62915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2776': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a20887 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Grisly Totem + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.1001987 + posY: 1.32403064 + posZ: 46.94928 + rotX: 0.0208084043 + rotY: 269.998535 + rotZ: 0.0167739969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5ab9f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.07 + posY: 1.367756 + posZ: 78.25 + rotX: 0.0208083075 + rotY: 269.997284 + rotZ: 0.0167704355 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2616': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b18b33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sneak Attack + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500061 + posY: 1.35141718 + posZ: 66.75 + rotX: 0.0208151527 + rotY: 269.9749 + rotZ: 0.0167625621 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 658d38 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shrewd Analysis + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.63999367 + posY: 1.34476912 + posZ: 87.4500046 + rotX: 0.02081338 + rotY: 269.978821 + rotZ: 0.0167668 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.27 + posY: 1.36528647 + posZ: 78.25 + rotX: 0.0208097659 + rotY: 269.99408 + rotZ: 0.0167725012 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226300 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -16717,7 +32512,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: fe0cc0 + GUID: 50fb37 Grid: true GridProjection: false Hands: true @@ -16728,15 +32523,690 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: .45 Automatic (2) + Nickname: Take the Initiative + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.0300045 + posY: 1.35300207 + posZ: 87.45 + rotX: 0.0208121948 + rotY: 269.987427 + rotZ: 0.01676891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368526 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: He Was Never There + DragSelectable: true + GMNotes: '' + GUID: ad18a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Red-Gloved Man (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.94 + posY: 1.40019763 + posZ: 11.8000021 + rotX: 359.987427 + rotY: 269.999847 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2732': + 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: b9bb2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fingerprint Kit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.0399933 + posY: 1.34218788 + posZ: 82.8500061 + rotX: 0.0208109729 + rotY: 269.984833 + rotZ: 0.01676825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 449811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4498': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ad24aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scrapper (3) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.8816071 + posY: 1.40227866 + posZ: -77.45251 + rotX: 0.0208089687 + rotY: 269.9995 + rotZ: 0.0167749319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368835 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '812685' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Devil's Luck (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.149994 + posY: 1.39610553 + posZ: 32.50001 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e425d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arcane Research + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0000019 + posY: 1.33810127 + posZ: 87.45 + rotX: 0.020799011 + rotY: 270.0313 + rotZ: 0.01678507 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 380126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3801': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: 75eca5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Read the Signs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.2260036 + posY: 1.688674 + posZ: -4.15322065 + rotX: 359.919952 + rotY: 269.999664 + rotZ: 0.0162679963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 374014 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2098': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dfd48b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Painted World + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.31871462 + posY: 0.622307062 + posZ: -49.1846924 + rotX: -5.89429e-06 + rotY: 269.999939 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 261101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2611': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d2663c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hemispheric Map (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.94 + posY: 1.39895689 + posZ: 16.4000015 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 378018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3780': + 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: d27d12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"You owe me one!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 46.0198975 + posY: 1.3575114 + posZ: 65.64583 + rotX: 0.0208127461 + rotY: 269.982056 + rotZ: 0.01676411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226349 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e35bc2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dynamite Blast (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: posX: 95.87002 - posY: 1.41037369 - posZ: -8.769983 + posY: 1.41161442 + posZ: -13.3699875 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2667': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011565208488842326/3FF786B2685526D7475E5EE6F2621F8853BBCEA3/ + NumHeight: 2 + NumWidth: 4 + Type: 0 + UniqueBack: false + Description: Spell. Blessed. + DragSelectable: true + GMNotes: '' + GUID: 39f9ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tides of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.31582 + posY: 2.00366163 + posZ: 34.2847939 + rotX: 359.934143 + rotY: 269.996277 + rotZ: 0.0139406556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2775': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: a00fca + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Banish (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.6736889 + posY: 1.566863 + posZ: 70.85531 + rotX: 0.01997196 + rotY: 269.999084 + rotZ: 0.0208501965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230338 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bf3dd1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Defiance (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.40744519 + posZ: 14.3900223 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2928': + 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: Guardian + DragSelectable: true + GMNotes: '' + GUID: 84b918 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Enchanted Blade (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.7760849 + posY: 1.51176524 + posZ: -49.1228828 + rotX: 0.0195764955 + rotY: 269.98288 + rotZ: 0.009112052 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430653 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Prophecy Foretold + DragSelectable: true + GMNotes: '' + GUID: 3d35aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Archaic Glyphs (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.41390908 + posZ: -15.509985 rotX: 359.987427 rotY: 270.0 rotZ: 359.984558 @@ -16744,6 +33214,1581 @@ ContainedObjects: scaleY: 1.0 scaleZ: 1.0 XmlUI: '' +- Autoraise: true + CardID: 368409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a8e495 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Anatomical Diagrams + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.239993 + posY: 1.34263766 + posZ: 75.9500046 + rotX: 0.0208109878 + rotY: 269.986359 + rotZ: 0.0167700239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4488': + 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: d6085d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Eye of Truth (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.90797 + posY: 1.296707 + posZ: -82.87657 + rotX: 0.0208083577 + rotY: 270.0 + rotZ: 0.01677057 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430645 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 092e92 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Quick Study (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.40832567 + posZ: 5.19001961 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4503': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f50a30 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Double or Nothing (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.91212 + posY: 1.3438952 + posZ: -77.50387 + rotX: 0.0251247436 + rotY: 269.999847 + rotZ: 0.0118033281 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 756a35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kukri + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.27 + posY: 1.36461318 + posZ: 75.95 + rotX: 0.020810049 + rotY: 269.99408 + rotZ: 0.0167692974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226355 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3b6834 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: "\"I've had worse\u2026\" (4)" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3595657 + posY: 3.52342 + posZ: -65.6875458 + rotX: 0.0109348232 + rotY: 270.0 + rotZ: 180.018341 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 506200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5062': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814175796/981A2197CE02C395D55C0BD06FDE47AB0BC239E2/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a781f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '"I''ve got a plan!" (2)' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.3643456 + posY: 3.16920424 + posZ: -67.48278 + rotX: 0.0208080914 + rotY: 270.0013 + rotZ: 0.0167710669 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226352 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cd7b97 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Stand Together (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.41347551 + posZ: -20.269989 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233135 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2331': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Ruthless Tactician + DragSelectable: true + GMNotes: '' + GUID: 7f7ecc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Naomi O'Bannion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.6088257 + posY: 2.373914 + posZ: -84.50722 + rotX: 0.020808164 + rotY: 270.0 + rotZ: 0.0484022573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e173d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Grit Your Teeth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.5804367 + posY: 2.84395123 + posZ: -112.694794 + rotX: 0.0208083186 + rotY: 270.0 + rotZ: 0.0167707168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Stygian Waymark + DragSelectable: true + GMNotes: '' + GUID: 698fcc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Chthonian Stone (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.721096 + posY: 3.28535 + posZ: -72.75358 + rotX: 0.0208072979 + rotY: 270.0092 + rotZ: 0.0167705286 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 378019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3780': + 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: 0e0530 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Double, Double (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 112.103218 + posY: 1.3954078 + posZ: 33.496376 + rotX: 359.987427 + rotY: 270.000122 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 376938 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3769': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1f3880 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Smuggled Goods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3596954 + posY: 3.53167915 + posZ: -65.68801 + rotX: 0.0124424817 + rotY: 270.0001 + rotZ: 180.005081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 454100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4541': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Trap. + DragSelectable: true + GMNotes: '' + GUID: 74840a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bear Trap + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.3778458 + posY: 2.36909652 + posZ: -86.7653351 + rotX: 0.0208093915 + rotY: 270.0 + rotZ: 0.01677069 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 378619 + 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: 76147b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: "\"I've had worse\u2026\" (2)" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3595657 + posY: 3.52341747 + posZ: -65.6875458 + rotX: 0.01074947 + rotY: 270.0 + rotZ: 180.018921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2616': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dcdcea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"You handle this one!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500023 + posY: 1.35680318 + posZ: 85.15 + rotX: 0.0208152775 + rotY: 269.9749 + rotZ: 0.0167649742 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545212 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: e27c93 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Offer You Cannot Refuse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.7565 + posY: 3.1718924 + posZ: -76.1044846 + rotX: 0.0208088569 + rotY: 269.999451 + rotZ: 0.01677096 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 526500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5265': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1343712298674144035/5A32123532933F20C391D790A1D0CF3F2E260573/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6b130d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Evidence! (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.4792976 + posY: 3.17139268 + posZ: -66.93865 + rotX: 0.0208028425 + rotY: 270.0188 + rotZ: 0.0167778488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368415 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44cf4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: No Stone Unturned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3596878 + posY: 3.53277922 + posZ: -65.68791 + rotX: 0.0166730285 + rotY: 269.999664 + rotZ: 180.035721 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 314905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3149': + 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: 70772b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Oops! (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40665209 + posZ: -6.60000372 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 314000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3140': + 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: 53d765 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Blood Eclipse (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.41409588 + posZ: -22.5699883 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3798': + 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: 5e808d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Self-Sacrifice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.0898914 + posY: 1.5271982 + posZ: 6.91475 + rotX: 359.920441 + rotY: 270.003418 + rotZ: 0.0135479523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c33a10 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Liquid Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500027 + posY: 1.35489511 + posZ: 82.85 + rotX: 0.0208108556 + rotY: 269.98877 + rotZ: 0.0167696662 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 529600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5296': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1479946668208310438/1567A2EA1ECF346D4550AA81AD4D653DC84C075A/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 15f45b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Burning the Midnight Oil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.4251976 + posY: 1.30235624 + posZ: -49.28748 + rotX: 0.0208073948 + rotY: 270.0047 + rotZ: 0.01677352 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226348 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7001be + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Beat Cop (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.410994 + posZ: -11.0699854 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266707 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2667': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011565208488842326/3FF786B2685526D7475E5EE6F2621F8853BBCEA3/ + NumHeight: 2 + NumWidth: 4 + Type: 0 + UniqueBack: false + Description: Untranslated + DragSelectable: true + GMNotes: '' + GUID: d2b81b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cryptic Grimoire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.392704 + posY: 1.70766068 + posZ: 60.29674 + rotX: 0.0206119381 + rotY: 269.9819 + rotZ: 0.01771983 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232949 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Recalling Ancient Things + DragSelectable: true + GMNotes: '' + GUID: 6714b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Zebulon Whateley + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.8655548 + posY: 1.363576 + posZ: -55.4826279 + rotX: 0.0208091382 + rotY: 270.0 + rotZ: 0.0167707019 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448839 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4488': + 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: Library Intern + DragSelectable: true + GMNotes: '' + GUID: 97e9ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Abigail Foreman (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1198387 + posY: 1.67931545 + posZ: 7.569963 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.016875755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379928 + 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: Untranslated + DragSelectable: true + GMNotes: '' + GUID: b81dcf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dream Diary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.2744427 + posY: 1.67508531 + posZ: 2.87569213 + rotX: 359.9198 + rotY: 269.9968 + rotZ: 0.01500414 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 530800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5308': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325035909448376/BEC84DC58609FE33EC9BB3E1FF2D647CB50C8A17/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '658691' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Will to Survive + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.5899124 + posY: 1.30077147 + posZ: -55.7378845 + rotX: 0.0208122134 + rotY: 269.9875 + rotZ: 0.0167664737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2746': + 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: 0bea17 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Act of Desperation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.97 + posY: 1.36387551 + posZ: 87.45 + rotX: 0.02080351 + rotY: 270.012939 + rotZ: 0.01677897 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3125': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Not Going Down That Easily + DragSelectable: true + GMNotes: '' + GUID: 2237f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gavriella Mizrah + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.35406 + posY: 1.62373781 + posZ: -52.944416 + rotX: 0.0179333128 + rotY: 270.007782 + rotZ: 0.028359253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5c3aea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Inquiring Mind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.160006061 + posY: 1.34589219 + posZ: 82.8500061 + rotX: 0.0208204687 + rotY: 269.9646 + rotZ: 0.0167588983 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 431818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3739': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e6efe6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bury Them Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.9744873 + posY: 1.4029851 + posZ: -45.9182663 + rotX: 0.652829766 + rotY: 269.939 + rotZ: 359.007477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230329 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 29b842 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rite of Seeking + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.4000015 + posY: 1.33686638 + posZ: 87.45 + rotX: 0.0208066311 + rotY: 270.0064 + rotZ: 0.01677684 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' - Autoraise: true CardID: 506500 ColorDiffuse: @@ -16790,159 +34835,24 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 235128 + CardID: 505800 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2351': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9f8a0a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Clairvoyance - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.4975128 - posY: 1.29861641 - posZ: -73.14046 - rotX: 0.0208083373 - rotY: 270.000061 - rotZ: 0.0167708267 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- 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: cf9ca8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Augur - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.34123 - posY: 1.54816771 - posZ: 37.5141525 - rotX: 359.989624 - rotY: 269.9923 - rotZ: 359.9818 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430648 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Protective Amulet - DragSelectable: true - GMNotes: '' - GUID: b00b76 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Disc of Itzamna (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.41018677 - posZ: -1.7099812 - rotX: 359.987427 - rotY: 270.000122 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 531500 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5315': + '5058': BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325217454093262/FA240E4EAE4590836A8E7AE9A317A3751722EC73/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814164290/D32CCEABA5EB8191753875F96B57AC9B924CA2F5/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - Description: '' + Description: Secrets Revealed DragSelectable: true GMNotes: '' - GUID: e2a8be + GUID: 43c826 Grid: true GridProjection: false Hands: true @@ -16953,30 +34863,75 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: CardCustom - Nickname: Clairvoyance (5) + Nickname: Forbidden Tome (3) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -56.1914978 - posY: 1.379037 - posZ: -44.06792 - rotX: 0.00482979743 - rotY: 269.988678 - rotZ: 3.82058239 + posX: -57.88892 + posY: 3.169279 + posZ: -67.29838 + rotX: 0.0208151359 + rotY: 269.97934 + rotZ: 0.0167641938 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 447734 + CardID: 376501 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '4477': + '3765': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f93ea8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Voice of the Messenger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.2586918 + posY: 1.357923 + posZ: -50.11138 + rotX: 0.0269877315 + rotY: 270.035828 + rotZ: 0.01620763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 380228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3802': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ @@ -16984,10 +34939,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: '' + Description: Wrong Place, Wrong Time DragSelectable: true GMNotes: '' - GUID: ea8324 + GUID: b8380d Grid: true GridProjection: false Hands: true @@ -16998,294 +34953,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Expeditious Retreat (1) + Nickname: Jessica Hyde (1) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -52.8898125 - posY: 1.29929137 - posZ: -71.58855 - rotX: 0.0208090525 - rotY: 269.999939 - rotZ: 0.0167720746 + posX: 20.11804 + posY: 1.68581808 + posZ: -7.75991 + rotX: 359.9265 + rotY: 270.0019 + rotZ: 0.0105229123 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 374935 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3749': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 367aac - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Crisis of Identity - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 27.4951439 - posY: 3.299623 - posZ: -50.0249023 - rotX: 359.920135 - rotY: 270.0012 - rotZ: 0.8290588 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431731 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3744': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bcf406 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Shell Shock - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 52.7654457 - posY: 1.66001654 - posZ: -46.2021942 - rotX: 0.167903721 - rotY: 270.0219 - rotZ: 0.438815027 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368403 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4167c0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: True Understanding - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 0.160006255 - posY: 1.34454572 - posZ: 78.25001 - rotX: 0.02081884 - rotY: 269.9646 - rotZ: 0.0167625323 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450108 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4501': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 83457e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Elusive (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.08059 - posY: 1.37134826 - posZ: -77.6898041 - rotX: 0.0213171132 - rotY: 269.9978 - rotZ: 0.4211876 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 438128 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4381': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 406ab2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Your Worst Nightmare - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.45674 - posY: 1.52149308 - posZ: 51.4070473 - rotX: 0.019881621 - rotY: 269.999634 - rotZ: 180.018326 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368710 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2616': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 819aee - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sleight of Hand - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500042 - posY: 1.353437 - posZ: 73.65 - rotX: 0.0208148733 - rotY: 269.974884 - rotZ: 0.0167639721 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230322 + CardID: 230341 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -17302,7 +34987,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 8e57b8 + GUID: 4d74f6 Grid: true GridProjection: false Hands: true @@ -17313,18 +34998,1863 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Clarity of Mind + Nickname: Ward of Protection (2) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -25.0 - posY: 1.33338857 + posX: 80.76002 + posY: 1.40930641 + posZ: 7.490021 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368434 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Professor of Entomology + DragSelectable: true + GMNotes: '' + GUID: 9934d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dr. Milan Christopher + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3597 + posY: 3.53139567 + posZ: -65.68798 + rotX: 0.0124389669 + rotY: 270.0 + rotZ: 180.0142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235649 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2356': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9dc3d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Expedition Journal + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.3065948 + posY: 3.16604829 + posZ: -95.28326 + rotX: 0.0208080523 + rotY: 270.0001 + rotZ: 0.0167709477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c607c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lucky Cigarette Case + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500046 + posY: 1.35152888 posZ: 71.35 - rotX: 0.0207986627 - rotY: 270.0313 - rotZ: 0.016783379 + rotX: 0.02081083 + rotY: 269.98877 + rotZ: 0.01677086 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 48e103 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Baseball Bat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.75805 + posY: 1.36662269 + posZ: -56.0895958 + rotX: 0.02079865 + rotY: 270.04 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430646 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f5bcec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Encyclopedia (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.408946 + posZ: 2.89002 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430647 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 19ab7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Otherworldly Compass (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.4095664 + posZ: 0.590019166 + rotX: 359.987427 + rotY: 270.000122 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430637 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 378e84 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Magnifying Glass (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.40274215 + posZ: 25.8900242 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Cleansing Fire + DragSelectable: true + GMNotes: '' + GUID: 423d46 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: St. Hubert's Key + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.4000015 + posY: 1.33551991 + posZ: 82.85 + rotX: 0.02080567 + rotY: 270.0064 + rotZ: 0.0167738758 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6656ad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ward of Protection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6000023 + posY: 1.33462334 + posZ: 71.35 + rotX: 0.0208182335 + rotY: 269.966949 + rotZ: 0.01676331 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368431 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 063fd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Old Book of Lore + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.640002 + posY: 1.33669019 + posZ: 59.85 + rotX: 0.02081435 + rotY: 269.978821 + rotZ: 0.0167656858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2746': + 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: From the Brink + DragSelectable: true + GMNotes: '' + GUID: 46187b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Five of Pentacles (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.4004482 + posZ: 16.4 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2762': + 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: 2240f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: "Coup de Gr\xE2ce" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500042 + posY: 1.34939754 + posZ: 59.8500023 + rotX: 0.0208155029 + rotY: 269.974884 + rotZ: 0.0167655852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 506600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5066': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814182691/7938CEF2E513A8FEDBF1B19B3D072CEBB3CA39C4/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e3ce75 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Leather Jacket + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -60.79473 + posY: 12.3036165 + posZ: -60.4332924 + rotX: 0.0208032522 + rotY: 270.01947 + rotZ: 0.0167775843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e0dff3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6300058 + posY: 1.34638155 + posZ: 69.05001 + rotX: 0.0207969118 + rotY: 270.027039 + rotZ: 0.0167740118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 530900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5309': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1479946880519920521/521ABDFDA56F75B0103A579F41046367E6E0BDDA/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3dfe22 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '"Look what I found!" (2)' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.3777122 + posY: 1.30281138 + posZ: -51.51361 + rotX: 0.02080922 + rotY: 269.998962 + rotZ: 0.0167698525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447631 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4476': + 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: 2aeb8a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Burglary (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.607933 + posY: 1.30007148 + posZ: -68.03267 + rotX: 0.0208079722 + rotY: 270.000061 + rotZ: 0.0167707112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2740': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: My Muse + DragSelectable: true + GMNotes: '' + GUID: ea0007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Patrice's Violin + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.38859 + posY: 1.48937368 + posZ: -50.0725479 + rotX: 0.0202874634 + rotY: 270.019684 + rotZ: 0.0154213235 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 533800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5338': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325459410606935/677029794379C4CED3F47FD95F903B7200D63F75/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5d4212 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Whitton Greene (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.2841225 + posY: 1.37817955 + posZ: 53.34116 + rotX: 0.0208032522 + rotY: 270.017731 + rotZ: 0.01677699 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2903': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c1ce8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The 13th Vision + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.38262 + posY: 2.36265874 + posZ: -70.43153 + rotX: 0.0208098218 + rotY: 270.0 + rotZ: 359.983521 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266703 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2667': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011565208488842326/3FF786B2685526D7475E5EE6F2621F8853BBCEA3/ + NumHeight: 2 + NumWidth: 4 + Type: 0 + UniqueBack: false + Description: Fortune. Blessed. + DragSelectable: true + GMNotes: '' + GUID: 59c726 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Predestined + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.3927 + posY: 1.68854463 + posZ: 60.2967377 + rotX: 0.018989414 + rotY: 269.9821 + rotZ: 0.0150101446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 376840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3768': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ecd087 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Caught Red-Handed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.359684 + posY: 3.53130126 + posZ: -65.6879654 + rotX: 0.0167008284 + rotY: 269.999939 + rotZ: 180.0173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368858 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b0c61c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: On Your Own (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.41347623 + posZ: -31.9000053 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1bc300 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Trusted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6300058 + posY: 1.34503508 + posZ: 64.4500046 + rotX: 0.0207948089 + rotY: 270.027039 + rotZ: 0.0167727638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 529500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5295': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1479946668214252490/BD956B43A8512B84851B0668DD3CE674CF5E3D7F/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ba9d3d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Taunt (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.1162758 + posY: 1.30353367 + posZ: -46.88924 + rotX: 0.0208085887 + rotY: 270.000183 + rotZ: 0.0167712569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368709 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2616': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6fec31 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Think on Your Feet + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.3500042 + posY: 1.35411012 + posZ: 75.95 + rotX: 0.020815298 + rotY: 269.9749 + rotZ: 0.016764313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2775': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: d946d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Wither + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.7956734 + posY: 1.57171309 + posZ: 40.9552956 + rotX: 1.12907594e-06 + rotY: 269.998749 + rotZ: 2.312074e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9c46da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Emergency Aid + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6300068 + posY: 1.34301531 + posZ: 57.5500031 + rotX: 0.0207952857 + rotY: 270.027039 + rotZ: 0.0167731363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 373910 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3739': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Mysterious Soothsayer + DragSelectable: true + GMNotes: '' + GUID: 03a4de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Anna Kaslow (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3030281 + posY: 1.72431636 + posZ: 5.39502954 + rotX: 359.9199 + rotY: 270.0 + rotZ: 0.0164847765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4502': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1105b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Drawing Thin (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.56755 + posY: 1.43135858 + posZ: -77.02304 + rotX: 0.020805493 + rotY: 269.999268 + rotZ: 0.016788885 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3153': + 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: 620b6e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Contraband (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.5215378 + posY: 2.36745119 + posZ: -94.6365662 + rotX: 0.0208076537 + rotY: 270.000671 + rotZ: 0.0167719889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235129 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: da25d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Recharge (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.9628944 + posY: 1.30053878 + posZ: -65.9956741 + rotX: 0.0208086018 + rotY: 270.0 + rotZ: 0.0167710837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 430650 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2915': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 814ce2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Eidetic Memory (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.4114275 + posZ: -6.30998325 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226347 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fe0cc0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: .45 Automatic (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.41037369 + posZ: -8.769983 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- 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: 695bb7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Zeal + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.16347 + posY: 1.56949711 + posZ: 37.4911728 + rotX: 359.9874 + rotY: 269.9922 + rotZ: 359.9842 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 377343 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3773': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7c958e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Jake Williams + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.09009 + posY: 2.18708086 + posZ: -86.02005 + rotX: 0.0208045971 + rotY: 270.0133 + rotZ: 0.0167789925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 506900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5069': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814228016/F0530B5A0869F4900E28229041E74AF1276C489F/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a283b4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Ineffable Truth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.12862 + posY: 3.16907382 + posZ: -85.9105148 + rotX: 0.0208083726 + rotY: 270.0 + rotZ: 0.01677103 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c5aa89 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lesson Learned (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.40984 + posY: 1.29977894 + posZ: -73.00008 + rotX: 0.02080832 + rotY: 270.000061 + rotZ: 0.0167706832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368850 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c077bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Against All Odds (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40789282 + posZ: -11.2000046 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447833 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4478': + 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: 3dc25c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Extensive Research (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.69135 + posY: 1.29797947 + posZ: -83.76117 + rotX: 0.0208081 + rotY: 270.0 + rotZ: 0.0167707074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 378958 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3789': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: acce72 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lodge "Debts" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.70438576 + posY: 1.38385892 + posZ: -56.5958862 + rotX: 0.0223048571 + rotY: 270.0155 + rotZ: 0.00638814643 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527552 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3800': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 16ad5d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Baron Samedi + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.214624 + posY: 1.37499976 + posZ: -84.58808 + rotX: 0.0183348916 + rotY: 269.969818 + rotZ: 0.016028095 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -17375,69 +36905,24 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 455300 + CardID: 379929 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '4553': + '3799': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734421634/77CA8DF7EF57F566E3B1CCF76FD424C511E8DCF4/ - NumHeight: 1 - NumWidth: 1 + 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: 11086d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Daredevil - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.2870941 - posY: 1.80156219 - posZ: 34.93551 - rotX: 359.934357 - rotY: 269.996857 - rotZ: 0.0113790222 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368618 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Doom Begets Doom - DragSelectable: true - GMNotes: '' - GUID: 07350b + GUID: 6ad46b Grid: true GridProjection: false Hands: true @@ -17448,24 +36933,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Decorated Skull + Nickname: Essence of the Dream SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 24.9500027 - posY: 1.35624158 - posZ: 87.45 - rotX: 0.0208102781 - rotY: 269.9888 - rotZ: 0.01676938 + posX: 20.46684 + posY: 1.68849742 + posZ: 2.97275424 + rotX: 359.9218 + rotY: 269.9981 + rotZ: 0.0143287377 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 226328 + CardID: 226303 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -17482,7 +36967,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: b0f851 + GUID: 83d8d7 Grid: true GridProjection: false Hands: true @@ -17493,24 +36978,384 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: .32 Colt + Nickname: Leadership SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 9.230006 - posY: 1.3444736 - posZ: 66.75001 - rotX: 0.0208173022 - rotY: 269.9694 - rotZ: 0.0167636052 + posX: 16.0300045 + posY: 1.35098243 + posZ: 80.55 + rotX: 0.0208123475 + rotY: 269.987427 + rotZ: 0.0167667661 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 230325 + CardID: 441027 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4410': + 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: 9b0dcf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pendant of the Queen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.96671 + posY: 1.36040926 + posZ: -67.41669 + rotX: 0.0207998231 + rotY: 270.027985 + rotZ: 0.01677813 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448032 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4480': + 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: Alacrity + DragSelectable: true + GMNotes: '' + GUID: 4c0f00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Empower Self (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.6544161 + posY: 1.57417119 + posZ: 6.495031 + rotX: 359.920135 + rotY: 270.00177 + rotZ: 0.016874047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 313502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3135': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: b94d12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shards of the Void (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76 + posY: 1.41737127 + posZ: -22.4099979 + rotX: 359.987427 + rotY: 270.000061 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440627 + 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: dacbf0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fortuitous Discovery + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.31382 + posY: 1.5461663 + posZ: 37.3481064 + rotX: 359.984924 + rotY: 269.992371 + rotZ: 359.9843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 380128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3801': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: db90e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ethereal Form + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.1006126 + posY: 1.52393556 + posZ: -4.153924 + rotX: 359.924347 + rotY: 270.001984 + rotZ: 0.0104675805 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1017195287736529784/BEB850DCAA5497CC1A96E1603C0D3AFFE8B0F2BB/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Advanced + DragSelectable: true + GMNotes: '' + GUID: cf41be + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Daisy's Tote Bag + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.50849 + posY: 1.30044091 + posZ: -69.37549 + rotX: 0.0208080076 + rotY: 270.0 + rotZ: 0.0167705547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 380127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3801': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: bba97a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Healing Words + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.3107014 + posY: 1.67212927 + posZ: -4.16523552 + rotX: 359.9424 + rotY: 269.991333 + rotZ: -0.005215286 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 313603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3136': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: a53344 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Clarity of Mind (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76001 + posY: 1.41675091 + posZ: -20.109993 + rotX: 359.987427 + rotY: 270.000183 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230300 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -17524,10 +37369,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Esteemed Eschatologist + Description: '' DragSelectable: true GMNotes: '' - GUID: 1f8539 + GUID: 79287f Grid: true GridProjection: false Hands: true @@ -17538,33 +37383,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: David Renfield + Nickname: Torrent of Power SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -25.0 - posY: 1.33136892 - posZ: 64.45 - rotX: 0.0207990743 - rotY: 270.0313 - rotZ: 0.016784329 + posX: -18.2000046 + posY: 1.34057081 + posZ: 87.45 + rotX: 0.0208165441 + rotY: 269.971 + rotZ: 0.0167645477 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 235109 + CardID: 368626 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2351': + '2615': BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -17572,7 +37417,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: e55fe0 + GUID: ddee79 Grid: true GridProjection: false Hands: true @@ -17583,18 +37428,153 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: '"Get over here!" (2)' + Nickname: Stealth SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -48.9489136 - posY: 1.30322528 - posZ: -63.038887 - rotX: 0.0208085552 - rotY: 270.0 - rotZ: 0.0167713985 + posX: 24.9500046 + posY: 1.35018241 + posZ: 66.75 + rotX: 0.0208121948 + rotY: 269.988831 + rotZ: 0.0167690367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Will Try Anything Once + DragSelectable: true + GMNotes: '' + GUID: 9683d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Olive McBride + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0000019 + posY: 1.33406186 + posZ: 73.65 + rotX: 0.0207990929 + rotY: 270.0313 + rotZ: 0.0167859346 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 532700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5327': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325459410246649/7E440DAC27C35619436F500C1061D1CDFD13D012/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Tough Old Bird + DragSelectable: true + GMNotes: '' + GUID: 64ae1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Granny Orne + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5688486 + posY: 1.467045 + posZ: 80.96073 + rotX: 0.0208149515 + rotY: 269.98056 + rotZ: 0.0167634543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3790': + 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: 090fcf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Glimpse the Unthinkable (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 112.20668 + posY: 1.49268472 + posZ: 46.0736732 + rotX: 359.987427 + rotY: 269.9999 + rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -17645,7 +37625,232 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 230350 + CardID: 235133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5c25fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Grimm's Fairy Tales + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.28659 + posY: 2.84471154 + posZ: -98.70071 + rotX: 0.02080876 + rotY: 270.0 + rotZ: 0.0167703759 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232941 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Madness. + DragSelectable: true + GMNotes: '' + GUID: fb943f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Across Space and Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.3010674 + posY: 1.36172926 + posZ: -55.04807 + rotX: 0.02080917 + rotY: 270.0 + rotZ: 0.0167706218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 473800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4738': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1474318984931856599/78BA545A076F53B9CC1D092FCD49894EDE720343/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: 64e35f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Thrice-Damned Curiosity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.6902771 + posY: 3.16999316 + posZ: -80.46993 + rotX: 0.02080862 + rotY: 270.0 + rotZ: 0.01677128 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2776': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: be33f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tennessee Sour Mash + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.6968155 + posY: 1.32354212 + posZ: 49.7424278 + rotX: 0.02080729 + rotY: 269.998566 + rotZ: 0.0167727023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 375016 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3750': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a33470 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Spirit-Speaker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.6619034 + posY: 1.68719435 + posZ: -45.7441521 + rotX: 0.158040836 + rotY: 270.026367 + rotZ: 0.0115280962 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230316 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -17662,7 +37867,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: e58d2a + GUID: 80acd2 Grid: true GridProjection: false Hands: true @@ -17673,33 +37878,78 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Scrying (3) + Nickname: Forbidden Knowledge SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 80.76001 - posY: 1.41551018 - posZ: -15.5099869 - rotX: 359.987427 + posX: -25.0000019 + posY: 1.33742809 + posZ: 85.15 + rotX: 0.0207991842 + rotY: 270.0313 + rotZ: 0.01678471 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448936 + 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: Abandoned by the Gods + DragSelectable: true + GMNotes: '' + GUID: c0d236 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Empty Vessel (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6764164 + posY: 1.68283987 + posZ: -11.5100527 + rotX: 359.9201 rotY: 269.999969 - rotZ: 359.984528 + rotZ: 0.0168763418 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 230313 + CardID: 450900 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2303': + '4509': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -17707,7 +37957,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 8f3c8e + GUID: e6f2b9 Grid: true GridProjection: false Hands: true @@ -17718,41 +37968,41 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Hypnotic Gaze + Nickname: Quick Thinking (Taboo) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -21.6 - posY: 1.3312571 - posZ: 59.85 - rotX: 0.0208162144 - rotY: 269.96698 - rotZ: 0.0167607628 + posX: -49.6888733 + posY: 1.41199076 + posZ: -77.41198 + rotX: 0.02080876 + rotY: 269.999481 + rotZ: 0.0167686716 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 527400 + CardID: 235116 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2666': + '2351': BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: Basic Weakness + Description: Book of Books DragSelectable: true GMNotes: '' - GUID: 2210c1 + GUID: eac7ac Grid: true GridProjection: false Hands: true @@ -17763,24 +38013,69 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Amnesia + Nickname: Celaeno Fragments SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 74.09517 - posY: 1.505425 - posZ: 82.26855 - rotX: 0.02296656 - rotY: 270.017578 - rotZ: 0.002943524 + posX: -54.1441765 + posY: 1.8783778 + posZ: 34.7421951 + rotX: 359.9337 + rotY: 269.996918 + rotZ: 0.0130544752 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 368811 + CardID: 527235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5272': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: ab4fb3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Summoned Hound (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.6454124 + posY: 1.29864454 + posZ: -75.34238 + rotX: 0.0208087377 + rotY: 269.999756 + rotZ: 0.01677042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368836 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -17797,7 +38092,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 30f90b + GUID: d88407 Grid: true GridProjection: false Hands: true @@ -17808,18 +38103,873 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Improvised Weapon + Nickname: Lure (1) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 45.97 - posY: 1.3598361 - posZ: 73.65 - rotX: 0.0208048522 - rotY: 270.012939 - rotZ: 0.0167763215 + posX: 110.15 + posY: 1.39734626 + posZ: 27.9000111 + rotX: 359.987427 + rotY: 270.000061 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5452': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 389a34 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Backpack (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.4068222 + posY: 3.2850585 + posZ: -73.0593 + rotX: 0.0208073538 + rotY: 270.0092 + rotZ: 0.01676984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fc9e1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dig Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.76141 + posY: 1.36816335 + posZ: -57.0264244 + rotX: 0.02079995 + rotY: 270.040161 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368432 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Mortal Reminder + DragSelectable: true + GMNotes: '' + GUID: c1a687 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tooth of Eztli + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.640002 + posY: 1.336017 + posZ: 57.55 + rotX: 0.020814199 + rotY: 269.978821 + rotZ: 0.0167644545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f69e10 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Seeking Answers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.23999381 + posY: 1.34398425 + posZ: 80.55001 + rotX: 0.0208114088 + rotY: 269.986359 + rotZ: 0.0167681742 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 261701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2617': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: efb09b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Double or Nothing + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 31.7500019 + posY: 1.35736465 + posZ: 82.85 + rotX: 0.0208079945 + rotY: 270.000122 + rotZ: 0.0167725533 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 380026 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3800': + 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: d753d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Momentum (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.0951538 + posY: 1.67418337 + posZ: -0.8636197 + rotX: 359.909546 + rotY: 270.009155 + rotZ: 0.006574045 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 293015 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2930': + 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: e674e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fortune or Fate (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.4155731 + posY: 1.52457511 + posZ: -53.7638931 + rotX: 0.0229964554 + rotY: 270.012634 + rotZ: 0.0177416671 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226337 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f60263 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Extra Ammunition (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.40168822 + posZ: 23.430027 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277709 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2777': + 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: Aspiring Actor + DragSelectable: true + GMNotes: '' + GUID: 9df9df + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Henry Wan + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.642086 + posY: 1.33200514 + posZ: 73.6239853 + rotX: 0.020809764 + rotY: 269.999359 + rotZ: 0.0167665128 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: da7613 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dark Prophecy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6000023 + posY: 1.33395016 + posZ: 69.05 + rotX: 0.0208175573 + rotY: 269.96698 + rotZ: 0.01676294 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 60.6699944 + posY: 1.36921418 + posZ: 87.45 + rotX: 0.0208074879 + rotY: 270.000732 + rotZ: 0.0167732 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 80628f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Inspiring Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.0300045 + posY: 1.3523289 + posZ: 85.15 + rotX: 0.0208112579 + rotY: 269.987427 + rotZ: 0.0167698432 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 438122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4381': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Basic Weakness + DragSelectable: true + GMNotes: '' + GUID: ea0fa1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unspeakable Oath (Cowardice) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.3509445 + posY: 1.51659238 + posZ: 51.50479 + rotX: 0.0444448479 + rotY: 269.9969 + rotZ: 180.044754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 507500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814239458/85F226D08F99937DFC8CCF7225C563DD8817CAA5/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ce4d28 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Scrapper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.201458 + posY: 3.16969776 + posZ: -67.78467 + rotX: 0.0208082274 + rotY: 270.000366 + rotZ: 0.0167714 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274006 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2740': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d6f8d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tony's Quarry + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.39597 + posY: 1.36798072 + posZ: -49.70266 + rotX: 0.0208089426 + rotY: 269.999939 + rotZ: 0.016770659 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440720 + 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: 26a3bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Stealth (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.95461 + posY: 1.54556274 + posZ: 29.33836 + rotX: 359.9763 + rotY: 269.978271 + rotZ: 359.9808 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369945 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3699': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fe68c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Dirge of Reason + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 85.22855 + posY: 1.54189241 + posZ: -58.0838356 + rotX: 6.124808 + rotY: 269.9939 + rotZ: 0.005484572 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448838 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4488': + 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: ff59dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Surprising Find (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.5645676 + posY: 1.299145 + posZ: -77.45552 + rotX: 0.0208085515 + rotY: 270.0 + rotZ: 0.016771242 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368842 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: be4abe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Survival Instinct (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.40230942 + posZ: 9.500001 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -17870,7 +39020,7 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 226322 + CardID: 226330 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -17887,7 +39037,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 4d971e + GUID: 12660b Grid: true GridProjection: false Hands: true @@ -17898,33 +39048,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Survival Knife + Nickname: .45 Automatic SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 9.230005 - posY: 1.3491863 - posZ: 82.85 - rotX: 0.0208167434 - rotY: 269.9694 - rotZ: 0.0167635381 + posX: 9.230007 + posY: 1.34312713 + posZ: 62.15 + rotX: 0.0208157543 + rotY: 269.969421 + rotZ: 0.016761912 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 430650 + CardID: 378618 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2915': + '3786': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -17932,7 +39082,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 814ce2 + GUID: d6eda3 Grid: true GridProjection: false Hands: true @@ -17943,15 +39093,375 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Eidetic Memory (3) + Nickname: Agency Backup (5) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 88.05002 - posY: 1.4114275 - posZ: -6.30998325 + posX: 112.024666 + posY: 1.39823854 + posZ: 23.0658474 + rotX: 359.987427 + rotY: 269.999481 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 537609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5376': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Weakness + DragSelectable: true + GMNotes: '' + GUID: 6cbc01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: The Bell Tolls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.8913 + posY: 1.30483675 + posZ: -55.12381 + rotX: 0.0208084658 + rotY: 269.999969 + rotZ: 0.01677108 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + 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: 66b7d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Well Connected + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9500046 + posY: 1.35287535 + posZ: 75.95 + rotX: 0.02081098 + rotY: 269.988831 + rotZ: 0.0167695135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 377244 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3772': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 86feae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Call of the Unknown + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6113453 + posY: 3.17495871 + posZ: -96.34451 + rotX: 0.0208080951 + rotY: 270.0 + rotZ: 0.0167711359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368861 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: The Forgotten Daughter + DragSelectable: true + GMNotes: '' + GUID: fb9dbb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Aquinnah (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.149994 + posY: 1.41595781 + posZ: -41.1000137 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cdd6aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hired Muscle (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.75 + posY: 1.39959192 + posZ: 25.60001 + rotX: 359.987427 + rotY: 269.9998 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 431425 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4314': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 527f1c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hospital Debts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.1214066 + posY: 1.30226815 + posZ: -71.05752 + rotX: 0.0208089035 + rotY: 270.000061 + rotZ: 0.0167712178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a5c780 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Enraptured + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.2000046 + posY: 1.33922434 + posZ: 82.85 + rotX: 0.0208174363 + rotY: 269.971 + rotZ: 0.0167632867 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226345 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: eea4ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Well Prepared (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.40789211 + posZ: 0.4300183 rotX: 359.987427 rotY: 270.0 rotZ: 359.984558 @@ -18005,187 +39515,7 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 440926 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4409': - 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: ef7c11 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Solemn Vow - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.1418 - posY: 1.403798 - posZ: 21.0005112 - rotX: 359.9877 - rotY: 270.0044 - rotZ: 359.9829 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 526500 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5265': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1343712298674144035/5A32123532933F20C391D790A1D0CF3F2E260573/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6b130d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Evidence! (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.4792976 - posY: 3.17139268 - posZ: -66.93865 - rotX: 0.0208028425 - rotY: 270.0188 - rotZ: 0.0167778488 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235116 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2351': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Book of Books - DragSelectable: true - GMNotes: '' - GUID: eac7ac - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Celaeno Fragments - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.1441765 - posY: 1.8783778 - posZ: 34.7421951 - rotX: 359.9337 - rotY: 269.996918 - rotZ: 0.0130544752 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226309 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2db518 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Evidence! - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6300049 - posY: 1.34907448 - posZ: 78.25 - rotX: 0.0207955912 - rotY: 270.027039 - rotZ: 0.0167759154 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230343 + CardID: 230355 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -18202,7 +39532,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 4224db + GUID: b3ce16 Grid: true GridProjection: false Hands: true @@ -18213,1462 +39543,22 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Time Warp (2) + Nickname: Shrivelling (3) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: posX: 80.76002 - posY: 1.41054726 - posZ: 2.89002085 + posY: 1.41985285 + posZ: -31.6099911 rotX: 359.987427 - rotY: 270.000244 + rotY: 270.000153 rotZ: 359.984558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' -- Autoraise: true - CardID: 444021 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4408': - 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: '' - DragSelectable: true - GMNotes: '' - GUID: 1e9213 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Storm of Spirits (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 92.9545746 - posY: 1.56445456 - posZ: 24.95834 - rotX: 359.985535 - rotY: 270.028625 - rotZ: 359.981476 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 371565 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3715': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hour of the Huntress - DragSelectable: true - GMNotes: '' - GUID: c729ab - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Green Man Medallion - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 76.55286 - posY: 1.52031779 - posZ: -49.5625725 - rotX: 0.0170907769 - rotY: 270.023438 - rotZ: 0.0156170158 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315252 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 074858 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ace in the Hole (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.41262 - posZ: -22.7000065 - rotX: 359.987427 - rotY: 269.999939 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235135 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2351': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a177db - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Quick Learner (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.02678 - posY: 2.485092 - posZ: -74.1366 - rotX: 0.0 - rotY: 270.0 - rotZ: 22.62915 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368415 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3684': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44cf4a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: No Stone Unturned - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.3596878 - posY: 3.53277922 - posZ: -65.68791 - rotX: 0.0166730285 - rotY: 269.999664 - rotZ: 180.035721 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448837 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4488': - 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: 8a0060 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Old Book of Lore (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -34.6117477 - posY: 2.845372 - posZ: -123.871094 - rotX: 0.0208082739 - rotY: 269.999939 - rotZ: 0.0167707168 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315256 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: No-Nonsense Archaeologist - DragSelectable: true - GMNotes: '' - GUID: 8bec05 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lola Santiago (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.41510141 - posZ: -31.9000053 - rotX: 359.987427 - rotY: 269.999817 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368504 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 679b13 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Manual Dexterity - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 64.07 - posY: 1.36640954 - posZ: 73.65 - rotX: 0.0208091382 - rotY: 269.997284 - rotZ: 0.0167735945 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 528300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5283': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1343712472682594049/641C4EF294A9321FDD632C8B79FA0C6A744595D2/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 042a0c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Streetwise - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -62.5475235 - posY: 1.301032 - posZ: -53.66011 - rotX: 0.0208082329 - rotY: 269.999939 - rotZ: 0.01677158 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545200 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5efc92 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Blood Eclipse (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -57.8165779 - posY: 3.28376937 - posZ: -77.12867 - rotX: 0.0208068 - rotY: 270.0092 - rotZ: 0.0167717934 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368706 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2616': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: cc6b14 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Daring Maneuver - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500023 - posY: 1.35612988 - posZ: 82.85 - rotX: 0.0208152272 - rotY: 269.974884 - rotZ: 0.01676414 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447633 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4476': - 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: b3cad4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Daredevil (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.17774 - posY: 1.29656863 - posZ: -83.01471 - rotX: 0.0208081063 - rotY: 270.0001 - rotZ: 0.0167712811 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230303 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: cd0ac1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fearless - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -18.2000027 - posY: 1.33787787 - posZ: 78.25 - rotX: 0.0208174773 - rotY: 269.971 - rotZ: 0.0167640541 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 526000 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5260': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1343712298674071454/4597D8381A1403A6EADC88770B3FFD1933874927/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 20ff08 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Voice of Ra - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -62.45269 - posY: 12.3024073 - posZ: -60.60305 - rotX: 0.0208035652 - rotY: 270.0185 - rotZ: 0.0167782921 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430640 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7b42b6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: In the Know (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.40522373 - posZ: 16.6900253 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379931 - 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: 98c5af - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dream-Enhancing Serum - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.3515034 - posY: 1.525713 - posZ: 3.167102 - rotX: 359.920624 - rotY: 269.986816 - rotZ: 0.0123827262 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235132 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2351': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a4e44a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: .18 Derringer (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.0661659 - posY: 2.484017 - posZ: -77.7534561 - rotX: 0.0 - rotY: 270.0 - rotZ: 22.62915 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440724 - 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: cdbb37 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Easy Mark (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 93.19893 - posY: 1.56512642 - posZ: 29.48283 - rotX: 359.987854 - rotY: 269.9784 - rotZ: 359.9843 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440813 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2699': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: dd3d09 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dark Pact - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 78.90516 - posY: 1.52898574 - posZ: 71.47087 - rotX: 0.01666248 - rotY: 269.9882 - rotZ: 0.021478314 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379555 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3795': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f4bac6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Detective's Colt 1911s - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 6.403568 - posY: 1.378892 - posZ: -71.7250748 - rotX: 0.0207481515 - rotY: 269.99942 - rotZ: 0.0167482235 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440627 - 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: dacbf0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fortuitous Discovery - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.31382 - posY: 1.5461663 - posZ: 37.3481064 - rotX: 359.984924 - rotY: 269.992371 - rotZ: 359.9843 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230305 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 45d2d2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Uncage the Soul - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -21.6000023 - posY: 1.3366431 - posZ: 78.25 - rotX: 0.02081758 - rotY: 269.967 - rotZ: 0.0167609118 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 314000 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3140': - 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: 53d765 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Blood Eclipse (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.41409588 - posZ: -22.5699883 - rotX: 359.987427 - rotY: 269.999939 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368509 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 510c0d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Emergency Cache - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 60.6699944 - posY: 1.36921418 - posZ: 87.45 - rotX: 0.0208074879 - rotY: 270.000732 - rotZ: 0.0167732 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315249 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f8dc01 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Skeleton Key (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.41075873 - posZ: -15.8000069 - rotX: 359.987427 - rotY: 269.999817 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448840 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4488': - 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: d6085d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Eye of Truth (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.90797 - posY: 1.296707 - posZ: -82.87657 - rotX: 0.0208083577 - rotY: 270.0 - rotZ: 0.01677057 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431007 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2737': - 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: '683937' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Delay the Inevitable - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6300068 - posY: 1.34368849 - posZ: 59.8500023 - rotX: 0.0207936484 - rotY: 270.027039 - rotZ: 0.0167745743 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 378018 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3780': - 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: d27d12 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"You owe me one!"' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 46.0198975 - posY: 1.3575114 - posZ: 65.64583 - rotX: 0.0208127461 - rotY: 269.982056 - rotZ: 0.01676411 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230361 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7a33b2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Shrivelling (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.75998 - posY: 1.37819648 - posZ: -45.41002 - rotX: 0.0208078716 - rotY: 269.999878 - rotZ: 0.0167721286 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 313301 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3133': - 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: 5f33be - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Handcuffs - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.230006 - posY: 1.34649336 - posZ: 73.65001 - rotX: 0.0208175331 - rotY: 269.969421 - rotZ: 0.0167613383 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226325 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 82775a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bandolier - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.230005 - posY: 1.34716654 - posZ: 75.9500046 - rotX: 0.0208153687 - rotY: 269.9694 - rotZ: 0.01676186 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379253 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3792': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7f1b48 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hypnotic Therapy - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 7.17400074 - posY: 1.52685761 - posZ: -65.01166 - rotX: 0.0271723326 - rotY: 270.0131 - rotZ: -0.00206514588 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' - Autoraise: true CardID: 368802 ColorDiffuse: @@ -19714,231 +39604,6 @@ ContainedObjects: scaleY: 1.0 scaleZ: 1.0 XmlUI: '' -- Autoraise: true - CardID: 466112 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4661': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: The Exotic Morgana - DragSelectable: true - GMNotes: '' - GUID: 692ced - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Molly Maxwell - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -41.0150757 - posY: 1.30660939 - posZ: 55.5211258 - rotX: 0.01782124 - rotY: 269.9919 - rotZ: 0.016412884 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 449034 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4490': - 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: b45c82 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Garrote Wire (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.2366447 - posY: 1.30114961 - posZ: -71.01385 - rotX: 0.0208082478 - rotY: 270.000031 - rotZ: 0.0167703424 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 232900 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2329': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: The Head Librarian - DragSelectable: true - GMNotes: '' - GUID: 66197b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dr. Henry Armitage - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -43.2092628 - posY: 2.37336755 - posZ: -67.14607 - rotX: 0.020810511 - rotY: 270.000031 - rotZ: 0.0167691223 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 533500 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5335': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325459410602626/4BF3C48E230C901EB6C44325F67FEE271A612D74/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6750db - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Feed the Mind - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 19.2841282 - posY: 1.36448312 - posZ: 53.3411674 - rotX: 0.0208057463 - rotY: 270.0089 - rotZ: 0.0167737454 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 378617 - 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: 0ab574 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mk 1 Grenades (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.6650848 - posY: 1.29916561 - posZ: -73.53806 - rotX: 0.0208087023 - rotY: 270.000061 - rotZ: 0.01677142 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' - Autoraise: true CardID: 226332 ColorDiffuse: @@ -19985,817 +39650,7 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 448936 - 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: Abandoned by the Gods - DragSelectable: true - GMNotes: '' - GUID: c0d236 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Empty Vessel (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -23.6764164 - posY: 1.68283987 - posZ: -11.5100527 - rotX: 359.9201 - rotY: 269.999969 - rotZ: 0.0168763418 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 531600 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5316': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325328768801133/81D591BD955E01274ED85485EA83942683BFE1A4/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: add8f0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Sneak By - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.2102928 - posY: 1.30273163 - posZ: -51.9938164 - rotX: 0.0208085049 - rotY: 270.0 - rotZ: 0.0167711414 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 296500 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2965': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Ally. Believer. - DragSelectable: true - GMNotes: '' - GUID: 1e7f1b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Abbess Allegria Di Biase - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.02915 - posY: 1.77067351 - posZ: 4.416883 - rotX: 2.0594604 - rotY: 270.102448 - rotZ: 3.75599837 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230340 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 644af9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Arcane Studies (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.40868592 - posZ: 9.790023 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440814 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2699': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: ba2ae1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Doomed - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 78.9933 - posY: 1.51519966 - posZ: 71.2607346 - rotX: 0.0213949829 - rotY: 269.999878 - rotZ: 0.0158619713 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368422 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Unidentified - DragSelectable: true - GMNotes: '' - GUID: 565b6b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Strange Solution - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -6.639993 - posY: 1.34274948 - posZ: 80.55001 - rotX: 0.0208139587 - rotY: 269.978821 - rotZ: 0.0167658776 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374014 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2098': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: dfd48b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Painted World - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 7.31871462 - posY: 0.622307062 - posZ: -49.1846924 - rotX: -5.89429e-06 - rotY: 269.999939 - rotZ: 359.991943 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368628 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: fe2db3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: .41 Derringer - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500065 - posY: 1.34816265 - posZ: 59.8500023 - rotX: 0.0208115634 - rotY: 269.9888 - rotZ: 0.0167687647 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 529500 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5295': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1479946668214252490/BD956B43A8512B84851B0668DD3CE674CF5E3D7F/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ba9d3d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Taunt (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.1162758 - posY: 1.30353367 - posZ: -46.88924 - rotX: 0.0208085887 - rotY: 270.000183 - rotZ: 0.0167712569 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 295501 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2955': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a42f33 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bauta - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.87838 - posY: 3.16514683 - posZ: -98.8938751 - rotX: 0.0208086148 - rotY: 269.999634 - rotZ: 0.01677102 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235136 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2351': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 682e84 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Old Keyring - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.55525 - posY: 2.84518933 - posZ: -99.01316 - rotX: 0.0208082441 - rotY: 270.000031 - rotZ: 0.0167707447 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230356 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 07bc04 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Grotesque Statue (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.42047322 - posZ: -33.90999 - rotX: 359.987427 - rotY: 270.0001 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368831 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3688': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: fc9e1b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dig Deep - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -42.76141 - posY: 1.36816335 - posZ: -57.0264244 - rotX: 0.02079995 - rotY: 270.040161 - rotZ: 180.016785 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 261704 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2617': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '857238' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hatchet Man - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 31.7500019 - posY: 1.35534489 - posZ: 75.95 - rotX: 0.020807296 - rotY: 270.0001 - rotZ: 0.016773833 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368859 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8837ff - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: True Survivor (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.41409659 - posZ: -34.2 - rotX: 359.987427 - rotY: 269.999847 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 371907 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3719': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 033a35 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Rex's Curse - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 76.5889359 - posY: 1.49881017 - posZ: -49.1716652 - rotX: 0.0157422461 - rotY: 270.000061 - rotZ: 0.0127807 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 232332 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2323': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: A Gift Unlooked For - DragSelectable: true - GMNotes: '' - GUID: f295d9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Clasp of Black Onyx - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -32.1468964 - posY: 2.3714323 - posZ: -85.77982 - rotX: 0.0208088849 - rotY: 270.0 - rotZ: 0.01677082 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235111 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2351': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c021fd - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Counterpunch - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.0357437 - posY: 1.29630971 - posZ: -86.55692 - rotX: 0.0208088271 - rotY: 270.000031 - rotZ: 0.0167718269 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 380127 + CardID: 380125 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -20812,7 +39667,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: bba97a + GUID: 0d926f Grid: true GridProjection: false Hands: true @@ -20823,4704 +39678,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Healing Words + Nickname: Scroll of Prophecies SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 20.3107014 - posY: 1.67212927 - posZ: -4.16523552 - rotX: 359.9424 - rotY: 269.991333 - rotZ: -0.005215286 + posX: 20.18582 + posY: 1.68684137 + posZ: -4.21236 + rotX: 359.933044 + rotY: 270.002258 + rotZ: 0.0111596575 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 315257 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Stealing Time - DragSelectable: true - GMNotes: '' - GUID: 62d930 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Gold Pocket Watch (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.749992 - posY: 1.41572177 - posZ: -34.200016 - rotX: 359.987427 - rotY: 269.999817 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448613 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4486': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: A Liar, or a Prophet, or Both - DragSelectable: true - GMNotes: '' - GUID: 16e57b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Black Cat (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -30.2241611 - posY: 1.69086015 - posZ: -15.2800369 - rotX: 359.9201 - rotY: 269.999878 - rotZ: 0.0168764312 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368425 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ba16cb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Medical Texts - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -6.640003 - posY: 1.34072971 - posZ: 73.65 - rotX: 0.0208145548 - rotY: 269.978821 - rotZ: 0.0167659223 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266704 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2667': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011565208488842326/3FF786B2685526D7475E5EE6F2621F8853BBCEA3/ - NumHeight: 2 - NumWidth: 4 - Type: 0 - UniqueBack: false - Description: Spell. Blessed. - DragSelectable: true - GMNotes: '' - GUID: 39f9ef - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Tides of Fate - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.31582 - posY: 2.00366163 - posZ: 34.2847939 - rotX: 359.934143 - rotY: 269.996277 - rotZ: 0.0139406556 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368810 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3688': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ce0dd5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lucky! - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -41.5178833 - posY: 1.36590815 - posZ: -66.2731552 - rotX: 0.0207964685 - rotY: 270.040344 - rotZ: 180.016785 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431110 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2698': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 88a9b3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Overzealous - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 79.34387 - posY: 1.521027 - posZ: 71.2091 - rotX: 0.0200308 - rotY: 269.999939 - rotZ: 0.0167929437 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368405 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d4fd4a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Shortcut - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.23999429 - posY: 1.34533072 - posZ: 85.15001 - rotX: 0.0208120123 - rotY: 269.986359 - rotZ: 0.0167688522 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 537612 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: dc5b38 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Price of Failure - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.40347 - posY: 1.3066 - posZ: -49.7053833 - rotX: 0.0208091587 - rotY: 269.999969 - rotZ: 0.0167716891 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 530500 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5305': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1479946880515191128/2542787F8FE126F466BC02864E2B9BBB35790C53/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2c2972 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Guts (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -57.949 - posY: 1.30257463 - posZ: -54.0950356 - rotX: 0.0208147839 - rotY: 269.978973 - rotZ: 0.0167635288 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277608 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2776': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2c6509 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: .45 Thompson - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -30.922472 - posY: 1.324889 - posZ: 49.66081 - rotX: 0.0208094623 - rotY: 269.993744 - rotZ: 0.016770605 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527238 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5272': - 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: '' - DragSelectable: true - GMNotes: '' - GUID: b4b991 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Shining Trapezohedron (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.4998856 - posY: 1.297716 - posZ: -78.69504 - rotX: 0.0208082087 - rotY: 270.000061 - rotZ: 0.01677083 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230321 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Will Try Anything Once - DragSelectable: true - GMNotes: '' - GUID: 9683d0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Olive McBride - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.0000019 - posY: 1.33406186 - posZ: 73.65 - rotX: 0.0207990929 - rotY: 270.0313 - rotZ: 0.0167859346 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 526800 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5268': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1343712472677893625/E35C1EC307E1D4E7747841880A59A144E2991D3F/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 90e0af - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Library Docent (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -55.793808 - posY: 3.17063713 - posZ: -65.03686 - rotX: 0.0208078921 - rotY: 270.0013 - rotZ: 0.0167711489 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 261101 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2611': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d2663c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hemispheric Map (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 116.94 - posY: 1.39895689 - posZ: 16.4000015 - rotX: 359.987427 - rotY: 269.999817 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368502 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5ab9f4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Overpower - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 64.07 - posY: 1.367756 - posZ: 78.25 - rotX: 0.0208083075 - rotY: 269.997284 - rotZ: 0.0167704355 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368826 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ee20c9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Newspaper - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 42.57 - posY: 1.35860133 - posZ: 73.65 - rotX: 0.0208154488 - rotY: 269.9702 - rotZ: 0.01676301 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527700 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5277': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1331327576938187570/A565D42A854F1569E0CBE9E56EC5738DE7E517E5/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 96ed77 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Sharpshooter (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -60.91964 - posY: 12.3025351 - posZ: -60.43129 - rotX: 0.0208032522 - rotY: 270.018616 - rotZ: 0.01677781 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368846 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 439af2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lucky! (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40479088 - posZ: 0.299998045 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 292915 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2929': - 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: Rogue - DragSelectable: true - GMNotes: '' - GUID: d4dbc7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: .45 Thompson (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -42.28594 - posY: 1.36603451 - posZ: -55.2474 - rotX: 0.0208098963 - rotY: 270.000031 - rotZ: 0.0167697147 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368426 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8f91ce - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Research Librarian - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -6.640003 - posY: 1.34005642 - posZ: 71.35 - rotX: 0.0208149925 - rotY: 269.978821 - rotZ: 0.0167664737 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274100 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2741': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: The Murder Weapon - DragSelectable: true - GMNotes: '' - GUID: d71f11 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bloodstained Dagger - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.4621468 - posY: 2.36952639 - posZ: -73.6884155 - rotX: 0.0211172719 - rotY: 270.0 - rotZ: 0.0169384666 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 473700 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4737': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1474318984931858827/B4C31886CADC19F707BFDC4902DC652DAF878FBE/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a0b9a7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Parallel Fates - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -62.817688 - posY: 12.3020468 - posZ: -61.2843323 - rotX: 0.0208037477 - rotY: 270.0185 - rotZ: 0.0167784188 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 537608 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5376': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: 85e7d9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Accursed Fate - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.6443253 - posY: 1.30579412 - posZ: -52.1594467 - rotX: 0.0208084453 - rotY: 269.999969 - rotZ: 0.0167711936 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448033 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4480': - 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: Acuity - DragSelectable: true - GMNotes: '' - GUID: 3d22c4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Empower Self (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -13.2720909 - posY: 1.57276511 - posZ: 3.53009033 - rotX: 359.9201 - rotY: 270.0217 - rotZ: 0.01684677 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368840 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Lost Son of Earth - DragSelectable: true - GMNotes: '' - GUID: a7358f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Yaotl (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40106857 - posZ: 14.1000023 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379618 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3796': - 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: '' - DragSelectable: true - GMNotes: '' - GUID: 060943 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sixth Sense (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 92.56764 - posY: 1.41171122 - posZ: -11.039938 - rotX: 359.987427 - rotY: 269.999329 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 444260 - 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/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f08934 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dark Insight - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 4.14029932 - posY: 1.58196938 - posZ: -77.8714752 - rotX: 7.61785269 - rotY: 269.935059 - rotZ: 0.0212708171 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 292816 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2928': - 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: db2c81 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Telescopic Sight (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.501873 - posY: 1.51489115 - posZ: -53.5625954 - rotX: 0.02066103 - rotY: 270.0146 - rotZ: 0.015778644 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230324 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9e4505 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Arcane Studies - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.0 - posY: 1.3320421 - posZ: 66.75 - rotX: 0.020799553 - rotY: 270.0313 - rotZ: 0.0167842377 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 449035 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4490': - 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: Syndicate Assassin - DragSelectable: true - GMNotes: '' - GUID: 97a795 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Delilah O'Rourke (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -30.2241936 - posY: 1.69983244 - posZ: 15.1899557 - rotX: 359.9201 - rotY: 269.9999 - rotZ: 0.0168750733 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368420 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Untranslated - DragSelectable: true - GMNotes: '' - GUID: cbfc12 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Archaic Glyphs - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -6.63999367 - posY: 1.344096 - posZ: 85.15001 - rotX: 0.0208136719 - rotY: 269.978821 - rotZ: 0.0167661384 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 528800 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5288': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1479946668213573646/CCC574E14479B8E06748DE612AEF492C99B3E681/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a49b7c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Eldritch Inspiration (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.9842873 - posY: 1.30115819 - posZ: -53.9275742 - rotX: 0.0208085142 - rotY: 270.000183 - rotZ: 0.0167711452 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 371466 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3714': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 46812e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sacrificial Beast - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 76.95408 - posY: 1.51747715 - posZ: -49.6841774 - rotX: 0.018425867 - rotY: 270.021179 - rotZ: 0.02911497 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430906 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2728': - 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: '' - DragSelectable: true - GMNotes: '' - GUID: 493b03 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Prophesy - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -18.2000046 - posY: 1.33989763 - posZ: 85.15 - rotX: 0.0208171364 - rotY: 269.970978 - rotZ: 0.0167635083 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 438123 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4381': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: f6aba5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Unspeakable Oath (Curiosity) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -23.0862484 - posY: 2.377057 - posZ: -75.92746 - rotX: 0.0 - rotY: 270.0 - rotZ: 0.0 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368431 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 063fd8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Old Book of Lore - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -6.640002 - posY: 1.33669019 - posZ: 59.85 - rotX: 0.02081435 - rotY: 269.978821 - rotZ: 0.0167656858 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 295502 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2955': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0f54e7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Medico Della Peste - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.5321274 - posY: 1.29888833 - posZ: -75.8911 - rotX: 0.0208082646 - rotY: 270.0001 - rotZ: 0.0167710669 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230326 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5558f1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mists of R'lyeh - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.0 - posY: 1.33069563 - posZ: 62.15 - rotX: 0.020798916 - rotY: 270.0313 - rotZ: 0.01678454 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 457600 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4576': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690737854184/3A2EDA5D13EACD1036D71478CA10C38A93D06B94/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3a4576 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Grete Wagner - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.48749 - posY: 3.17158031 - posZ: -66.49329 - rotX: 0.0208035633 - rotY: 270.0185 - rotZ: 0.01677837 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 505300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5053': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814138232/EABA901D07E4AC22EEA62AE5CBC584B5CA319CEF/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 390a86 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Dynamite Blast (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -56.5154076 - posY: 3.17006421 - posZ: -66.3056641 - rotX: 0.0208035428 - rotY: 270.018555 - rotZ: 0.01677846 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431205 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2667': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: b2ef43 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Indebted - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 79.12614 - posY: 1.52719057 - posZ: 71.0024948 - rotX: 0.0208145846 - rotY: 270.0049 - rotZ: 0.0171645433 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368507 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 45bdf0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Desperate Search - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 64.07 - posY: 1.3684293 - posZ: 80.55 - rotX: 0.02080979 - rotY: 269.997284 - rotZ: 0.0167730879 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 444451 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3801': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3b8cb7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mystifying Song - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 4.54795074 - posY: 1.51128662 - posZ: -84.96509 - rotX: 5.05340624 - rotY: 270.0641 - rotZ: 0.0321298726 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 262201 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2622': - 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: Minds in Harmony - DragSelectable: true - GMNotes: '' - GUID: 9c56d3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ancient Stone (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05001 - posY: 1.41825175 - posZ: -31.609993 - rotX: 359.987427 - rotY: 270.000122 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 314905 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3149': - 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: 70772b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Oops! (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40665209 - posZ: -6.60000372 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226305 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 36c0cb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"Let me handle this!"' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6300039 - posY: 1.35176742 - posZ: 87.45 - rotX: 0.0207943413 - rotY: 270.027039 - rotZ: 0.01677379 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226321 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 097dcc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Blackjack - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.230005 - posY: 1.3498596 - posZ: 85.15 - rotX: 0.0208169557 - rotY: 269.9694 - rotZ: 0.0167641137 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315239 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2fe723 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cat Burglar (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.40269375 - posZ: 14.1000032 - rotX: 359.987427 - rotY: 269.999939 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374418 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3744': - 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: 869d4c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Trial by Fire - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 67.71913 - posY: 1.365251 - posZ: 65.1638641 - rotX: 0.0208075251 - rotY: 269.9998 - rotZ: 0.01677034 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431425 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4314': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 527f1c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hospital Debts - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -45.1214066 - posY: 1.30226815 - posZ: -71.05752 - rotX: 0.0208089035 - rotY: 270.000061 - rotZ: 0.0167712178 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430639 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Unidentified - DragSelectable: true - GMNotes: '' - GUID: 9bc46e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ancient Stone (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.40460336 - posZ: 18.99002 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 507800 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5078': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814241153/68D34A25980C036008C98BFC5E26FA4C38F89717/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 04de70 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Unexpected Courage (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -56.8062553 - posY: 3.17013669 - posZ: -66.17587 - rotX: 0.0208084434 - rotY: 270.0008 - rotZ: 0.0167706851 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431006 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2737': - 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: 4e1d91 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Steadfast - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.0300045 - posY: 1.34963584 - posZ: 75.95 - rotX: 0.0208116733 - rotY: 269.987427 - rotZ: 0.0167684965 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226343 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d708d9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Physical Training (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.40665138 - posZ: 5.03001928 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 371704 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3717': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 66d810 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Zoey's Cross - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -62.3385239 - posY: 1.35815763 - posZ: -56.8936729 - rotX: 0.0154275233 - rotY: 270.0 - rotZ: 0.01495364 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545205 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8dda2d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Colt Vest Pocket (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.0583534 - posY: 3.16848969 - posZ: -77.61848 - rotX: 0.0208065715 - rotY: 270.0092 - rotZ: 0.0167740323 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 377141 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3771': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 275dc3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bought in Blood - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 27.31953 - posY: 1.35254145 - posZ: -66.75125 - rotX: 0.0208099447 - rotY: 269.994476 - rotZ: 0.0167683 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 507500 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5075': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814239458/85F226D08F99937DFC8CCF7225C563DD8817CAA5/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ce4d28 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Scrapper - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -57.201458 - posY: 3.16969776 - posZ: -67.78467 - rotX: 0.0208082274 - rotY: 270.000366 - rotZ: 0.0167714 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 371806 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3718': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4156cf - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Search for the Truth - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 76.2037659 - posY: 1.48903632 - posZ: -49.09441 - rotX: 0.0161498226 - rotY: 270.00058 - rotZ: 0.0117214322 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 295503 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2955': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 080d4a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Pantalone - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.1961975 - posY: 1.303426 - posZ: -60.8053932 - rotX: 0.0208087284 - rotY: 270.0 - rotZ: 0.01677115 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226358 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b1ad65 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: M1918 BAR (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87001 - posY: 1.41781831 - posZ: -36.36999 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230307 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: edd34a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Quantum Flux - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -21.6000023 - posY: 1.33529663 - posZ: 73.65 - rotX: 0.02081925 - rotY: 269.967 - rotZ: 0.016761573 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447835 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4478': - 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: Dreams of a Madman - DragSelectable: true - GMNotes: '' - GUID: e5f9cb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dream Diary (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.5946255 - posY: 1.59327507 - posZ: 14.8424034 - rotX: 359.920135 - rotY: 269.996155 - rotZ: 0.0168813411 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368861 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: The Forgotten Daughter - DragSelectable: true - GMNotes: '' - GUID: fb9dbb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Aquinnah (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.149994 - posY: 1.41595781 - posZ: -41.1000137 - rotX: 359.987427 - rotY: 269.999939 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 372011 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3720': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2c901b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Final Rhapsody - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 86.87249 - posY: 1.621133 - posZ: -58.3100052 - rotX: 0.0415969267 - rotY: 270.006866 - rotZ: 359.9695 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230354 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 296dc8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Book of Shadows (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.41923249 - posZ: -29.3099937 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 261102 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2611': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5b14dc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Thermos - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 57.27 - posY: 1.36259353 - posZ: 69.05 - rotX: 0.0208096933 - rotY: 269.99408 - rotZ: 0.01677326 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 380228 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3802': - 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: Wrong Place, Wrong Time - DragSelectable: true - GMNotes: '' - GUID: b8380d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Jessica Hyde (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.11804 - posY: 1.68581808 - posZ: -7.75991 - rotX: 359.9265 - rotY: 270.0019 - rotZ: 0.0105229123 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430652 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Guiding Stones - DragSelectable: true - GMNotes: '' - GUID: a14a11 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Archaic Glyphs (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.41328871 - posZ: -13.2099848 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368623 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 68744b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hard Knocks - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500046 - posY: 1.35220218 - posZ: 73.65 - rotX: 0.02081169 - rotY: 269.98877 - rotZ: 0.0167679638 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 377436 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3774': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0e4a82 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Codex of Ages - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.3793259 - posY: 2.1848042 - posZ: -94.20157 - rotX: 0.02080714 - rotY: 270.000854 - rotZ: 0.0167760067 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 538609 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5386': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0de10c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: False Awakening - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.3814354 - posY: 3.52287769 - posZ: -65.7089539 - rotX: 0.0125160087 - rotY: 270.000122 - rotZ: 179.900925 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 449811 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4498': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ad24aa - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scrapper (3) (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.8816071 - posY: 1.40227866 - posZ: -77.45251 - rotX: 0.0208089687 - rotY: 269.9995 - rotZ: 0.0167749319 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368854 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c803ba - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Infighting (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.41099477 - posZ: -22.7000084 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 497000 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4970': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734369975/99D02D2FC7DDB1D02D8E9E91EDE42261E6AD2900/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: 50dd43 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Tommy Malloy - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -46.01433 - posY: 3.17131829 - posZ: -76.4275742 - rotX: 0.02080885 - rotY: 270.000061 - rotZ: 0.0167704932 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277605 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2776': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: be33f5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Tennessee Sour Mash - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -34.6968155 - posY: 1.32354212 - posZ: 49.7424278 - rotX: 0.02080729 - rotY: 269.998566 - rotZ: 0.0167727023 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440622 - 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: 96a440 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Gravedigger's Shovel (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.45989 - posY: 1.56187952 - posZ: 37.3573074 - rotX: 359.9887 - rotY: 269.9923 - rotZ: 359.98288 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430644 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 23c3e5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hyperawareness (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.40770531 - posZ: 7.49002075 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274010 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2740': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: My Muse - DragSelectable: true - GMNotes: '' - GUID: ea0007 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Patrice's Violin - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.38859 - posY: 1.48937368 - posZ: -50.0725479 - rotX: 0.0202874634 - rotY: 270.019684 - rotZ: 0.0154213235 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448034 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4480': - 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: Lost in a Dream - DragSelectable: true - GMNotes: '' - GUID: 9f76ec - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Twila Katherine Price (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -13.4830484 - posY: 1.57222378 - posZ: 0.6929285 - rotX: 359.920135 - rotY: 270.005066 - rotZ: 0.0168688241 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 506400 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5064': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814180074/5A5E665DBD2EB41510CF3B4B25073267720CBE45/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 72d963 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Lockpicks - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -60.2193565 - posY: 12.3038292 - posZ: -61.74803 - rotX: 0.0208042711 - rotY: 270.018433 - rotZ: 0.0167780221 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230318 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7307c4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Arcane Initiate - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -27.6670818 - posY: 2.845372 - posZ: -145.168243 - rotX: 0.0208097361 - rotY: 269.99588 - rotZ: 0.0167698245 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368823 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3688': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f34090 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Rabbit's Foot - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.3146324 - posY: 1.3624531 - posZ: -65.92177 - rotX: 0.020795932 - rotY: 270.040283 - rotZ: 180.016785 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368819 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e8ea95 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cunning Distraction - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 45.970005 - posY: 1.35377693 - posZ: 52.9500046 - rotX: 0.0208033528 - rotY: 270.012939 - rotZ: 0.01677898 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 261700 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2617': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c40cb4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"Watch this!"' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 31.7500019 - posY: 1.358038 - posZ: 85.15 - rotX: 0.0208082516 - rotY: 270.000122 - rotZ: 0.01677166 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- 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: 53f076 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Soothing Melody - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -20.3991413 - posY: 1.33330619 - posZ: 65.36043 - rotX: 0.0208107736 - rotY: 269.991425 - rotZ: 0.0167647582 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379829 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3798': - 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: Too Noble for His Own Good - DragSelectable: true - GMNotes: '' - GUID: 08e5a6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Tetsuo Mori - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.1324425 - posY: 1.67257357 - posZ: 7.045372 - rotX: 359.930023 - rotY: 269.9999 - rotZ: 0.007491751 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315260 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ecfa42 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Chicago Typewriter (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.749992 - posY: 1.417583 - posZ: -41.1000137 - rotX: 359.987427 - rotY: 269.999817 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368501 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5c3dd0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Say Your Prayers - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 64.07001 - posY: 1.36977577 - posZ: 85.15001 - rotX: 0.0208101626 - rotY: 269.9973 - rotZ: 0.0167729165 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315259 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e7f37b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Suggestion (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.749992 - posY: 1.41696262 - posZ: -38.80001 - rotX: 359.987427 - rotY: 269.999817 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230348 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 64e131 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Blood Pact (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.41426945 - posZ: -10.9099836 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368516 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 756a35 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Kukri - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 57.27 - posY: 1.36461318 - posZ: 75.95 - rotX: 0.020810049 - rotY: 269.99408 - rotZ: 0.0167692974 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368709 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2616': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6fec31 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Think on Your Feet - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500042 - posY: 1.35411012 - posZ: 75.95 - rotX: 0.020815298 - rotY: 269.9749 - rotZ: 0.016764313 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368713 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2616': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b18b33 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sneak Attack - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500061 - posY: 1.35141718 - posZ: 66.75 - rotX: 0.0208151527 - rotY: 269.9749 - rotZ: 0.0167625621 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430645 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 092e92 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Quick Study (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.40832567 - posZ: 5.19001961 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235822 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2358': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Madness. Paradox. - DragSelectable: true - GMNotes: '' - GUID: d64b8f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Out of Body Experience - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -46.1434669 - posY: 3.17477942 - posZ: -63.370575 - rotX: 0.0208083838 - rotY: 269.999847 - rotZ: 0.0167704877 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 532300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5323': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325426316444260/4E45EF78D10F174843D2E3ABB2F2FA353079EC84/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: fec633 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Encyclopedia - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 19.2841377 - posY: 1.337478 - posZ: 53.3411751 - rotX: 0.02081177 - rotY: 269.988129 - rotZ: 0.0167661719 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226333 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c55160 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mano a Mano (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.39920676 - posZ: 32.6300278 - rotX: 359.987427 - rotY: 269.9999 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 278011 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2780': - 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: a3f105 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Something Worth Fighting For - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -26.43471 - posY: 1.32809985 - posZ: 55.0619354 - rotX: 0.0208080262 - rotY: 269.999481 - rotZ: 0.0167707372 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368523 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3c959c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Relic Hunter (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 116.94 - posY: 1.3970958 - posZ: 23.3000031 - rotX: 359.987427 - rotY: 269.999878 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 314105 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3141': - 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: 37a2b5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Blackjack (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.40913284 - posZ: -4.169983 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368844 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0edef1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: A Chance Encounter (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40355015 - posZ: 4.899999 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 506300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5063': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814177034/12EF51448F4691DB83AF9054EAB67FE590F7B72B/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7337c1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Farsight (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -56.06263 - posY: 3.170325 - posZ: -66.06527 - rotX: 0.0208021216 - rotY: 270.023468 - rotZ: 0.016778836 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 541300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5413': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830597915335843/99E638B3D735149C6624312DBAB47A3AA2D2F95D/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: Advanced - DragSelectable: true - GMNotes: '' - GUID: bd323d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Hospital Debts - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.0280762 - posY: 1.30279255 - posZ: -64.41893 - rotX: 0.0208086669 - rotY: 270.000031 - rotZ: 0.0167711359 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235113 + CardID: 235119 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -25537,7 +39712,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 8c5d4c + GUID: 50d462 Grid: true GridProjection: false Hands: true @@ -25548,975 +39723,30 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: One-Two Punch + Nickname: Beretta M1918 (4) SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -49.95812 - posY: 1.29527724 - posZ: -88.93968 - rotX: 0.0208082628 - rotY: 270.000061 - rotZ: 0.0167709477 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368404 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: edb554 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Barricade - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.23999453 - posY: 1.34600389 - posZ: 87.4500046 - rotX: 0.02081109 - rotY: 269.986359 - rotZ: 0.0167644043 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 232333 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2323': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Regalia Dementia - DragSelectable: true - GMNotes: '' - GUID: 5d30a1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Tattered Cloak - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -23.11173 - posY: 2.37783718 - posZ: -74.3121262 - rotX: 0.0208091661 - rotY: 270.000061 - rotZ: 0.0167705119 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226317 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9c46da - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Emergency Aid - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6300068 - posY: 1.34301531 - posZ: 57.5500031 - rotX: 0.0207952857 - rotY: 270.027039 - rotZ: 0.0167731363 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374330 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3743': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b80459 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Home Front - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 52.7368431 - posY: 1.64680672 - posZ: -44.52075 - rotX: 0.15098621 - rotY: 269.994263 - rotZ: 359.33197 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447834 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4478': - 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: Dreams of an Explorer - DragSelectable: true - GMNotes: '' - GUID: 5f9a10 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dream Diary (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.4953213 - posY: 1.59229374 - posZ: 11.9794865 - rotX: 359.920135 - rotY: 269.992523 - rotZ: 0.01688575 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431207 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2667': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: eeb330 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Chronophobia - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 79.0520859 - posY: 1.485057 - posZ: 71.99658 - rotX: 0.0327025428 - rotY: 270.0003 - rotZ: 0.000334777724 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 378019 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3780': - 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: 0e0530 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Double, Double (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 112.103218 - posY: 1.3954078 - posZ: 33.496376 - rotX: 359.987427 - rotY: 270.000122 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226359 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e21854 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Monster Slayer (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87001 - posY: 1.41843867 - posZ: -38.66999 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277607 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2776': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c7d9b5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Enchanted Blade - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -34.748642 - posY: 1.32271636 - posZ: 46.98568 - rotX: 0.0208090227 - rotY: 269.998566 - rotZ: 0.0167730749 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 539500 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2317': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017195287736531119/B300331BEF8B29732A2AD6123D59380B7ECB631C/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: John Dee Translation (Advanced) - DragSelectable: true - GMNotes: '' - GUID: 5b2e10 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: The Necronomicon - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -45.11229 - posY: 2.84077334 - posZ: -98.24499 - rotX: 0.02080472 - rotY: 270.0131 - rotZ: 180.016769 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368620 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c33a10 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Liquid Courage - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500027 - posY: 1.35489511 - posZ: 82.85 - rotX: 0.0208108556 - rotY: 269.98877 - rotZ: 0.0167696662 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 444022 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4408': - 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: '' - DragSelectable: true - GMNotes: '' - GUID: 968a26 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Stargazing (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 93.17623 - posY: 1.5469203 - posZ: 25.128376 - rotX: 359.989166 - rotY: 270.027618 - rotZ: 359.9685 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368411 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2f9ab1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Vantage Point - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.240004 - posY: 1.34129119 - posZ: 71.35 - rotX: 0.02081259 - rotY: 269.986359 - rotZ: 0.0167654455 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 505000 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5050': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814129238/FBD338DC049788112D163516A85CD87531C68166/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: de2d0a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Overpower (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.4582977 - posY: 3.17148185 - posZ: -66.3234 - rotX: 0.020802673 - rotY: 270.018829 - rotZ: 0.01677802 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368631 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3686': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: The Louisiana Lion - DragSelectable: true - GMNotes: '' - GUID: eaa415 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Leo De Luca - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.11792 - posY: 2.18863821 - posZ: -89.20177 - rotX: 359.9792 + posX: -44.8764153 + posY: 1.3028295 + posZ: -69.44372 + rotX: 0.02080886 rotY: 270.0 - rotZ: 180.003784 + rotZ: 0.0167718232 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 226339 + CardID: 447733 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6a9021 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Marksmanship (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.40292907 - posZ: 18.8300266 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379022 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3790': - 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: 090fcf - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Glimpse the Unthinkable (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 112.20668 - posY: 1.49268472 - posZ: 46.0736732 - rotX: 359.987427 - rotY: 269.9999 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430642 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 95272b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Deduction (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.40646446 - posZ: 12.090023 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315258 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4eb231 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hot Streak (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.749992 - posY: 1.41634226 - posZ: -36.50001 - rotX: 359.987427 - rotY: 269.9999 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230332 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 98fc57 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Grounded (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.40310252 - posZ: 30.4900265 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368624 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c607c5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lucky Cigarette Case - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500046 - posY: 1.35152888 - posZ: 71.35 - rotX: 0.02081083 - rotY: 269.98877 - rotZ: 0.01677086 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 293015 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2930': + '4477': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ @@ -26527,7 +39757,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: e674e8 + GUID: f21109 Grid: true GridProjection: false Hands: true @@ -26538,10368 +39768,18 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Fortune or Fate (2) + Nickname: A Glimmer of Hope SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -59.4155731 - posY: 1.52457511 - posZ: -53.7638931 - rotX: 0.0229964554 - rotY: 270.012634 - rotZ: 0.0177416671 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447630 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4476': - 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: 30062e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Three Aces (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.8546753 - posY: 1.29860055 - posZ: -78.9555054 - rotX: 0.0208080355 - rotY: 270.0001 - rotZ: 0.01677129 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 275732 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2757': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Signed in Blood - DragSelectable: true - GMNotes: '' - GUID: ae3775 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Black Book - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.35961 - posY: 3.65594316 - posZ: -65.68756 - rotX: 0.0124454033 - rotY: 269.999939 - rotZ: 180.02034 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 296704 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2967': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 96ae32 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Monstrous Transformation - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.55273 - posY: 1.30414021 - posZ: -57.92313 - rotX: 0.0208086055 + posX: -56.2737465 + posY: 2.84284782 + posZ: -111.100708 + rotX: 0.020808937 rotY: 270.0 - rotZ: 0.016771147 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266702 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2667': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011565208488842326/3FF786B2685526D7475E5EE6F2621F8853BBCEA3/ - NumHeight: 2 - NumWidth: 4 - Type: 0 - UniqueBack: false - Description: Pact. Cursed. - DragSelectable: true - GMNotes: '' - GUID: 5fdda4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Faustian Bargain - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -37.3927 - posY: 1.69818175 - posZ: 60.2967377 - rotX: 0.01901129 - rotY: 269.982056 - rotZ: 0.0150372349 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226355 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3b6834 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: "\"I've had worse\u2026\" (4)" - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.3595657 - posY: 3.52342 - posZ: -65.6875458 - rotX: 0.0109348232 - rotY: 270.0 - rotZ: 180.018341 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226352 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: cd7b97 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Stand Together (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.41347551 - posZ: -20.269989 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368430 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Acquisitions and Solicitation - DragSelectable: true - GMNotes: '' - GUID: 4a2a36 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Charles Ross, Esq. - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -6.64000225 - posY: 1.33736348 - posZ: 62.1499977 - rotX: 0.02081471 - rotY: 269.978821 - rotZ: 0.0167644937 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 312109 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3121': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: "What\u2019s in the Box?" - DragSelectable: true - GMNotes: '' - GUID: 0e39c2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Council's Coffer (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.4600334 - posY: 1.52728856 - posZ: -53.46696 - rotX: 0.0193714 - rotY: 270.016724 - rotZ: 0.0191046689 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235114 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2351': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8e915d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Arcane Enlightenment - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -55.834343 - posY: 2.84507322 - posZ: -113.358162 - rotX: 0.0208085366 - rotY: 270.0 - rotZ: 0.0167709831 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368813 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 00af4f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fight or Flight - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 45.97 - posY: 1.35848963 - posZ: 69.05 - rotX: 0.02080343 - rotY: 270.012878 - rotZ: 0.0167783517 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277604 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2776': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '230835' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scroll of Secrets - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -27.5756321 - posY: 1.326131 - posZ: 49.75152 - rotX: 0.0208086669 - rotY: 269.9986 - rotZ: 0.01677173 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 534600 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5346': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325549672939837/E287E1DC726FAA77E877B68A7E07908E32108F45/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4dd621 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Mauser C96 (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.20876 - posY: 1.614582 - posZ: 42.7635231 - rotX: 0.004170192 - rotY: 270.0141 - rotZ: 0.00329234824 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527004 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5270': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Professor of Entomology - DragSelectable: true - GMNotes: '' - GUID: a60325 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dr. Milan Christopher (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.8091431 - posY: 1.3436749 - posZ: -69.58511 - rotX: 0.020808788 - rotY: 269.9992 - rotZ: 0.01677098 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 526910 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5269': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b40685 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Machete (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.7488327 - posY: 1.45135522 - posZ: -77.86401 - rotX: 0.0208074432 - rotY: 269.999084 - rotZ: 0.0167784747 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226301 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 80628f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Inspiring Presence - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.0300045 - posY: 1.3523289 - posZ: 85.15 - rotX: 0.0208112579 - rotY: 269.987427 - rotZ: 0.0167698432 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230315 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e425d0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Arcane Research - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.0000019 - posY: 1.33810127 - posZ: 87.45 - rotX: 0.020799011 - rotY: 270.0313 - rotZ: 0.01678507 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230334 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5d6e57 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mind Wipe (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.40434325 - posZ: 25.8900242 - rotX: 359.987427 - rotY: 270.000122 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 292914 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2929': - 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: 2ee50e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Decoy - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.5756035 - posY: 1.54699683 - posZ: -53.2420578 - rotX: 0.0201706048 - rotY: 270.0111 - rotZ: 0.00609406969 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 454741 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4547': - BackIsHidden: true - BackURL: https://i.imgur.com/r6F1mt2.jpg - FaceURL: https://i.imgur.com/CN9PXUd.jpg - NumHeight: 5 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: Item. Relic. - DragSelectable: true - GMNotes: '' - GUID: 0ce113 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ancient Ankh - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -41.99787 - posY: 2.36574912 - posZ: -93.55096 - rotX: 0.0208107159 - rotY: 269.999939 - rotZ: 0.01676894 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527403 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2666': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: d83baf - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Psychosis - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 74.05512 - posY: 1.54381335 - posZ: 81.50433 - rotX: 0.0185714755 - rotY: 269.999481 - rotZ: 0.0229028482 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315232 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 731d2a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Adaptable (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.39773071 - posZ: 32.5000153 - rotX: 359.987427 - rotY: 269.9997 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430636 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c17f2c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Forewarned (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.40212178 - posZ: 28.1900234 - rotX: 359.987427 - rotY: 269.999878 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235112 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2351': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c5aa89 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lesson Learned (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.40984 - posY: 1.29977894 - posZ: -73.00008 - rotX: 0.02080832 - rotY: 270.000061 - rotZ: 0.0167706832 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379020 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3790': - 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: 5d6728 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Occult Lexicon - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 13.9440126 - posY: 1.34620976 - posZ: 66.8332062 - rotX: 0.0208179 - rotY: 269.980469 - rotZ: 0.0167577937 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226338 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a1fd61 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ambush (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.4023087 - posZ: 21.130024 - rotX: 359.987427 - rotY: 269.999939 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 463500 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4635': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734367322/78DD3D58A8448E57C3FA77718A71D348457D1BA6/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4b1e76 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Safeguard - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.7852745 - posY: 3.16652155 - posZ: -82.43585 - rotX: 0.0208083745 - rotY: 270.000031 - rotZ: 0.01677074 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430651 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2e3115 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Barricade (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.41266835 - posZ: -10.9099836 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277512 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2775': - 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: '' - DragSelectable: true - GMNotes: '' - GUID: 6eceef - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sixth Sense - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -26.6880589 - posY: 1.4528209 - posZ: 43.8413734 - rotX: 0.0197454374 - rotY: 269.9732 - rotZ: 353.253143 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226350 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 82d62c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Stick to the Plan (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.41223478 - posZ: -15.6699867 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368508 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: acb83a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Unexpected Courage - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 64.07 - posY: 1.36506307 - posZ: 69.05 - rotX: 0.02081015 - rotY: 269.997284 - rotZ: 0.0167725924 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527402 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2666': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 249d83 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Haunted - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 74.82835 - posY: 1.524788 - posZ: 81.67362 - rotX: 0.0176790953 - rotY: 269.9997 - rotZ: 0.0187719874 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368834 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 86b9c5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Plucky (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.39672589 - posZ: 30.2000084 - rotX: 359.987427 - rotY: 270.000061 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315254 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 308be1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sure Gamble (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.41386068 - posZ: -27.300005 - rotX: 359.987427 - rotY: 269.999725 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368414 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1b0235 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Persuasion - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.240003 - posY: 1.33927155 - posZ: 64.45 - rotX: 0.02081119 - rotY: 269.986359 - rotZ: 0.0167691447 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 449036 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4490': - 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: 'Lookin'' Out For #1' - DragSelectable: true - GMNotes: '' - GUID: 48c9ff - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Joey "The Rat" Vigil (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -30.224144 - posY: 1.696496 - posZ: 3.8599503 - rotX: 359.9201 - rotY: 269.9999 - rotZ: 0.016874982 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226353 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bc80ab - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: First Aid (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.41471636 - posZ: -24.86999 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230357 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 68fce2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mists of R'lyeh (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76001 - posY: 1.42109358 - posZ: -36.2099876 - rotX: 359.987427 - rotY: 270.000183 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 449400 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4494': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734366341/8229E47C117E16021DC1F098B6D700904DC7E2DE/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '493908' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Relentless - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -60.77507 - posY: 12.3773661 - posZ: -60.59894 - rotX: 0.0208017118 - rotY: 270.023438 - rotZ: 0.0167800933 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277912 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2779': - 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: a57f19 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Meat Cleaver - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -30.6913071 - posY: 1.33000863 - posZ: 66.8643341 - rotX: 0.020810809 - rotY: 269.9992 - rotZ: 0.0167672466 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368825 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9da37c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fire Axe - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 42.57 - posY: 1.35927451 - posZ: 75.95 - rotX: 0.02081681 - rotY: 269.9702 - rotZ: 0.0167647749 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230358 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 194adb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Rite of Seeking (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.42171407 - posZ: -38.50999 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545210 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 389a34 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Backpack (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -57.4068222 - posY: 3.2850585 - posZ: -73.0593 - rotX: 0.0208073538 - rotY: 270.0092 - rotZ: 0.01676984 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379021 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3790': - 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: eafd12 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Blood-Rite - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -20.5311451 - posY: 1.33218 - posZ: 61.67714 - rotX: 0.02081183 - rotY: 269.995056 - rotZ: 0.0167690534 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 377343 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3773': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7c958e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Jake Williams - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.09009 - posY: 2.18708086 - posZ: -86.02005 - rotX: 0.0208045971 - rotY: 270.0133 - rotZ: 0.0167789925 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266703 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2667': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011565208488842326/3FF786B2685526D7475E5EE6F2621F8853BBCEA3/ - NumHeight: 2 - NumWidth: 4 - Type: 0 - UniqueBack: false - Description: Fortune. Blessed. - DragSelectable: true - GMNotes: '' - GUID: 59c726 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Predestined - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -37.3927 - posY: 1.68854463 - posZ: 60.2967377 - rotX: 0.018989414 - rotY: 269.9821 - rotZ: 0.0150101446 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 276300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2763': - 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: '' - DragSelectable: true - GMNotes: '' - GUID: e470cd - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Premonition - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -21.6000023 - posY: 1.33798957 - posZ: 82.85 - rotX: 0.02081856 - rotY: 269.96698 - rotZ: 0.0167606138 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527237 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5272': - 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: '' - DragSelectable: true - GMNotes: '' - GUID: ad58aa - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mind's Eye (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.7199135 - posY: 1.29997373 - posZ: -68.2275848 - rotX: 0.0208084621 - rotY: 270.000061 - rotZ: 0.0167708471 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230309 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: da7613 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dark Prophecy - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -21.6000023 - posY: 1.33395016 - posZ: 69.05 - rotX: 0.0208175573 - rotY: 269.96698 - rotZ: 0.01676294 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226335 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bd3ecc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Combat Training (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.40044749 - posZ: 28.0300274 - rotX: 359.987427 - rotY: 269.9999 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 293315 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2933': - 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: Mystic - DragSelectable: true - GMNotes: '' - GUID: 194d88 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scroll of Secrets (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -55.73687 - posY: 1.50124466 - posZ: -49.17045 - rotX: 0.05648235 - rotY: 270.0217 - rotZ: -0.002907931 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368858 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b0c61c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: On Your Own (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.41347623 - posZ: -31.9000053 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277813 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2778': - 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: 5ada0a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hawk-Eye Folding Camera - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -30.4610023 - posY: 1.32776082 - posZ: 58.8984222 - rotX: 0.0208074246 - rotY: 269.998047 - rotZ: 0.0167737659 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266706 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2667': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011565208488842326/3FF786B2685526D7475E5EE6F2621F8853BBCEA3/ - NumHeight: 2 - NumWidth: 4 - Type: 0 - UniqueBack: false - Description: Madness. - DragSelectable: true - GMNotes: '' - GUID: d91dac - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Crisis of Faith - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -37.392704 - posY: 1.717295 - posZ: 60.29674 - rotX: 0.0206187684 - rotY: 269.9819 - rotZ: 0.0177039169 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 292815 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2928': - 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: Guardian - DragSelectable: true - GMNotes: '' - GUID: 84b918 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Enchanted Blade (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -55.7760849 - posY: 1.51176524 - posZ: -49.1228828 - rotX: 0.0195764955 - rotY: 269.98288 - rotZ: 0.009112052 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226356 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a7944d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Springfield M1903 (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87001 - posY: 1.41657758 - posZ: -31.7699947 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368410 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f763e8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Unearth the Ancients - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.239993 - posY: 1.34196448 - posZ: 73.65001 - rotX: 0.02081152 - rotY: 269.9864 - rotZ: 0.0167682283 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450009 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4500': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5033a2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Higher Education (3) (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.78863 - posY: 1.46033812 - posZ: -77.58968 - rotX: 0.0208079629 - rotY: 269.998962 - rotZ: 0.0167762563 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368434 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3684': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Professor of Entomology - DragSelectable: true - GMNotes: '' - GUID: 9934d2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dr. Milan Christopher - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.3597 - posY: 3.53139567 - posZ: -65.68798 - rotX: 0.0124389669 - rotY: 270.0 - rotZ: 180.0142 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226330 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 12660b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: .45 Automatic - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.230007 - posY: 1.34312713 - posZ: 62.15 - rotX: 0.0208157543 - rotY: 269.969421 - rotZ: 0.016761912 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 233606 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2336': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2fc31c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mi-Go Weapon - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -50.6340179 - posY: 1.2999053 - posZ: -72.28999 - rotX: 0.0208086576 - rotY: 270.0 - rotZ: 0.0167716239 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 378619 - 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: 76147b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: "\"I've had worse\u2026\" (2)" - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.3595657 - posY: 3.52341747 - posZ: -65.6875458 - rotX: 0.01074947 - rotY: 270.0 - rotZ: 180.018921 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 370926 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3709': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 576d70 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Heirloom of Hyperborea - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -46.5228539 - posY: 2.19076967 - posZ: -89.842 - rotX: 359.9792 - rotY: 270.0 - rotZ: 180.005737 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235110 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2351': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5ec2d2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Boxing Gloves - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.93731 - posY: 1.29940331 - posZ: -74.86947 - rotX: 0.0208085179 - rotY: 269.999969 - rotZ: 0.0167706087 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 262203 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2622': - 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: 77f92c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Expose Weakness (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.412048 - posZ: -8.60998249 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235667 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2356': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Forestalling the Future - DragSelectable: true - GMNotes: '' - GUID: 7667ef - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Relic of Ages - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -46.0404434 - posY: 1.31665075 - posZ: -74.18784 - rotX: 0.0245627742 - rotY: 270.0043 - rotZ: 0.8296155 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226360 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f7a9ab - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Armor of Ardennes (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.419059 - posZ: -40.9699936 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 438125 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4381': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: eff3c8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Self-Centered - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.28279 - posY: 1.52067816 - posZ: 50.95579 - rotX: 0.02054261 - rotY: 270.00177 - rotZ: 180.013779 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527607 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2742': - 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: '276477' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Money Talks - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500023 - posY: 1.35747635 - posZ: 87.45 - rotX: 0.02081571 - rotY: 269.9749 - rotZ: 0.016764652 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527419 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2666': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: fd9c56 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Through the Gates - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 74.34954 - posY: 1.57672024 - posZ: 61.3802452 - rotX: 0.0203758851 - rotY: 269.999542 - rotZ: 0.01571979 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 507100 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5071': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814229114/15873F3BCF06F73943445E1182DB7A094FA55EB6/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 24621a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Robes of Endless Night - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -46.0207672 - posY: 3.17013931 - posZ: -80.71543 - rotX: 0.020809073 - rotY: 270.0 - rotZ: 0.0167717636 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368849 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f66dd9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Snare Trap (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40727246 - posZ: -8.900003 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 449359 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3797': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Sanctum's Reward - DragSelectable: true - GMNotes: '' - GUID: 223ba3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Twilight Blade - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 5.766281 - posY: 1.376472 - posZ: -79.3358841 - rotX: 0.0199582744 - rotY: 269.996155 - rotZ: 0.0131309 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230351 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e72762 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mind Wipe (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76 - posY: 1.41613054 - posZ: -17.80999 - rotX: 359.987427 - rotY: 270.0002 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440621 - 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: bda4fd - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lantern (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.32716 - posY: 1.5488534 - posZ: 37.4422379 - rotX: 359.989349 - rotY: 269.992371 - rotZ: 359.982239 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 261701 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2617': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: efb09b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Double or Nothing - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 31.7500019 - posY: 1.35736465 - posZ: 82.85 - rotX: 0.0208079945 - rotY: 270.000122 - rotZ: 0.0167725533 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226302 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '889121' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Vicious Blow - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.0300045 - posY: 1.3516556 - posZ: 82.85 - rotX: 0.0208114255 - rotY: 269.987427 - rotZ: 0.0167701989 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226361 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2d362c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lightning Gun (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.86998 - posY: 1.38363731 - posZ: -45.57002 - rotX: 0.0208066348 - rotY: 269.999878 - rotZ: 0.0167749375 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 449037 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4490': - 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: 4f5f0f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sawed-Off Shotgun (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.9328461 - posY: 1.299728 - posZ: -73.765686 - rotX: 0.02080911 - rotY: 270.0 - rotZ: 0.0167716872 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 232934 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2329': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Olaus Wormius Translation - DragSelectable: true - GMNotes: '' - GUID: d45f10 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Necronomicon - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.2950974 - posY: 1.36349916 - posZ: -51.4901772 - rotX: 0.0208088756 - rotY: 270.0 - rotZ: 0.0167707372 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379616 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3796': - 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: Deals with "Devils" - DragSelectable: true - GMNotes: '' - GUID: 4f2489 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dayana Esperence (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 92.65864 - posY: 1.41104889 - posZ: -8.65793 - rotX: 359.987427 - rotY: 269.999176 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 381050 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3810': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 67e006 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Split the Angle - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -1.436187 - posY: 2.09197116 - posZ: -46.23643 - rotX: 0.03567951 - rotY: 270.066925 - rotZ: 0.0572711229 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 525800 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5258': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1343712298674068500/A04DB160C29453230EDD1747C134C7E44A7AC402/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a561ba - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Chainsaw (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -57.8791542 - posY: 3.17043233 - posZ: -64.25585 - rotX: 0.02080814 - rotY: 270.0009 - rotZ: 0.0167710334 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368815 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 59d89b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Oops! - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 45.970005 - posY: 1.35647 - posZ: 62.15 - rotX: 0.0208052136 - rotY: 270.0129 - rotZ: 0.016778376 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315234 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: cdd6aa - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hired Muscle (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.39959192 - posZ: 25.60001 - rotX: 359.987427 - rotY: 269.9998 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527608 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2742': - 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: 66b7d5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Well Connected - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500046 - posY: 1.35287535 - posZ: 75.95 - rotX: 0.02081098 - rotY: 269.988831 - rotZ: 0.0167695135 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368822 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3688': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1b76c9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scavenging - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -37.6326675 - posY: 1.36736 - posZ: -66.1336441 - rotX: 0.0207946468 - rotY: 270.040375 - rotZ: 180.016785 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315246 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2f4db2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Pickpocketing (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.40765679 - posZ: -4.300003 - rotX: 359.987427 - rotY: 269.999878 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 375016 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3750': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a33470 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Spirit-Speaker - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 52.6619034 - posY: 1.68719435 - posZ: -45.7441521 - rotX: 0.158040836 - rotY: 270.026367 - rotZ: 0.0115280962 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447933 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4479': - 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: 7dc42a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Safeguard (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.1557045 - posY: 1.29952526 - posZ: -70.459816 - rotX: 0.0208098479 - rotY: 269.9981 - rotZ: 0.016770659 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226313 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e0dff3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dodge - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6300058 - posY: 1.34638155 - posZ: 69.05001 - rotX: 0.0207969118 - rotY: 270.027039 - rotZ: 0.0167740118 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545214 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: 180b5b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sell Your Soul - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.9590836 - posY: 3.16908 - posZ: -74.77038 - rotX: 0.0208086688 - rotY: 269.999756 - rotZ: 0.0167709328 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 534902 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2317': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Two Days Until Retirement - DragSelectable: true - GMNotes: '' - GUID: 5630c2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sergeant Monroe - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -41.17111 - posY: 2.37525 - posZ: -70.6252747 - rotX: 0.0211165547 - rotY: 270.0 - rotZ: 0.0169378966 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230323 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: fa1d67 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Holy Rosary - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.0 - posY: 1.33271539 - posZ: 69.05 - rotX: 0.0207979213 - rotY: 270.0313 - rotZ: 0.0167850684 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 449613 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4496': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8043d5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Streetwise (3) (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.8816643 - posY: 1.38300967 - posZ: -77.5098953 - rotX: 0.02080806 - rotY: 269.999725 - rotZ: 0.0167756937 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 464100 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4641': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734372998/1937407D54C82745A53150E9907CE7DDB55BA97E/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9bfe76 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Whitton Greene - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.2011032 - posY: 1.88803566 - posZ: 34.28374 - rotX: 359.933075 - rotY: 269.9965 - rotZ: 0.0141245332 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368857 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f1b0f9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Try and Try Again (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.41285586 - posZ: -29.6000061 - rotX: 359.987427 - rotY: 269.999939 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440720 - 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: 26a3bf - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Stealth (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 92.95461 - posY: 1.54556274 - posZ: 29.33836 - rotX: 359.9763 - rotY: 269.978271 - rotZ: 359.9808 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 314002 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3140': - 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: cf4f15 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Flamethrower (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.41967952 - posZ: -43.2699928 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 261702 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2617': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a88392 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Opportunist - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 31.7500038 - posY: 1.35669148 - posZ: 80.55 - rotX: 0.0208076444 - rotY: 270.000122 - rotZ: 0.0167729724 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 444147 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3805': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 13eaf0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dreams of the Deep - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.149692 - posY: 2.06653118 - posZ: -46.2199059 - rotX: 0.0160595868 - rotY: 270.0005 - rotZ: 0.0145351663 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 463300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4633': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734369090/64C3A5BDC79736739298202441B7EA98601A7A0F/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 03367f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Stand Together - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -60.77679 - posY: 12.3349133 - posZ: -60.5461464 - rotX: 0.0208036788 - rotY: 270.018433 - rotZ: 0.0167783722 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 534400 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5344': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325549672939179/7DC3134447B65CE6E9BA9EA7043DFFCC10C2975E/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 720cf7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Hypnotic Gaze (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.6239891 - posY: 1.6557349 - posZ: 42.29812 - rotX: 0.004157718 - rotY: 269.990082 - rotZ: 0.00335860439 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368401 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5c3aea - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Inquiring Mind - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 0.160006061 - posY: 1.34589219 - posZ: 82.8500061 - rotX: 0.0208204687 - rotY: 269.9646 - rotZ: 0.0167588983 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368506 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c6ac19 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Perception - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 64.07 - posY: 1.36910248 - posZ: 82.85 - rotX: 0.0208097026 - rotY: 269.997284 - rotZ: 0.01677215 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 441026 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4410': - 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: ff9f23 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Segment of Onyx (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.24019 - posY: 1.40603662 - posZ: 12.822814 - rotX: 359.987183 - rotY: 270.0061 - rotZ: 359.986481 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315304 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3153': - 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: 620b6e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Contraband (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -36.5215378 - posY: 2.36745119 - posZ: -94.6365662 - rotX: 0.0208076537 - rotY: 270.000671 - rotZ: 0.0167719889 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374014 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2098': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '170538' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Painted World - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 7.31871462 - posY: 0.6395771 - posZ: -49.1846924 - rotX: -5.89429e-06 - rotY: 269.999939 - rotZ: 359.991943 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368847 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9bcdee - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Newspaper (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40541124 - posZ: -2.00000286 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226344 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9956d5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Taunt (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.40727174 - posZ: 2.73001885 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 293314 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2933': - 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: Mystic - DragSelectable: true - GMNotes: '' - GUID: d0de54 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Enchanted Blade (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -55.77679 - posY: 1.52551687 - posZ: -49.1203079 - rotX: 0.013238864 - rotY: 269.99353 - rotZ: 0.00522407331 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 376600 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3766': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 41a9ec - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Until the End of Time - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 27.6287518 - posY: 1.4419347 - posZ: -51.9697838 - rotX: 0.0280682351 - rotY: 269.874725 - rotZ: 4.47717762 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 232907 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2329': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Professor of Archaeology - DragSelectable: true - GMNotes: '' - GUID: f03306 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dr. Francis Morgan - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -41.4931259 - posY: 2.37332487 - posZ: -69.13057 - rotX: 0.02081106 - rotY: 269.998016 - rotZ: 0.0167686362 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545204 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Doom Begets Doom - DragSelectable: true - GMNotes: '' - GUID: 946a58 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Decorated Skull (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -42.5000725 - posY: 3.16913486 - posZ: -87.17431 - rotX: 0.0208039563 - rotY: 270.0092 - rotZ: 0.0167778078 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 293013 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2930': - 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: Survivor - DragSelectable: true - GMNotes: '' - GUID: cbe256 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Tennessee Sour Mash (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.6885529 - posY: 1.65134215 - posZ: -48.9234848 - rotX: 359.90155 - rotY: 269.982483 - rotZ: 359.886169 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 314802 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3148': - 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: 3dc82f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Try and Try Again (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.39982784 - posZ: 18.7000046 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368515 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bb1cce - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Flashlight - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 57.27 - posY: 1.36528647 - posZ: 78.25 - rotX: 0.0208097659 - rotY: 269.99408 - rotZ: 0.0167725012 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230320 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 54832d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Alchemical Transmutation - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.0000019 - posY: 1.334735 - posZ: 75.95 - rotX: 0.0207990371 - rotY: 270.0313 - rotZ: 0.0167850517 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430659 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 536b52 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Arcane Insight (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.41949248 - posZ: -36.2099876 - rotX: 359.987427 - rotY: 270.0001 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 526300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5263': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1343712298674122976/357887F0D1BFDDDE543B10FC6E72A470152F0EFD/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f850b8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Leather Coat (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -57.64874 - posY: 3.16968036 - posZ: -65.6091156 - rotX: 0.0208081733 - rotY: 270.0006 - rotZ: 0.0167706925 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 450900 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4509': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e6f2b9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Quick Thinking (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.6888733 - posY: 1.41199076 - posZ: -77.41198 - rotX: 0.02080876 - rotY: 269.999481 - rotZ: 0.0167686716 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431206 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2667': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: 4fb446 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Internal Injury - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 79.15498 - posY: 1.49438834 - posZ: 72.1812439 - rotX: 0.03946274 - rotY: 269.999573 - rotZ: 359.9925 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430637 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 378e84 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Magnifying Glass (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.40274215 - posZ: 25.8900242 - rotX: 359.987427 - rotY: 269.999939 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230603 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2306': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 00b6c3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: To Fight the Black Wind - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.0920258 - posY: 3.39960217 - posZ: -65.15591 - rotX: 0.0208092 - rotY: 270.006958 - rotZ: 0.01676712 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 275733 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2757': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Spell. - DragSelectable: true - GMNotes: '' - GUID: 863f1a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Spectral Web - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.35961 - posY: 3.6559422 - posZ: -65.68756 - rotX: 0.0124424249 - rotY: 269.999939 - rotZ: 180.020645 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 369945 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3699': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: fe68c6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Dirge of Reason - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 85.22855 - posY: 1.54189241 - posZ: -58.0838356 - rotX: 6.124808 - rotY: 269.9939 - rotZ: 0.005484572 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368519 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8948c4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Emergency Cache (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 116.94 - posY: 1.39523458 - posZ: 30.2000065 - rotX: 359.987427 - rotY: 269.9999 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545212 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Basic Weakness - DragSelectable: true - GMNotes: '' - GUID: e27c93 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Offer You Cannot Refuse - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -43.7565 - posY: 3.1718924 - posZ: -76.1044846 - rotX: 0.0208088569 - rotY: 269.999451 - rotZ: 0.01677096 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315240 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: The Louisiana Lion - DragSelectable: true - GMNotes: '' - GUID: 27446e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Leo De Luca (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.9715042 - posY: 2.18760157 - posZ: -92.92407 - rotX: 359.9792 - rotY: 270.0 - rotZ: 180.003784 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 530300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5303': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1483324826177261183/B82215010ECAF38CAFBB8A41505392120526308F/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9e1428 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Esoteric Atlas (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -60.3701057 - posY: 1.30416358 - posZ: -45.6630173 - rotX: 0.02080811 - rotY: 270.000031 - rotZ: 0.0167711619 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230329 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 29b842 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Rite of Seeking - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -28.4000015 - posY: 1.33686638 - posZ: 87.45 - rotX: 0.0208066311 - rotY: 270.0064 - rotZ: 0.01677684 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 529600 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5296': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1479946668208310438/1567A2EA1ECF346D4550AA81AD4D653DC84C075A/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 15f45b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Burning the Midnight Oil - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -62.4251976 - posY: 1.30235624 - posZ: -49.28748 - rotX: 0.0208073948 - rotY: 270.0047 - rotZ: 0.01677352 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 507300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5073': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814230031/3248B769E923B2621D2B441231E8B5E7FD292B7F/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 09ffbe - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Clairvoyance (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.32099 - posY: 12.3031158 - posZ: -62.9833565 - rotX: 0.0208030548 - rotY: 270.0184 - rotZ: 0.01677792 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277511 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2775': - 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: '' - DragSelectable: true - GMNotes: '' - GUID: d946d9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Wither - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -26.7956734 - posY: 1.57171309 - posZ: 40.9552956 - rotX: 1.12907594e-06 - rotY: 269.998749 - rotZ: 2.312074e-05 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368712 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2616': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '833305' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Elusive - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500042 - posY: 1.35209048 - posZ: 69.05 - rotX: 0.0208152477 - rotY: 269.974854 - rotZ: 0.0167662222 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230352 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Gift of the Homunculi - DragSelectable: true - GMNotes: '' - GUID: 6bae15 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Jewel of Aureolus (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76 - posY: 1.41799176 - posZ: -24.7099953 - rotX: 359.987427 - rotY: 270.000061 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368851 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c6c260 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cornered (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40851319 - posZ: -13.5000057 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 506700 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5067': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814185751/95A9268FA6A77DB417D883BC73D858891285D42A/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6ab51c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Pilfer - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -55.48722 - posY: 3.170269 - posZ: -67.5462952 - rotX: 0.0208035316 - rotY: 270.0185 - rotZ: 0.0167782977 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368837 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4cfcc7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: A Test of Will (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.39796674 - posZ: 25.6000061 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 506600 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5066': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814182691/7938CEF2E513A8FEDBF1B19B3D072CEBB3CA39C4/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e3ce75 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Leather Jacket - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -60.79473 - posY: 12.3036165 - posZ: -60.4332924 - rotX: 0.0208032522 - rotY: 270.01947 - rotZ: 0.0167775843 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226342 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: fc2629 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"Eat lead!" (2)' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.406031 - posZ: 7.33001947 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235122 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2351': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 085581 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mauser C96 - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.8330784 - posY: 2.8453722 - posZ: -123.682411 - rotX: 0.0208091047 - rotY: 270.0 - rotZ: 0.0167718045 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226303 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 83d8d7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Leadership - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.0300045 - posY: 1.35098243 - posZ: 80.55 - rotX: 0.0208123475 - rotY: 269.987427 - rotZ: 0.0167667661 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235115 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2351': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 380c3c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cryptic Writings (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.0029335 - posY: 1.298163 - posZ: -76.54372 - rotX: 0.02080826 - rotY: 270.000061 - rotZ: 0.016770767 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374420 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3744': - 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: 1a90a4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lure (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 112.262115 - posY: 1.37650943 - posZ: 48.36173 - rotX: 0.020808477 - rotY: 270.0 - rotZ: 0.01677365 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 505600 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5056': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814162888/1C32CD007654F01CD17862F2487752B3266DF7E3/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: Untranslated - DragSelectable: true - GMNotes: '' - GUID: 6743e2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Forbidden Tome - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -56.794796 - posY: 3.16968346 - posZ: -66.54757 - rotX: 0.0208079983 - rotY: 270.0011 - rotZ: 0.0167708937 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368928 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3689': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a56ffe - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Wendy's Amulet - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 87.36852 - posY: 1.4640274 - posZ: -54.70025 - rotX: 0.0210064612 - rotY: 270.000427 - rotZ: 4.54647064 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 464000 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4640': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734382454/CE56F0F0FE3604F9D02F07EA3626615F48D021E5/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b92e9b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Miskatonic Archaeology Funding (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.9278755 - posY: 1.89711642 - posZ: 34.46537 - rotX: 359.932953 - rotY: 269.9965 - rotZ: 0.0141070625 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 532700 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5327': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325459410246649/7E440DAC27C35619436F500C1061D1CDFD13D012/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: Tough Old Bird - DragSelectable: true - GMNotes: '' - GUID: 64ae1b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Granny Orne - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 10.5688486 - posY: 1.467045 - posZ: 80.96073 - rotX: 0.0208149515 - rotY: 269.98056 - rotZ: 0.0167634543 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368830 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3688': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 48e103 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Baseball Bat - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.75805 - posY: 1.36662269 - posZ: -56.0895958 - rotX: 0.02079865 - rotY: 270.04 - rotZ: 180.016785 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440924 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4409': - 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: "Calamitous Blade of Celepha\xEFs" - DragSelectable: true - GMNotes: '' - GUID: bbd11b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The Hungering Blade (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.6895256 - posY: 1.509287 - posZ: -64.4644852 - rotX: 0.04871207 - rotY: 270.0308 - rotZ: 359.983429 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266900 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2669': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734347445/B6DDBDAE36CE2548EC420514F505418416752046/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: edd051 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '"Get over here!"' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.80434 - posY: 12.3023243 - posZ: -59.9522972 - rotX: 0.020803595 - rotY: 270.0185 - rotZ: 0.0167784076 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 375129 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3688': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 79b4af - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Abandoned and Alone - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 87.96376 - posY: 1.37863719 - posZ: -52.84543 - rotX: 0.0208916031 - rotY: 270.023865 - rotZ: 0.0165571664 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 534800 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5348': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325549672938504/67410EA19E4945164AFEE078BA59881B5520D566/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0b4ea6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Dumb Luck (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 10.5688419 - posY: 1.481653 - posZ: 80.9607239 - rotX: 0.0208074879 - rotY: 270.009735 - rotZ: 0.0167756937 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235124 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2351': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '648590' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ineffable Truth (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.37789 - posY: 1.30184162 - posZ: -67.23382 - rotX: 0.0208083242 - rotY: 269.999969 - rotZ: 0.0167709384 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230338 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bf3dd1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Defiance (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.40744519 - posZ: 14.3900223 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368829 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3fe6de - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Gravedigger's Shovel - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 42.5700035 - posY: 1.35658157 - posZ: 66.75 - rotX: 0.020816626 - rotY: 269.9702 - rotZ: 0.016764015 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 452300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4523': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Expert Dreamer - DragSelectable: true - GMNotes: '' - GUID: b04c8e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Randolph Carter - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -27.3781948 - posY: 2.37428141 - posZ: -83.49261 - rotX: 0.02080912 - rotY: 270.000031 - rotZ: 0.0167708285 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440923 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4409': - 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: a2c7ef - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"Eat lead!"' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 96.52021 - posY: 1.40248728 - posZ: 19.8564625 - rotX: 359.987671 - rotY: 270.0178 - rotZ: 359.984 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368528 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2acced - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ornate Bow (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 116.94 - posY: 1.40143847 - posZ: 7.19999933 - rotX: 359.987427 - rotY: 269.999817 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 454740 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4547': - BackIsHidden: true - BackURL: https://i.imgur.com/r6F1mt2.jpg - FaceURL: https://i.imgur.com/CN9PXUd.jpg - NumHeight: 5 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: Ally. Government. - DragSelectable: true - GMNotes: '' - GUID: cfb393 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: John & Jessie Burke - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -42.7820168 - posY: 2.36514521 - posZ: -94.073204 - rotX: 0.02081031 - rotY: 270.0 - rotZ: 0.0167692546 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368835 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '812685' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Devil's Luck (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.149994 - posY: 1.39610553 - posZ: 32.50001 - rotX: 359.987427 - rotY: 269.999939 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 506800 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5068': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814186361/59648F1A742B1ADF41577FC848F6FB487D94D80A/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3bd955 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Backstab (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -61.8169975 - posY: 12.303277 - posZ: -60.338768 - rotX: 0.0208036415 - rotY: 270.0185 - rotZ: 0.01677841 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 312510 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3125': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Mysterious Device - DragSelectable: true - GMNotes: '' - GUID: 44334c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Puzzle Box - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.31332 - posY: 1.36443675 - posZ: -54.4657478 - rotX: 0.0208098013 - rotY: 270.0 - rotZ: 0.016772978 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226349 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e35bc2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dynamite Blast (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.41161442 - posZ: -13.3699875 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 380027 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3800': - 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: d3dcf1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"Let God sort them out..."' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.1617146 - posY: 1.66998422 - posZ: -1.0745914 - rotX: 359.9013 - rotY: 269.995422 - rotZ: 0.0255841073 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 312513 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3125': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: The Nightmare is Over - DragSelectable: true - GMNotes: '' - GUID: 73bccf - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Penny White - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 35.93601 - posY: 1.35457325 - posZ: 68.1201248 - rotX: 0.0208114143 - rotY: 269.988525 - rotZ: 0.0167672429 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226306 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: eab2ed - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Teamwork - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6300039 - posY: 1.35109425 - posZ: 85.15 - rotX: 0.0207958911 - rotY: 270.027039 - rotZ: 0.01677621 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230310 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 14e212 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Delve Too Deep - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.08289 - posY: 1.86691129 - posZ: -105.318573 - rotX: 0.0208076313 - rotY: 270.000061 - rotZ: 0.0167738479 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 370422 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3704': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 321cb7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Daisy's Tote Bag - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.1865 - posY: 1.29897082 - posZ: -74.796936 - rotX: 0.0208084341 - rotY: 270.0 - rotZ: 0.0167711563 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379619 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3796': - 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: '' - DragSelectable: true - GMNotes: '' - GUID: f57a6f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Wither (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 94.3716354 - posY: 1.53616381 - posZ: -13.6336412 - rotX: 359.988 - rotY: 270.833679 - rotZ: 353.443756 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 318703 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3187': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: The Fateful Step - DragSelectable: true - GMNotes: '' - GUID: 52a677 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ace of Rods (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 116.94 - posY: 1.39461422 - posZ: 32.5000076 - rotX: 359.987427 - rotY: 269.999878 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230346 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2236f6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Counterspell (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.41240823 - posZ: -4.00998259 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230362 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f2877e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sacrifice (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.40248215 - posZ: 32.7900238 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447836 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4478': - 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: Dreams of a Child - DragSelectable: true - GMNotes: '' - GUID: ea40f6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dream Diary (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.5937138 - posY: 1.59167707 - posZ: 9.419598 - rotX: 359.920135 - rotY: 269.992584 - rotZ: 0.016887974 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 377244 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3772': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 86feae - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Call of the Unknown - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -19.6113453 - posY: 3.17495871 - posZ: -96.34451 - rotX: 0.0208080951 - rotY: 270.0 - rotZ: 0.0167711359 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235121 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2351': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 098da7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Manual Dexterity (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -52.0126839 - posY: 1.29892731 - posZ: -73.92084 - rotX: 0.0208090562 - rotY: 270.0 - rotZ: 0.0167717729 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368521 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c4cf62 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bulletproof Vest (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 116.94 - posY: 1.39771616 - posZ: 21.0000038 - rotX: 359.987427 - rotY: 269.999817 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315248 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f57af7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: .41 Derringer (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.409518 - posZ: -11.2000046 - rotX: 359.987427 - rotY: 269.999847 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230345 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2ae3ce - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Song of the Dead (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.41178787 - posZ: -1.70998144 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368402 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b265c4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Deduction - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 0.16000621 - posY: 1.345219 - posZ: 80.55001 - rotX: 0.02081996 - rotY: 269.9646 - rotZ: 0.016761994 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368716 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2616': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: cdfd9f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Backstab - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500042 - posY: 1.34872425 - posZ: 57.5500031 - rotX: 0.0208148975 - rotY: 269.9749 - rotZ: 0.0167642422 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368514 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 603e29 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Smoking Pipe - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 57.27 - posY: 1.36595976 - posZ: 80.55 - rotX: 0.02080983 - rotY: 269.99408 - rotZ: 0.0167723168 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 232950 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2329': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Smarter Than He Lets On - DragSelectable: true - GMNotes: '' - GUID: f14dce - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Earl Sawyer - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.5583954 - posY: 1.3651762 - posZ: -51.63776 - rotX: 0.0208091978 - rotY: 270.0 - rotZ: 0.0167707857 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431557 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3790': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '394603' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Family Inheritance - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 7.289977 - posY: 1.47384119 - posZ: -58.3566551 - rotX: 0.02373747 - rotY: 269.918823 - rotZ: 4.809997 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 507400 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5074': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814231169/CC9DB1ECF956DC39CD66E66DE8F41D5F6CA4AD69/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6d5299 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Mysterious Raven - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -56.78255 - posY: 3.17006588 - posZ: -66.38102 - rotX: 0.02080836 - rotY: 269.9997 - rotZ: 0.0167712718 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 530700 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5307': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325035904695245/1986827BC5DD7C78A3B57362EECC7E5851274E9D/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: cd796e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Azure Flame (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.05531 - posY: 1.30390918 - posZ: -48.1632156 - rotX: 0.0208082926 - rotY: 270.000183 - rotZ: 0.0167712718 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430808 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2732': - 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: 9e5cd2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Curiosity - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 0.160005137 - posY: 1.34723866 - posZ: 87.4500046 - rotX: 0.02081934 - rotY: 269.9646 - rotZ: 0.0167605542 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430638 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3a0df6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scientific Theory (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.403983 - posZ: 21.2900238 - rotX: 359.987427 - rotY: 270.000061 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- 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: aec357 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Guardian of the Crystallizer - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 92.8113861 - posY: 1.56324077 - posZ: 29.4504681 - rotX: 359.9853 - rotY: 269.977234 - rotZ: 359.981079 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266216 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/NSozoRe.jpg - FaceURL: https://i.imgur.com/HLQOkvy.jpg - NumHeight: 5 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: Item. Weapon. Relic. Melee. - DragSelectable: true - GMNotes: '' - GUID: dc674e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Khopesh of the Abyss - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -35.6707649 - posY: 2.041185 - posZ: -100.924431 - rotX: 0.020810727 - rotY: 270.0 - rotZ: 0.0167692 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 444020 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4408': - 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: '' - DragSelectable: true - GMNotes: '' - GUID: 283e54 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Alchemical Transmutation (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.6973 - posY: 1.364044 - posZ: -55.3335571 - rotX: 0.0208053179 - rotY: 270.017761 - rotZ: 0.016775595 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374115 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3741': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1890d0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Stars of Hyades - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.30492 - posY: 2.19019938 - posZ: -81.69471 - rotX: 0.02080839 - rotY: 270.000031 - rotZ: 0.0167755783 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368828 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Mysterious Benefactress - DragSelectable: true - GMNotes: '' - GUID: 1ee492 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Madame Labranche - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 42.5700035 - posY: 1.35725486 - posZ: 69.05 - rotX: 0.0208162181 - rotY: 269.970184 - rotZ: 0.0167627446 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368511 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5cb973 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fine Clothes - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 57.2699966 - posY: 1.36797941 - posZ: 87.45 - rotX: 0.0208086763 - rotY: 269.994049 - rotZ: 0.0167718157 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430503 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2758': - 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: 9591ac - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Impromptu Barrier - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 45.97 - posY: 1.362529 - posZ: 82.85 - rotX: 0.0208036583 - rotY: 270.012939 - rotZ: 0.01677902 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226331 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7d4749 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Beat Cop - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.230008 - posY: 1.34245384 - posZ: 59.85 - rotX: 0.0208177976 - rotY: 269.969421 - rotZ: 0.0167637467 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 507700 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5077': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814240860/EFCD98DF505AEAACC2E9F9E968F19138B7E2DFA7/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d984a8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Cherished Keepsake (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -57.8605232 - posY: 3.169969 - posZ: -65.690834 - rotX: 0.0208087415 - rotY: 270.00058 - rotZ: 0.0167721659 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274609 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2746': - 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: From the Brink - DragSelectable: true - GMNotes: '' - GUID: 46187b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Five of Pentacles (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.4004482 - posZ: 16.4 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368416 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2304': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 60b353 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Preposterous Sketches - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.24000239 - posY: 1.337925 - posZ: 59.8499947 - rotX: 0.0208115336 - rotY: 269.986359 - rotZ: 0.0167706627 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 261703 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2617': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 99989c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Quick Thinking - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 31.7500019 - posY: 1.35601819 - posZ: 78.25 - rotX: 0.0208088942 - rotY: 270.000122 - rotZ: 0.0167740677 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368525 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 523b76 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Moment of Respite (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 116.94 - posY: 1.39957726 - posZ: 14.1 - rotX: 359.987427 - rotY: 269.999847 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226308 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d5cac6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Taunt - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6300049 - posY: 1.34974778 - posZ: 80.55 - rotX: 0.0207943153 - rotY: 270.027039 - rotZ: 0.0167732947 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379928 - 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: Untranslated - DragSelectable: true - GMNotes: '' - GUID: b81dcf - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dream Diary - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.2744427 - posY: 1.67508531 - posZ: 2.87569213 - rotX: 359.9198 - rotY: 269.9968 - rotZ: 0.01500414 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 535000 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2664': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734337699/0094A41451048DED809D1E4016E260260722ED5E/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 94ebe8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Arcane Studies (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -28.04534 - posY: 2.84537315 - posZ: -140.945343 - rotX: 0.0208085626 - rotY: 269.9999 - rotZ: 0.01677063 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 278010 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2780': - 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: Fearless Flatfoot - DragSelectable: true - GMNotes: '' - GUID: ae20e0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Alice Luxley - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -34.431 - posY: 1.32506227 - posZ: 54.60595 - rotX: 0.0208093189 - rotY: 269.99942 - rotZ: 0.0167746153 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368715 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2616': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: b8c93a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cheap Shot - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500042 - posY: 1.35007071 - posZ: 62.1500053 - rotX: 0.0208151955 - rotY: 269.974884 - rotZ: 0.0167636182 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440623 - 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: Cat General of Ulthar - DragSelectable: true - GMNotes: '' - GUID: e1aedf - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Miss Doyle (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.43 - posY: 1.54419959 - posZ: 37.4258842 - rotX: 359.974884 - rotY: 269.9931 - rotZ: 359.982422 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226320 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0d4eb9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Trench Knife - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.230004 - posY: 1.35053277 - posZ: 87.45 - rotX: 0.0208162982 - rotY: 269.9694 - rotZ: 0.0167616438 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277811 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2778': - 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: 1339b0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mr. "Rook" - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -43.8864021 - posY: 2.368725 - posZ: -89.90842 - rotX: 0.0208068751 - rotY: 270.00296 - rotZ: 180.016769 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230349 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 65b30d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Arcane Initiate (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76 - posY: 1.41488981 - posZ: -13.210041 - rotX: 359.987427 - rotY: 270.0008 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430654 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Freezing Variant - DragSelectable: true - GMNotes: '' - GUID: 9afe23 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Strange Solution (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.0500259 - posY: 1.41514981 - posZ: -20.11004 - rotX: 359.987427 - rotY: 270.0011 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368518 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ba560e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Trench Coat - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 57.27 - posY: 1.36326671 - posZ: 71.35 - rotX: 0.02081009 - rotY: 269.99408 - rotZ: 0.0167732555 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 441024 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4410': - 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: Markings of Isis - DragSelectable: true - GMNotes: '' - GUID: 66d5a3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Archaic Glyphs (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.97676 - posY: 1.36161959 - posZ: -63.2690926 - rotX: 0.0208061747 - rotY: 270.0178 - rotZ: 0.0167769343 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368820 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3688': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 593deb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Leather Coat - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -46.69558 - posY: 1.366081 - posZ: -59.2587624 - rotX: 0.020795757 - rotY: 270.0401 - rotZ: 180.016785 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368707 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2616': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 62cf25 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"I''m outta here!"' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 28.3500023 - posY: 1.35545671 - posZ: 80.55 - rotX: 0.02081474 - rotY: 269.974884 - rotZ: 0.01676473 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368619 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: dc3b07 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lone Wolf - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500027 - posY: 1.35556841 - posZ: 85.15 - rotX: 0.0208101571 - rotY: 269.9888 - rotZ: 0.01676966 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430647 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 19ab7c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Otherworldly Compass (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.4095664 - posZ: 0.590019166 - rotX: 359.987427 - rotY: 270.000122 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368850 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c077bf - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Against All Odds (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 110.15 - posY: 1.40789282 - posZ: -11.2000046 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430641 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7f99cc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Pathfinder (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.40584409 - posZ: 14.3900223 - rotX: 359.987427 - rotY: 270.000061 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 232941 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2329': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Madness. - DragSelectable: true - GMNotes: '' - GUID: fb943f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Across Space and Time - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.3010674 - posY: 1.36172926 - posZ: -55.04807 - rotX: 0.02080917 - rotY: 270.0 - rotZ: 0.0167706218 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226316 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: baef55 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Second Wind - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6300068 - posY: 1.34436178 - posZ: 62.1500053 - rotX: 0.0207944941 - rotY: 270.027039 - rotZ: 0.0167757757 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 378618 - 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: d6eda3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Agency Backup (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 112.024666 - posY: 1.39823854 - posZ: 23.0658474 - rotX: 359.987427 - rotY: 269.999481 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 376938 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3769': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 1f3880 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Smuggled Goods - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -63.3596954 - posY: 3.53167915 - posZ: -65.68801 - rotX: 0.0124424817 - rotY: 270.0001 - rotZ: 180.005081 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 534100 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5341': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325549672938028/EBDB6CD1A74F85316C33079EB5DEC87BBA994226/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4c9ed8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Daring Maneuver (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.332653 - posY: 1.617292 - posZ: 42.0650253 - rotX: 0.00416217139 - rotY: 269.977234 - rotZ: 0.0033495042 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527606 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2742': - 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: e2767a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cunning - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 31.7500019 - posY: 1.35871112 - posZ: 87.45 - rotX: 0.02080716 - rotY: 270.000122 - rotZ: 0.0167723987 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230319 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8a927c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scrying - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -25.0000019 - posY: 1.33540833 - posZ: 78.25 - rotX: 0.0207991749 - rotY: 270.031281 - rotZ: 0.0167850573 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226310 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 831b6b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Prepared for the Worst - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.6300049 - posY: 1.34840119 - posZ: 75.9500046 - rotX: 0.02079622 - rotY: 270.027039 - rotZ: 0.0167754125 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 534300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5343': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1483325549672938811/8307157C980A20698A6FC1BE27E18389A2D09AD3/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3a011c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Grotesque Statue (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 15.6462011 - posY: 1.71622229 - posZ: 42.2586327 - rotX: 1.86072671 - rotY: 269.9995 - rotZ: 0.00333905523 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 50fb37 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Take the Initiative - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 16.0300045 - posY: 1.35300207 - posZ: 87.45 - rotX: 0.0208121948 - rotY: 269.987427 - rotZ: 0.01676891 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230347 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ba1460 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bind Monster (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.41364908 - posZ: -8.609983 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984528 + rotZ: 0.0167718567 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -36950,142 +39830,7 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 265502 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2655': - 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: 7d3a27 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: All In (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.41820335 - posZ: -43.400013 - rotX: 359.987427 - rotY: 269.999847 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315244 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '... Or Are They?' - DragSelectable: true - GMNotes: '' - GUID: 9dd911 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lucky Dice (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.40517533 - posZ: 4.89999962 - rotX: 359.987427 - rotY: 269.999878 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 290207 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2902': - 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: Free from the Past - DragSelectable: true - GMNotes: '' - GUID: 2e5b03 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: "Death \u2022 XIII (1)" - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05002 - posY: 1.400881 - posZ: 32.7900352 - rotX: 359.987427 - rotY: 269.999847 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 312514 + CardID: 312512 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -37099,10 +39844,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Took You Long Enough + Description: In Way Over His Head DragSelectable: true GMNotes: '' - GUID: 726d1d + GUID: d99735 Grid: true GridProjection: false Hands: true @@ -37113,2634 +39858,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Valentino Rivas + Nickname: Jerome Davids SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 39.88332 - posY: 1.35615063 - posZ: 68.6109161 - rotX: 0.02080685 - rotY: 269.9994 - rotZ: 0.0167702865 + posX: 39.5597267 + posY: 1.354802 + posZ: 64.40544 + rotX: 0.0208125934 + rotY: 269.988464 + rotZ: 0.0167639647 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 450306 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4503': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f50a30 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Double or Nothing (Taboo) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.91212 - posY: 1.3438952 - posZ: -77.50387 - rotX: 0.0251247436 - rotY: 269.999847 - rotZ: 0.0118033281 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368809 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 2c2d9a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bait and Switch - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 45.97 - posY: 1.36118257 - posZ: 78.25 - rotX: 0.0208049417 - rotY: 270.012939 - rotZ: 0.0167780388 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430655 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Acidic Ichor - DragSelectable: true - GMNotes: '' - GUID: fa61ba - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Strange Solution (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05001 - posY: 1.41577017 - posZ: -22.40999 - rotX: 359.987427 - rotY: 270.000061 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315251 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d7dbac - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Streetwise (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.41199958 - posZ: -20.4000072 - rotX: 359.987427 - rotY: 269.999878 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 430656 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2915': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Restorative Concoction - DragSelectable: true - GMNotes: '' - GUID: 4874bc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Strange Solution (4) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 88.05001 - posY: 1.41639066 - posZ: -24.7099915 - rotX: 359.987427 - rotY: 270.000061 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448938 - 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: '' - DragSelectable: true - GMNotes: '' - GUID: 26922c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Spiritual Resolve (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.1415749 - posY: 1.30042791 - posZ: -66.1530762 - rotX: 0.0208079927 - rotY: 270.0001 - rotZ: 0.0167709365 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 371308 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3713': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d87128 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Jenny's Twin .45s - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 76.6732559 - posY: 1.52007174 - posZ: -48.314106 - rotX: 0.04478311 - rotY: 270.017731 - rotZ: 359.920624 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368816 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3688': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 88d3c0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: '"Look what I found!"' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.58142 - posY: 1.364494 - posZ: -63.58151 - rotX: 0.0207989458 - rotY: 270.040161 - rotZ: 180.0168 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 295504 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2955': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f3b3a9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Gilded Volto - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.8639259 - posY: 3.18059015 - posZ: -97.1056061 - rotX: 359.503632 - rotY: 269.998138 - rotZ: 0.0167150069 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- 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: ae16e8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Dream Parasite - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -23.6763325 - posY: 1.6884582 - posZ: 7.569965 - rotX: 359.9201 - rotY: 269.999939 - rotZ: 0.0168768261 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368627 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2615': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5690d1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Knuckleduster - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 24.9500046 - posY: 1.34950924 - posZ: 64.45 - rotX: 0.0208122581 - rotY: 269.98877 - rotZ: 0.0167700984 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277812 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2778': - 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: 8dce44 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Crack the Case - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -34.2288666 - posY: 1.32635069 - posZ: 58.7566338 - rotX: 0.0208084267 - rotY: 269.999451 - rotZ: 0.0167746413 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 231600 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2316': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017195287736529784/BEB850DCAA5497CC1A96E1603C0D3AFFE8B0F2BB/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: Advanced - DragSelectable: true - GMNotes: '' - GUID: cf41be - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Daisy's Tote Bag - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.50849 - posY: 1.30044091 - posZ: -69.37549 - rotX: 0.0208080076 - rotY: 270.0 - rotZ: 0.0167705547 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447731 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4477': - 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: 0d006f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Moonstone - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.3372574 - posY: 2.84537172 - posZ: -101.660507 - rotX: 0.0208083633 - rotY: 270.0 - rotZ: 0.0167707354 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235126 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2351': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: dac4f8 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scrying Mirror - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.19547 - posY: 1.29771376 - posZ: -75.35826 - rotX: 0.0207170267 - rotY: 270.31076 - rotZ: 0.0168823414 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274000 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2740': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Custom Marlin Model 1894 - DragSelectable: true - GMNotes: '' - GUID: '587589' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Becky - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.1976166 - posY: 1.36526275 - posZ: -62.9559174 - rotX: 0.02080465 - rotY: 270.015869 - rotZ: 0.01677605 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 504613 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4550': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Weakness - DragSelectable: true - GMNotes: '' - GUID: '313167' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Yaztaroth - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -41.1091042 - posY: 1.2648226 - posZ: 55.7025 - rotX: 0.0210862644 - rotY: 269.9919 - rotZ: 0.014994096 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 277509 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2775': - 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: '' - DragSelectable: true - GMNotes: '' - GUID: a00fca - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Banish (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -26.6736889 - posY: 1.566863 - posZ: 70.85531 - rotX: 0.01997196 - rotY: 269.999084 - rotZ: 0.0208501965 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 431009 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2737': - 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: Let Your Arrow Fly True - DragSelectable: true - GMNotes: '' - GUID: c4d436 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ace of Swords (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.40354943 - posZ: 16.5300255 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315235 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5fe780 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Moxie (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.40021229 - posZ: 23.300005 - rotX: 359.987427 - rotY: 269.999725 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235600 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2356': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Renowned Historian - DragSelectable: true - GMNotes: '' - GUID: c49b4b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Alejandro Vela - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.8602333 - posY: 3.17244 - posZ: -61.7880058 - rotX: 0.0208084844 - rotY: 269.999847 - rotZ: 0.0167707447 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368513 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2096': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0c859f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Painkillers - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 57.27 - posY: 1.36663294 - posZ: 82.85 - rotX: 0.0208111759 - rotY: 269.99408 - rotZ: 0.01677131 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 293214 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2932': - 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: Seeker - DragSelectable: true - GMNotes: '' - GUID: 0b12ac - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Scroll of Secrets (3) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -55.51326 - posY: 1.36290967 - posZ: -48.93328 - rotX: 0.0249342881 - rotY: 269.99054 - rotZ: -0.00200824486 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 274607 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2746': - 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: 0bea17 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Act of Desperation - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 45.97 - posY: 1.36387551 - posZ: 87.45 - rotX: 0.02080351 - rotY: 270.012939 - rotZ: 0.01677897 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 441025 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4410': - 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: 7686cb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Astounding Revelation - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 89.23474 - posY: 1.60116971 - posZ: 13.8044615 - rotX: 359.978638 - rotY: 270.006348 - rotZ: 359.946381 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447833 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4478': - 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: 3dc25c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Extensive Research (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -46.69135 - posY: 1.29797947 - posZ: -83.76117 - rotX: 0.0208081 - rotY: 270.0 - rotZ: 0.0167707074 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 447732 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4477': - 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: 4d9a97 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sharp Vision (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -49.5191231 - posY: 1.29761434 - posZ: -81.5001 - rotX: 0.0208087079 - rotY: 269.999939 - rotZ: 0.01677183 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 377042 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3770': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f91fd9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mitch Brown - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -48.353 - posY: 2.190368 - posZ: -89.69797 - rotX: 359.9792 - rotY: 270.0 - rotZ: 180.006226 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527416 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2666': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Enemy - DragSelectable: true - GMNotes: '' - GUID: b239d7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Mob Enforcer - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 74.1295853 - posY: 1.57301271 - posZ: 81.96535 - rotX: 0.0202451628 - rotY: 269.998047 - rotZ: 0.017438814 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230333 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '599209' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Protective Incantation (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.40372288 - posZ: 28.1900234 - rotX: 359.987427 - rotY: 269.999969 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 378863 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3788': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 785f68 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hoods - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 7.60880375 - posY: 1.4786005 - posZ: -49.8665657 - rotX: 0.0228390861 - rotY: 269.882355 - rotZ: 4.91904736 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 506200 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5062': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814175796/981A2197CE02C395D55C0BD06FDE47AB0BC239E2/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a781f4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '"I''ve got a plan!" (2)' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -58.3643456 - posY: 3.16920424 - posZ: -67.48278 - rotX: 0.0208080914 - rotY: 270.0013 - rotZ: 0.0167710669 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368827 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2097': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e66002 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lantern - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 42.57 - posY: 1.357928 - posZ: 71.35 - rotX: 0.020816328 - rotY: 269.970184 - rotZ: 0.0167607069 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440722 - 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: e3bd71 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Crystallizer of Dreams - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 92.95309 - posY: 1.40061021 - posZ: 29.4435387 - rotX: 359.9884 - rotY: 269.9784 - rotZ: 359.978058 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 293215 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2932': - 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: 6de21b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Knowledge is Power - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.55411 - posY: 1.53692091 - posZ: -53.7382545 - rotX: 0.0209390428 - rotY: 270.015747 - rotZ: 0.0191810168 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 528700 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5287': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1479946491544587394/E4523D4911728A4E0306C4D152B08F4E95F0A505/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: edfe0b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Mano a Mano (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -62.5320358 - posY: 1.30062222 - posZ: -55.0788574 - rotX: 0.02080834 - rotY: 270.000031 - rotZ: 0.0167706665 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 529300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5293': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1479946668214251171/F9BA27FD8A3D59ABD75F82936FDE6E92E36FF74C/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 47d116 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Counterpunch (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -62.8856239 - posY: 3.39667273 - posZ: -58.592556 - rotX: 0.0124938544 - rotY: 270.0 - rotZ: 180.009979 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266707 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2667': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011565208488842326/3FF786B2685526D7475E5EE6F2621F8853BBCEA3/ - NumHeight: 2 - NumWidth: 4 - Type: 0 - UniqueBack: false - Description: Untranslated - DragSelectable: true - GMNotes: '' - GUID: d2b81b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Cryptic Grimoire - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -37.392704 - posY: 1.70766068 - posZ: 60.29674 - rotX: 0.0206119381 - rotY: 269.9819 - rotZ: 0.01771983 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 380128 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3801': - 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: '' - DragSelectable: true - GMNotes: '' - GUID: db90e2 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ethereal Form - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 20.1006126 - posY: 1.52393556 - posZ: -4.153924 - rotX: 359.924347 - rotY: 270.001984 - rotZ: 0.0104675805 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 313501 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3135': - 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: Over the Threshold and Beyond - DragSelectable: true - GMNotes: '' - GUID: 05da68 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Seal of the Seventh Sign (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.75998 - posY: 1.3775233 - posZ: -47.71002 - rotX: 0.02080785 - rotY: 269.999878 - rotZ: 0.0167682189 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226346 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: da46e0 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Police Badge (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.4097532 - posZ: -6.469983 - rotX: 359.987427 - rotY: 270.000031 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 506900 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5069': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814228016/F0530B5A0869F4900E28229041E74AF1276C489F/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a283b4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Ineffable Truth - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -45.12862 - posY: 3.16907382 - posZ: -85.9105148 - rotX: 0.0208083726 - rotY: 270.0 - rotZ: 0.01677103 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 440922 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4409': - 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: c026c9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: .32 Colt (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -47.7927551 - posY: 1.36278141 - posZ: -59.5280762 - rotX: 0.020805249 - rotY: 270.017761 - rotZ: 0.0167758446 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 379617 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3796': - 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: '' - DragSelectable: true - GMNotes: '' - GUID: d24531 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Deny Existence (5) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 92.68603 - posY: 1.41275847 - posZ: -14.9164782 - rotX: 359.987061 - rotY: 270.0 - rotZ: 359.985779 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 505100 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5051': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1305431056814133007/5176F0B4012AA220389FFF427D604D723A6761AC/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a0e05d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: Galvanize (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -60.9882774 - posY: 12.3497763 - posZ: -61.70214 - rotX: 0.0208034758 - rotY: 270.018463 - rotZ: 0.0167775881 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230342 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8254d4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Blinding Light (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 80.76002 - posY: 1.40992677 - posZ: 5.190022 - rotX: 359.987427 - rotY: 270.000244 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545202 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 45cd73 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Truth from Fiction (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -58.762722 - posY: 3.28358555 - posZ: -76.61391 - rotX: 0.02080613 - rotY: 270.0092 - rotZ: 0.0167743526 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266705 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2667': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1011565208488842326/3FF786B2685526D7475E5EE6F2621F8853BBCEA3/ - NumHeight: 2 - NumWidth: 4 - Type: 0 - UniqueBack: false - Description: Insight. Blessed. - DragSelectable: true - GMNotes: '' - GUID: 30d9ca - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ward of Radiance - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -54.1240578 - posY: 1.99382424 - posZ: 34.2070541 - rotX: 359.932739 - rotY: 269.994415 - rotZ: 0.0141723724 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315250 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f2508d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hot Streak (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.4113791 - posZ: -18.1000061 - rotX: 359.987427 - rotY: 269.999847 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 448030 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '4480': - 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: '' - DragSelectable: true - GMNotes: '' - GUID: 26853e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Word of Command (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -53.18796 - posY: 1.29924214 - posZ: -71.38749 - rotX: 0.020774316 - rotY: 270.000275 - rotZ: 0.0167474784 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 230302 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2303': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 59b24f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Defiance - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -18.2000027 - posY: 1.33855116 - posZ: 80.55 - rotX: 0.0208174158 - rotY: 269.971 - rotZ: 0.016762618 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 374633 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3746': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 016b72 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: The King in Yellow - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -55.2623863 - posY: 2.183923 - posZ: -93.89774 - rotX: 0.02080724 - rotY: 270.004761 - rotZ: 0.016775541 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 315233 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3152': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: The Ferryman's Pay - DragSelectable: true - GMNotes: '' - GUID: 1dbc95 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Charon's Obol (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 102.75 - posY: 1.39835107 - posZ: 30.20001 - rotX: 359.987427 - rotY: 269.9998 - rotZ: 359.984528 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 545201 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '5452': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830656537158415/2EBB208AA994ED70FD0FEB02D4E4FE78FE43EE02/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c1d796 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Survival Knife (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -51.05881 - posY: 3.16396856 - posZ: -94.18238 - rotX: 0.020808924 - rotY: 269.999939 - rotZ: 0.01677181 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 293216 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2932': - 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: 0ce005 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Esoteric Atlas (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -59.42852 - posY: 1.51032472 - posZ: -53.8481 - rotX: 0.0210976042 - rotY: 270.016876 - rotZ: 0.0175880175 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 380230 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '3802': - 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: fb9b7e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Brute Force (1) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 19.9545345 - posY: 1.5229435 - posZ: -8.064844 - rotX: 359.9151 - rotY: 270.007782 - rotZ: 0.0103515983 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 226345 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2263': - BackIsHidden: true - BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: eea4ef - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Well Prepared (2) - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 95.87002 - posY: 1.40789211 - posZ: 0.4300183 - rotX: 359.987427 - rotY: 270.0 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 527236 - 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: 86cf9c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Unbound Beast - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -17.1196747 - posY: 1.67481875 - posZ: -7.70004559 - rotX: 359.9201 - rotY: 269.999939 - rotZ: 0.0168745462 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 368407 + CardID: 368416 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -39757,7 +39892,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: f69e10 + GUID: 60b353 Grid: true GridProjection: false Hands: true @@ -39768,33 +39903,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Seeking Answers + Nickname: Preposterous Sketches SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -3.23999381 - posY: 1.34398425 - posZ: 80.55001 - rotX: 0.0208114088 + posX: -3.24000239 + posY: 1.337925 + posZ: 59.8499947 + rotX: 0.0208115336 rotY: 269.986359 - rotZ: 0.0167681742 + rotZ: 0.0167706627 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 315243 + CardID: 368805 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '3152': + '2097': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -39802,7 +39937,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 2fba3b + GUID: 58c435 Grid: true GridProjection: false Hands: true @@ -39813,63 +39948,18 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Switchblade (2) + Nickname: Stunning Blow SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 102.75 - posY: 1.406416 - posZ: 0.299998581 - rotX: 359.987427 - rotY: 269.999878 - rotZ: 359.984558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266217 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: true - BackURL: https://i.imgur.com/NSozoRe.jpg - FaceURL: https://i.imgur.com/HLQOkvy.jpg - NumHeight: 5 - NumWidth: 10 - Type: 0 - UniqueBack: true - Description: Monster. Nightgaunt. Power. - DragSelectable: true - GMNotes: '' - GUID: cf96b9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Summoned Nightgaunt - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -46.42212 - posY: 2.36338925 - posZ: -96.24052 - rotX: 0.02081042 - rotY: 270.000031 - rotZ: 0.0167689342 + posX: 49.37 + posY: 1.361744 + posZ: 75.95 + rotX: 0.0208197571 + rotY: 269.9588 + rotZ: 0.0167563129 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -40035,18 +40125,18 @@ CustomDeck: NumWidth: 4 Type: 0 UniqueBack: false - '2668': + '2669': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734346234/4FA6E9B9034B9A95ECF035E84EAB76ED8A3B2DB1/ + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1597043896927362614/70DA6DB25DE90476346C7EA4FDC2297FD3A80E91/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - '2669': + '2670': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734347445/B6DDBDAE36CE2548EC420514F505418416752046/ + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1597043896927363108/189F8DCE708B9975ADE834B7066AE77332D1C4DF/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -42219,6 +42309,22 @@ CustomDeck: NumWidth: 10 Type: 0 UniqueBack: false + '5453': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734346234/4FA6E9B9034B9A95ECF035E84EAB76ED8A3B2DB1/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '5454': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1056604690734334657/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1056604690734347445/B6DDBDAE36CE2548EC420514F505418416752046/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false '75': BackIsHidden: true BackURL: https://i.imgur.com/EcbhVuh.jpg/ @@ -42228,892 +42334,894 @@ CustomDeck: Type: 0 UniqueBack: false DeckIDs: -- 450405 -- 294203 -- 226341 -- 226334 -- 533600 -- 450801 -- 430649 -- 376840 -- 230311 -- 226327 -- 447832 -- 528400 -- 368843 -- 529800 -- 430908 -- 293217 -- 368417 -- 226351 -- 368406 -- 545208 -- 368505 -- 430658 -- 368524 -- 368824 -- 527312 -- 230502 -- 313906 -- 368836 -- 374417 -- 368413 -- 430905 -- 370323 -- 235129 -- 368817 -- 315242 -- 527552 -- 368500 -- 368714 -- 315237 -- 277510 -- 315253 -- 368503 -- 368839 -- 526400 -- 447935 -- 368808 -- 448838 -- 315241 -- 368400 -- 507900 -- 430657 -- 314003 -- 372110 -- 235857 -- 235120 -- 379930 -- 447932 -- 230327 -- 293014 -- 368510 -- 448735 -- 447733 -- 274008 -- 448029 -- 368803 -- 430810 -- 312511 -- 448031 -- 380029 -- 527103 -- 368818 -- 541109 -- 235131 -- 430643 -- 449712 -- 533900 -- 431656 -- 292913 -- 450702 -- 368821 -- 235649 -- 230316 -- 230344 -- 373910 -- 368848 -- 368708 -- 368419 -- 368800 -- 277910 -- 368433 -- 463200 -- 539600 -- 292814 -- 374834 -- 368527 -- 368806 -- 368717 -- 430907 -- 226324 -- 230306 -- 312509 -- 7502 -- 370827 -- 226319 -- 226304 -- 441023 -- 378017 -- 235130 -- 545206 -- 235123 -- 368429 -- 380949 -- 368812 -- 431111 -- 292813 -- 368711 -- 368418 -- 507000 -- 266500 -- 374717 -- 526700 -- 230335 -- 315247 -- 377537 -- 277711 -- 374834 -- 545209 -- 368833 -- 379828 -- 527401 -- 368853 -- 261100 -- 235107 -- 230328 -- 293313 -- 368432 -- 226315 -- 374014 -- 274005 -- 368424 -- 379154 -- 226312 -- 506100 -- 448839 -- 235106 -- 371209 -- 277710 -- 313604 -- 368855 -- 370046 -- 232300 -- 295128 -- 368801 -- 537609 -- 290321 -- 230301 -- 448032 -- 368807 -- 526100 -- 226348 -- 226323 -- 545211 -- 369424 -- 440925 -- 314800 -- 440625 -- 230337 -- 274606 -- 376501 -- 368526 -- 443723 -- 380028 -- 262204 -- 368409 -- 527417 -- 235644 -- 313905 -- 266800 -- 368805 -- 438127 -- 314904 -- 230359 -- 230314 -- 541200 -- 368845 -- 527404 -- 380125 -- 230355 -- 534000 -- 380026 -- 368838 -- 376739 -- 378620 -- 455400 -- 379831 -- 505900 -- 379019 -- 274608 -- 368512 -- 233605 -- 463400 -- 274006 -- 465000 -- 530400 -- 527235 -- 274004 -- 230300 -- 529400 -- 506000 -- 378958 -- 235134 -- 278012 -- 545207 -- 368842 -- 277606 -- 534901 -- 464600 -- 235648 -- 226314 -- 235125 -- 368814 -- 315245 -- 230341 -- 368427 -- 441027 -- 374532 -- 368856 -- 276101 -- 430646 -- 449514 -- 507200 -- 438126 -- 444348 -- 314204 -- 235117 -- 497100 -- 371112 -- 235105 -- 545213 -- 530900 -- 431818 -- 380126 -- 369820 -- 378762 -- 232348 -- 233604 -- 374419 -- 315303 -- 533800 -- 447631 -- 233135 -- 231709 -- 379929 -- 226326 -- 313603 -- 277709 -- 368621 -- 448937 -- 230304 -- 277911 -- 379711 -- 444024 -- 235119 -- 368423 -- 534500 -- 473800 -- 226354 -- 274011 -- 438122 - 534700 -- 368629 -- 230317 -- 315255 -- 226318 -- 262200 -- 290320 -- 230312 -- 230336 -- 262202 -- 369721 -- 315236 -- 226357 -- 448519 -- 297101 -- 226307 -- 230331 -- 430660 -- 232951 -- 528900 -- 371013 -- 371605 -- 447632 -- 528600 -- 462900 -- 232904 -- 368804 -- 230353 -- 235603 -- 430809 -- 368428 -- 312512 -- 448200 -- 448738 -- 430501 -- 431008 -- 380025 -- 232949 -- 235133 -- 235840 -- 527605 -- 292912 -- 274003 -- 450207 -- 447934 -- 368626 -- 368832 -- 379018 -- 293016 -- 315261 -- 431115 -- 448737 -- 274007 -- 545203 -- 532200 -- 368841 -- 226337 -- 226340 -- 438124 -- 368625 -- 230339 -- 529200 -- 505200 -- 379830 -- 315238 -- 233607 -- 373819 -- 368705 -- 454100 -- 505800 -- 452504 -- 368852 -- 313502 -- 379827 -- 368860 -- 226336 -- 368520 -- 368630 -- 530800 -- 230330 -- 278846 -- 235127 -- 230308 -- 368412 -- 430653 -- 527561 -- 368522 -- 440721 -- 226329 -- 527418 -- 315262 -- 226311 -- 274002 -- 274001 -- 374264 -- 368408 -- 276200 -- 230360 -- 368517 -- 235118 -- 235108 -- 368622 -- 226347 -- 506500 -- 235128 -- 440626 -- 430648 -- 531500 -- 447734 -- 374935 -- 431731 -- 368403 -- 450108 -- 438128 -- 368710 -- 230322 -- 430635 -- 455300 -- 368618 -- 226328 -- 230325 -- 235109 -- 380229 -- 230350 -- 230313 -- 527400 -- 368811 -- 440624 -- 226322 -- 430650 -- 368421 -- 440926 -- 526500 -- 235116 -- 226309 -- 230343 -- 444021 -- 371565 -- 315252 -- 235135 -- 368415 -- 448837 -- 315256 -- 368504 -- 528300 -- 545200 -- 368706 -- 447633 -- 230303 -- 526000 -- 430640 -- 379931 -- 235132 -- 440724 -- 440813 -- 379555 -- 440627 -- 230305 -- 314000 -- 368509 -- 315249 -- 448840 -- 431007 -- 378018 -- 230361 -- 313301 -- 226325 -- 379253 -- 368802 -- 466112 -- 449034 -- 232900 -- 533500 -- 378617 -- 226332 -- 448936 -- 531600 -- 296500 -- 230340 -- 440814 -- 368422 -- 374014 -- 368628 -- 529500 -- 295501 -- 235136 -- 230356 -- 368831 -- 261704 -- 368859 -- 371907 -- 232332 -- 235111 -- 380127 -- 315257 -- 448613 -- 368425 -- 266704 -- 368810 -- 431110 -- 368405 -- 537612 -- 530500 -- 277608 -- 527238 -- 230321 -- 526800 -- 261101 -- 368502 -- 368826 -- 527700 -- 368846 -- 292915 -- 368426 -- 274100 -- 473700 -- 537608 -- 448033 -- 368840 -- 379618 -- 444260 -- 292816 -- 230324 -- 449035 -- 368420 -- 528800 -- 371466 -- 430906 -- 438123 -- 368431 -- 295502 -- 230326 -- 457600 -- 505300 -- 431205 -- 368507 -- 444451 -- 262201 -- 314905 -- 226305 -- 226321 -- 315239 -- 374418 -- 431425 -- 430639 -- 507800 -- 431006 -- 226343 -- 371704 -- 545205 -- 377141 -- 507500 -- 371806 -- 295503 -- 226358 -- 230307 -- 447835 -- 368861 -- 372011 -- 230354 -- 261102 -- 380228 -- 430652 -- 368623 -- 377436 -- 538609 -- 449811 -- 368854 -- 497000 -- 277605 -- 440622 -- 430644 -- 274010 -- 448034 -- 506400 -- 230318 -- 368823 -- 368819 -- 261700 -- 378621 -- 379829 -- 315260 -- 368501 -- 315259 -- 230348 -- 368516 -- 368709 -- 368713 -- 430645 -- 235822 -- 532300 -- 226333 -- 278011 -- 368523 -- 314105 -- 368844 -- 506300 -- 541300 -- 235113 -- 368404 -- 232333 -- 226317 -- 374330 -- 447834 -- 431207 -- 378019 -- 226359 -- 277607 -- 539500 -- 368620 -- 444022 -- 368411 -- 505000 -- 368631 -- 226339 -- 379022 -- 430642 -- 315258 -- 230332 -- 368624 -- 293015 -- 447630 -- 275732 - 296704 -- 266702 -- 226355 -- 226352 -- 368430 -- 312109 -- 235114 -- 368813 -- 277604 -- 534600 -- 527004 -- 526910 -- 226301 -- 230315 -- 230334 -- 292914 -- 454741 -- 527403 -- 315232 -- 430636 -- 235112 -- 379020 -- 226338 -- 463500 -- 430651 -- 277512 -- 226350 -- 368508 -- 527402 -- 368834 -- 315254 -- 368414 -- 449036 -- 226353 -- 230357 -- 449400 -- 277912 -- 368825 -- 230358 -- 545210 -- 379021 -- 377343 -- 266703 -- 276300 -- 527237 -- 230309 -- 226335 -- 293315 -- 368858 -- 277813 -- 266706 -- 292815 -- 226356 -- 368410 -- 450009 -- 368434 -- 226330 -- 233606 -- 378619 -- 370926 -- 235110 -- 262203 -- 235667 -- 226360 -- 438125 -- 527607 -- 527419 -- 507100 -- 368849 -- 449359 -- 230351 -- 440621 -- 261701 -- 226302 -- 226361 -- 449037 -- 232934 -- 379616 - 381050 -- 525800 -- 368815 -- 315234 -- 527608 -- 368822 -- 315246 -- 375016 -- 447933 -- 226313 -- 545214 -- 534902 -- 230323 -- 449613 -- 464100 -- 368857 -- 440720 -- 314002 -- 261702 -- 444147 -- 463300 -- 534400 -- 368401 -- 368506 -- 441026 -- 315304 -- 374014 -- 368847 -- 226344 -- 293314 -- 376600 -- 232907 -- 545204 -- 293013 -- 314802 -- 368515 -- 230320 -- 430659 -- 526300 -- 450900 -- 431206 -- 430637 -- 230603 -- 275733 -- 369945 -- 368519 -- 545212 -- 315240 -- 530300 -- 230329 -- 529600 -- 507300 -- 277511 -- 368712 -- 230352 -- 368851 -- 506700 -- 368837 -- 506600 -- 226342 -- 235122 -- 226303 -- 235115 -- 374420 -- 505600 -- 368928 -- 464000 -- 532700 -- 368830 -- 440924 -- 266900 -- 375129 -- 534800 -- 235124 -- 230338 -- 368829 -- 452300 -- 440923 -- 368528 -- 454740 -- 368835 -- 506800 -- 312510 -- 226349 -- 380027 -- 312513 -- 226306 -- 230310 -- 370422 -- 379619 -- 318703 -- 230346 -- 230362 -- 447836 -- 377244 -- 235121 -- 368521 -- 315248 -- 230345 -- 368402 -- 368716 -- 368514 -- 232950 -- 431557 -- 507400 -- 530700 -- 430808 -- 430638 -- 440723 -- 266216 -- 444020 -- 374115 -- 368828 -- 368511 -- 430503 -- 226331 -- 507700 -- 274609 -- 368416 -- 261703 -- 368525 -- 226308 -- 379928 -- 535000 -- 278010 -- 368715 -- 440623 -- 226320 -- 277811 -- 230349 -- 430654 -- 368518 -- 441024 -- 368820 -- 368707 -- 368619 -- 430647 -- 368850 -- 430641 -- 232941 -- 226316 -- 378618 -- 376938 -- 534100 -- 527606 -- 230319 -- 226310 -- 534300 -- 226300 -- 230347 -- 378016 -- 265502 -- 315244 -- 290207 -- 312514 -- 450306 -- 368809 -- 430655 -- 315251 -- 430656 -- 448938 -- 371308 -- 368816 -- 295504 -- 448736 -- 368627 -- 277812 -- 231600 -- 447731 -- 235126 -- 274000 +- 430636 +- 315259 - 504613 -- 277509 -- 431009 -- 315235 -- 235600 -- 368513 -- 293214 -- 274607 -- 441025 -- 447833 -- 447732 -- 377042 -- 527416 -- 230333 -- 378863 -- 506200 -- 368827 -- 440722 -- 293215 -- 528700 -- 529300 -- 266707 -- 380128 -- 313501 -- 226346 -- 506900 -- 440922 -- 379617 -- 505100 -- 230342 -- 545202 -- 266705 -- 315250 -- 448030 +- 262201 +- 368816 +- 447630 +- 261703 +- 368856 +- 235126 +- 315261 +- 233607 +- 7502 +- 527419 +- 235109 +- 528300 +- 226312 +- 312513 +- 430501 +- 447933 +- 431731 +- 274011 +- 545214 +- 430638 +- 277813 +- 235110 +- 368514 +- 430658 +- 314802 +- 292814 - 230302 +- 430808 +- 507300 +- 368809 +- 440923 +- 526400 +- 312510 +- 230352 +- 368522 +- 448519 +- 230359 +- 379020 +- 277912 +- 507400 +- 527606 +- 230342 +- 378762 +- 527607 +- 230343 +- 368716 +- 368832 +- 463500 +- 379931 +- 313301 +- 431207 +- 448031 +- 447732 +- 449613 +- 368845 +- 465000 +- 368400 +- 315251 +- 368808 +- 371704 +- 315235 +- 376600 - 374633 -- 315233 +- 370827 +- 440922 +- 368812 +- 430655 +- 374264 +- 226314 +- 430905 +- 230351 +- 545300 +- 295502 +- 226356 +- 277811 +- 532200 +- 235122 +- 368417 +- 293013 +- 230349 +- 430907 +- 440924 +- 430656 +- 430657 +- 373819 +- 293014 +- 368800 +- 226359 +- 450702 +- 545211 +- 430643 +- 534600 +- 226360 +- 314204 +- 370046 +- 368630 +- 277711 +- 431009 +- 368423 +- 235603 +- 293314 +- 290320 +- 448029 +- 235108 +- 368834 +- 447734 +- 230310 +- 230305 +- 226316 +- 275733 +- 527700 +- 230339 +- 506800 +- 449712 +- 314003 +- 232332 +- 507000 +- 368420 +- 368627 +- 368847 +- 261100 +- 274005 +- 226327 +- 539600 +- 379827 +- 440626 +- 368810 +- 368412 +- 230325 +- 448736 +- 230323 +- 450801 +- 527401 +- 315240 +- 368819 +- 537608 +- 506700 +- 261700 +- 440814 +- 230330 +- 235120 +- 371565 +- 368846 +- 452300 +- 455300 +- 230361 +- 274008 +- 533600 +- 449035 +- 441023 +- 368825 +- 235121 +- 230317 +- 448613 +- 370323 +- 506300 +- 368706 +- 371308 +- 368408 +- 230319 +- 230324 +- 541200 +- 292816 +- 371209 +- 545209 +- 431206 +- 448033 +- 368410 +- 314904 +- 235667 +- 526100 +- 315232 +- 277510 +- 277812 +- 230311 +- 466112 +- 315238 +- 444024 +- 235106 +- 235118 +- 430640 +- 368418 +- 534901 +- 368524 +- 379829 +- 274000 +- 231709 +- 532300 +- 378621 +- 232333 +- 315260 +- 230502 +- 368623 +- 230345 +- 534500 +- 266706 +- 226361 +- 444147 +- 368818 +- 464100 +- 526910 +- 233604 +- 431007 +- 368403 +- 230307 +- 314002 +- 527605 +- 368853 +- 448938 +- 431205 +- 368519 +- 526700 +- 369721 +- 505300 +- 379930 +- 529200 +- 368406 +- 274004 +- 368628 +- 290207 +- 450108 +- 368840 +- 449037 +- 232900 +- 230353 +- 368811 +- 226343 +- 431111 +- 541300 +- 314800 +- 368430 +- 505900 +- 440813 - 545201 -- 293216 -- 380230 -- 226345 -- 527236 -- 368407 +- 368511 +- 541109 +- 506400 +- 374420 +- 379616 +- 293217 +- 438124 +- 531600 +- 368852 +- 370422 +- 527417 +- 447835 +- 261702 +- 368839 +- 368402 +- 527004 +- 447836 +- 278010 +- 226318 +- 230362 +- 368829 +- 312514 +- 233606 +- 529400 +- 226346 +- 315236 +- 368815 +- 315258 +- 497000 +- 230335 +- 295504 +- 374419 +- 440723 +- 368820 +- 230313 +- 463400 +- 315253 +- 261704 +- 449036 +- 368817 +- 278012 +- 368813 +- 368851 +- 452504 +- 230322 +- 226335 +- 448034 +- 449514 +- 226336 +- 545205 +- 430644 +- 313501 +- 537612 +- 235132 +- 368712 +- 374330 +- 294203 +- 368523 +- 230360 +- 447731 +- 545202 +- 277608 +- 431656 +- 368618 +- 266702 +- 230347 +- 277911 +- 529800 +- 232951 +- 230306 +- 235111 +- 315239 +- 507200 +- 226305 +- 226344 +- 377537 +- 368405 +- 368512 +- 368824 +- 368826 +- 315237 +- 314105 +- 379619 +- 235131 +- 527400 +- 368414 +- 368424 +- 235123 +- 368528 +- 507900 +- 274003 +- 447633 +- 226311 +- 374717 +- 526300 +- 368848 +- 226304 +- 368521 +- 379019 +- 533900 +- 430908 +- 235648 +- 235644 +- 230354 +- 226308 +- 226339 +- 226307 +- 375129 +- 315250 +- 226353 +- 226331 +- 440621 +- 368801 +- 430906 +- 431008 +- 235857 +- 454741 +- 431006 +- 374532 +- 226341 +- 447632 +- 232934 +- 226351 +- 235130 +- 527416 +- 230328 +- 368503 +- 431557 +- 226306 +- 455400 +- 235127 +- 230337 +- 463200 +- 235822 +- 230336 +- 266705 +- 438128 +- 370926 +- 448737 +- 378863 +- 379154 +- 235117 +- 295128 +- 230350 +- 262204 +- 368838 +- 430639 +- 463300 +- 506000 +- 312509 +- 292912 +- 430642 +- 473700 +- 497100 +- 444021 +- 368928 +- 368714 +- 226342 +- 448030 +- 226309 +- 296500 +- 226333 +- 528400 +- 464600 +- 507100 +- 293214 +- 527404 +- 368807 +- 528800 +- 530700 +- 529300 +- 274608 +- 545400 +- 368422 +- 226357 +- 368821 +- 368425 +- 235840 +- 379830 +- 441024 +- 368411 +- 292913 +- 377436 +- 431110 +- 505000 +- 276101 +- 368711 +- 527561 +- 443723 +- 430648 +- 368428 +- 449034 +- 293215 +- 444022 +- 368828 +- 440722 +- 230333 +- 313906 +- 368631 +- 545200 +- 371112 +- 528900 +- 530500 +- 230346 +- 440623 +- 235136 +- 368715 +- 226340 +- 368621 +- 379021 +- 377141 +- 448738 +- 534000 +- 230334 +- 315241 +- 368708 +- 368717 +- 292914 +- 266900 +- 277512 - 315243 +- 226358 +- 530300 +- 368404 +- 374417 +- 530400 +- 371605 +- 369424 +- 235124 +- 545204 +- 265502 +- 368827 +- 374014 +- 368510 +- 230358 +- 315254 +- 430809 +- 368803 +- 447832 +- 226334 +- 534100 +- 368707 +- 527403 +- 527238 +- 379828 +- 371907 +- 368413 +- 368804 +- 430641 +- 293313 +- 449359 +- 278846 +- 534300 +- 378017 +- 505200 +- 527236 +- 377042 +- 368629 +- 441025 +- 528700 - 266217 +- 534400 +- 545203 +- 226320 +- 226350 +- 450009 +- 438125 +- 293016 +- 430654 +- 378617 +- 233605 +- 371806 +- 374014 +- 230326 +- 368855 +- 313905 +- 226328 +- 276300 +- 448937 +- 505100 +- 438126 +- 368849 +- 368823 +- 527312 +- 232907 +- 226338 +- 278011 +- 368619 +- 318703 +- 447834 +- 430649 +- 368508 +- 379618 +- 464000 +- 368859 +- 379253 +- 235114 +- 368844 +- 368527 +- 230357 +- 295501 +- 449400 +- 450405 +- 315245 +- 235115 +- 430660 +- 376739 +- 379617 +- 441026 +- 545208 +- 274002 +- 368426 +- 230312 +- 368501 +- 374418 +- 277710 +- 454740 +- 457600 +- 315252 +- 531500 +- 292813 +- 444020 +- 226324 +- 275732 +- 226302 +- 538609 +- 380027 +- 371013 +- 230304 +- 374834 +- 534800 +- 448837 +- 315303 +- 226323 +- 266216 +- 506100 +- 379711 +- 380025 +- 440721 +- 545206 +- 232348 +- 368710 +- 267000 +- 368833 +- 293315 +- 380949 +- 374935 +- 261102 +- 368507 +- 368625 +- 368427 +- 440926 +- 230603 +- 368854 +- 230348 +- 430652 +- 525800 +- 315246 +- 368518 +- 368506 +- 438127 +- 235105 +- 527237 +- 226310 +- 230314 +- 230318 +- 534902 +- 527402 +- 372011 +- 526800 +- 368841 +- 226319 +- 444451 +- 448200 +- 371466 +- 274100 +- 230320 +- 226325 +- 232904 +- 368806 +- 462900 +- 274606 +- 232300 +- 295503 +- 440925 +- 230303 +- 380230 +- 262200 +- 226329 +- 447934 +- 226322 +- 372110 +- 447932 +- 277604 +- 440724 +- 539500 +- 438123 +- 379555 +- 380028 +- 374115 +- 232950 +- 368837 +- 368525 +- 368822 +- 368814 +- 378620 +- 235107 +- 368433 +- 527418 +- 535000 +- 262202 +- 368429 +- 230327 +- 368622 +- 226321 +- 368520 +- 274001 +- 380029 +- 507800 +- 374834 +- 444260 +- 368843 +- 447935 +- 430659 +- 315257 +- 368500 +- 274007 +- 368857 +- 235125 +- 266500 +- 226354 +- 315255 +- 528600 +- 313604 +- 262203 +- 315256 +- 526000 +- 235128 +- 315248 +- 235113 +- 293216 +- 226326 +- 230340 +- 440622 +- 230344 +- 277607 +- 431115 +- 315244 +- 312109 +- 430503 +- 545213 +- 444348 +- 277910 +- 527103 +- 368505 +- 315262 +- 315233 +- 369820 +- 235600 +- 230332 +- 368513 +- 292915 +- 368860 +- 368517 +- 430651 +- 533500 +- 235135 +- 315242 +- 230356 +- 297101 +- 315247 +- 368504 +- 315249 +- 505600 +- 379018 +- 507700 +- 448735 +- 277606 +- 368502 +- 368713 +- 368419 +- 368515 +- 226300 +- 368526 +- 430810 +- 449811 +- 368835 +- 230315 +- 380126 +- 374014 +- 261101 +- 378018 +- 226349 +- 266704 +- 277509 +- 230338 +- 292815 +- 430653 +- 368409 +- 448840 +- 430645 +- 450306 +- 368516 +- 226355 +- 506200 +- 226352 +- 233135 +- 235134 +- 545207 +- 378019 +- 376938 +- 454100 +- 378619 +- 368705 +- 545212 +- 526500 +- 368415 +- 314905 +- 314000 +- 379831 +- 368620 +- 529600 +- 226348 +- 266707 +- 232949 +- 448839 +- 379928 +- 530800 +- 274607 +- 312511 +- 368401 +- 431818 +- 230329 +- 506500 +- 505800 +- 376501 +- 380228 +- 230341 +- 368434 +- 235649 +- 368624 +- 368830 +- 430646 +- 430647 +- 430637 +- 230331 +- 230308 +- 368431 +- 274609 +- 276200 +- 506600 +- 226313 +- 530900 +- 447631 +- 274010 +- 533800 +- 290321 +- 266703 +- 376840 +- 368858 +- 226315 +- 529500 +- 368709 +- 277511 +- 226317 +- 373910 +- 450207 +- 315304 +- 235129 +- 430650 +- 226347 +- 440625 +- 377343 +- 506900 +- 235112 +- 368850 +- 447833 +- 378958 +- 527552 +- 430635 +- 379929 +- 226303 +- 441027 +- 448032 +- 313502 +- 440627 +- 380128 +- 231600 +- 380127 +- 313603 +- 230300 +- 368626 +- 230321 +- 532700 +- 379022 +- 380229 +- 235133 +- 232941 +- 473800 +- 277605 +- 375016 +- 230316 +- 448936 +- 450900 +- 235116 +- 527235 +- 368836 +- 545210 +- 368831 +- 368432 +- 368407 +- 261701 +- 380026 +- 293015 +- 226337 +- 277709 +- 230309 +- 368509 +- 226301 +- 438122 +- 507500 +- 274006 +- 440720 +- 369945 +- 448838 +- 368842 +- 440624 +- 226330 +- 378618 +- 537609 +- 527608 +- 377244 +- 368861 +- 315234 +- 431425 +- 230301 +- 226345 +- 368421 +- 230355 +- 368802 +- 226332 +- 380125 +- 235119 +- 447733 +- 378016 +- 312512 +- 368416 +- 368805 Description: '' DragSelectable: true GMNotes: '' @@ -43134,12 +43242,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -63.98766 - posY: 2.397812 - posZ: -64.03428 - rotX: 0.0204414222 - rotY: 270.037048 - rotZ: 180.547363 + posX: -64.15776 + posY: 2.39961338 + posZ: -62.2739868 + rotX: 0.0207998063 + rotY: 270.0371 + rotZ: 180.016785 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d/Deck All Weaknesses dd549a.yaml b/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d/Deck All Weaknesses dd549a.yaml index 634d82b0f..52ef3900f 100644 --- a/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d/Deck All Weaknesses dd549a.yaml +++ b/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d/Deck All Weaknesses dd549a.yaml @@ -1768,12 +1768,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -63.44048 - posY: 1.5308485 - posZ: -61.51356 - rotX: 0.020801466 - rotY: 270.0421 - rotZ: 180.016769 + posX: -63.15143 + posY: 1.55246592 + posZ: -62.54553 + rotX: 0.0415141061 + rotY: 270.0271 + rotZ: 181.179932 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079.yaml index 50e941356..1d33aebac 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079.yaml @@ -5,21 +5,20 @@ ColorDiffuse: r: 1.0 ContainedObjects: - !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml' -- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile 8492ab.yaml' -- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml' -- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile fddfd9.yaml' -- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml' -- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml' -- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile 24d517.yaml' - !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml' - !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml' - !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml' -- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile 6e7a56.yaml' -- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile 1acd75.yaml' - !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml' - !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml' - !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml' -- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile 500f37.yaml' +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml' +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml' +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml' +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml' +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile ebba4e.yaml' +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml' +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile 6aef66.yaml' +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml' CustomMesh: CastShadows: true ColliderURL: '' @@ -58,11 +57,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 1.755457 - posY: 1.57838857 - posZ: -14.1878443 + posX: 1.75858521 + posY: 1.57838249 + posZ: -14.194293 rotX: 359.931335 - rotY: 315.0091 + rotY: 315.009155 rotZ: 359.955139 scaleX: 3.0 scaleY: 3.0 diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 1acd75.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 1acd75.yaml deleted file mode 100644 index 4f68b7c29..000000000 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 1acd75.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/nEmqjmj.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 1acd75 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -51.6586151 - posY: 2.02992082 - posZ: -21.2687454 - rotX: 359.920135 - rotY: 269.9889 - rotZ: 0.0168871637 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 24d517.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 24d517.yaml deleted file mode 100644 index 910ed084c..000000000 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 24d517.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/uIx8jbY.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 24d517 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 52.0736542 - posY: 3.165107 - posZ: -53.4640465 - rotX: 359.9243 - rotY: 270.013336 - rotZ: 0.0304882564 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 500f37.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 500f37.yaml deleted file mode 100644 index f10521984..000000000 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 500f37.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/stbBxtx.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 500f37 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -20.2417126 - posY: 1.59164739 - posZ: -23.6889458 - rotX: 0.0168829281 - rotY: 179.988861 - rotZ: 0.0798751041 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile b644d2.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 6aef66.yaml similarity index 83% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile b644d2.yaml rename to unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 6aef66.yaml index 551967ab5..0e00ce8f9 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile b644d2.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 6aef66.yaml @@ -16,7 +16,7 @@ CustomImage: Description: '' DragSelectable: true GMNotes: '' -GUID: b644d2 +GUID: 6aef66 Grid: true GridProjection: false Hands: false @@ -32,12 +32,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 9.334796 - posY: 3.539172 - posZ: -32.01145 - rotX: 358.701019 - rotY: 270.018433 - rotZ: 3.09290361 + posX: -50.0944862 + posY: 1.634682 + posZ: 5.086566 + rotX: 359.920135 + rotY: 269.9747 + rotZ: 0.01690285 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 8492ab.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 8492ab.yaml deleted file mode 100644 index 5986fad8d..000000000 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 8492ab.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/btEtVfd.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 8492ab -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -49.8755226 - posY: 2.01484728 - posZ: -21.03237 - rotX: 359.9243 - rotY: 270.0133 - rotZ: 0.0304881129 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile fddfd9.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile ebba4e.yaml similarity index 82% rename from unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile fddfd9.yaml rename to unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile ebba4e.yaml index 048263c0c..f3259a9f4 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile fddfd9.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile ebba4e.yaml @@ -16,7 +16,7 @@ CustomImage: Description: '' DragSelectable: true GMNotes: '' -GUID: fddfd9 +GUID: ebba4e Grid: true GridProjection: false Hands: false @@ -32,12 +32,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 46.7219124 - posY: 3.16227055 - posZ: -56.90724 - rotX: 359.924255 - rotY: 270.0135 - rotZ: 0.0305096786 + posX: -51.7606544 + posY: 2.03479266 + posZ: 5.70610571 + rotX: 359.920135 + rotY: 269.97464 + rotZ: 0.01690663 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml index 2464af641..af0a9660d 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml @@ -11,7 +11,7 @@ CustomImage: Type: 2 ImageScalar: 1.0 ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/1plY463.png + ImageURL: https://i.imgur.com/yfs8gHq.png WidthScale: 0.0 Description: '' DragSelectable: true @@ -32,9 +32,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.69980025 - posY: 4.58219337 - posZ: -15.1453028 + posX: -3.95810056 + posY: 4.58267355 + posZ: -14.7436066 rotX: 0.0 rotY: 260.0 rotZ: 0.0 diff --git a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6.yaml b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6.yaml index 36330d326..24ca995e5 100644 --- a/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6.yaml +++ b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6.yaml @@ -3,6 +3,13 @@ ColorDiffuse: b: 0.9999998 g: 0.992168248 r: 0.9999998 +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' CustomMesh: CastShadows: true ColliderURL: '' @@ -37,7 +44,6 @@ MeasureMovement: false MeshIndex: -1 Name: Custom_Model_Bag Nickname: Clue Counter Swapper -Number: 0 Snap: true Sticky: true Tooltip: false diff --git a/unpacked/Custom_Token Doom counter 19768a.ttslua b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Doom counter 19768a.ttslua similarity index 100% rename from unpacked/Custom_Token Doom counter 19768a.ttslua rename to unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Doom counter 19768a.ttslua diff --git a/unpacked/Custom_Token Doom counter 19768a.yaml b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Doom counter 19768a.yaml similarity index 100% rename from unpacked/Custom_Token Doom counter 19768a.yaml rename to unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Doom counter 19768a.yaml diff --git a/unpacked/Custom_Token Resources 3f22e5.ttslua b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 3f22e5.ttslua similarity index 100% rename from unpacked/Custom_Token Resources 3f22e5.ttslua rename to unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 3f22e5.ttslua diff --git a/unpacked/Custom_Token Resources 3f22e5.yaml b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 3f22e5.yaml similarity index 100% rename from unpacked/Custom_Token Resources 3f22e5.yaml rename to unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 3f22e5.yaml diff --git a/unpacked/Custom_Token Resources 4111de.ttslua b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 4111de.ttslua similarity index 100% rename from unpacked/Custom_Token Resources 4111de.ttslua rename to unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 4111de.ttslua diff --git a/unpacked/Custom_Token Resources 4111de.yaml b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 4111de.yaml similarity index 100% rename from unpacked/Custom_Token Resources 4111de.yaml rename to unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 4111de.yaml diff --git a/unpacked/Custom_Token Resources 891403.ttslua b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 891403.ttslua similarity index 100% rename from unpacked/Custom_Token Resources 891403.ttslua rename to unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 891403.ttslua diff --git a/unpacked/Custom_Token Resources 891403.yaml b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 891403.yaml similarity index 100% rename from unpacked/Custom_Token Resources 891403.yaml rename to unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources 891403.yaml diff --git a/unpacked/Custom_Token Resources db85d6.ttslua b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources db85d6.ttslua similarity index 100% rename from unpacked/Custom_Token Resources db85d6.ttslua rename to unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources db85d6.ttslua diff --git a/unpacked/Custom_Token Resources db85d6.yaml b/unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources db85d6.yaml similarity index 100% rename from unpacked/Custom_Token Resources db85d6.yaml rename to unpacked/Custom_Model_Bag Clue Counter Swapper d919d6/Custom_Token Resources db85d6.yaml diff --git a/unpacked/Custom_Model_Bag Core 2585f4.yaml b/unpacked/Custom_Model_Bag Core 2585f4.yaml index a5f6e822d..4ee19d37f 100644 --- a/unpacked/Custom_Model_Bag Core 2585f4.yaml +++ b/unpacked/Custom_Model_Bag Core 2585f4.yaml @@ -75,9 +75,9 @@ Transform: posX: -9.742432 posY: 1.30662918 posZ: -53.5765457 - rotX: 0.020809086 + rotX: 0.0208091419 rotY: 270.003143 - rotZ: 0.016771771 + rotZ: 0.0167718157 scaleX: 0.5 scaleY: 0.139652729 scaleZ: 0.5 diff --git a/unpacked/Custom_Model_Bag Core 64a613.yaml b/unpacked/Custom_Model_Bag Core 64a613.yaml index a384224b9..65aae7da0 100644 --- a/unpacked/Custom_Model_Bag Core 64a613.yaml +++ b/unpacked/Custom_Model_Bag Core 64a613.yaml @@ -49,12 +49,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 51.7483444 - posY: 1.41776872 - posZ: 28.5301743 + posX: 51.74845 + posY: 1.41776776 + posZ: 28.5301952 rotX: 359.920135 rotY: 269.9981 - rotZ: 0.0168750379 + rotZ: 0.0168756526 scaleX: 1.0 scaleY: 0.139652729 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850.yaml index 2baf5d266..f2d10c819 100644 --- a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850.yaml +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850.yaml @@ -47,12 +47,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 33.6209145 - posY: 3.20942283 - posZ: -62.90131 - rotX: 359.983215 - rotY: 270.0 - rotZ: 0.00356987072 + posX: 38.2295761 + posY: 2.969025 + posZ: -72.48198 + rotX: 359.971344 + rotY: 270.000122 + rotZ: 0.00612510229 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Yig's Venom 386576.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Yig's Venom 386576.yaml index 74ab85cc1..fac11c898 100644 --- a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Yig's Venom 386576.yaml +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Yig's Venom 386576.yaml @@ -5,24 +5,24 @@ ColorDiffuse: r: 0.713235259 ContainedObjects: - Autoraise: true - CardID: 235742 + CardID: 269900 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2357': + '2699': BackIsHidden: true BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 + FaceURL: http://cloud-3.steamusercontent.com/ugc/1597043896927310894/224D88E486BCF3DCCA4F956CA928CC7FD510EECA/ + NumHeight: 1 + NumWidth: 1 Type: 0 UniqueBack: false Description: Power. DragSelectable: true GMNotes: '' - GUID: 84a2af + GUID: b04c08 Grid: true GridProjection: false Hands: true @@ -32,19 +32,19 @@ ContainedObjects: LuaScript: '' LuaScriptState: '' MeasureMovement: false - Name: Card + Name: CardCustom Nickname: Serpent's Call SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -4.091322 - posY: 1.604437 - posZ: 12.38707 - rotX: 359.919739 - rotY: 270.001282 - rotZ: 0.0168352034 + posX: 12.2496042 + posY: 1.58150578 + posZ: -28.01414 + rotX: 359.952026 + rotY: 270.004547 + rotZ: 180.934448 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -238,8 +238,16 @@ CustomDeck: NumWidth: 10 Type: 0 UniqueBack: false + '2699': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1597043896927310894/224D88E486BCF3DCCA4F956CA928CC7FD510EECA/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false DeckIDs: -- 235742 +- 269900 - 235741 - 235741 - 235740 @@ -264,12 +272,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 15.6644306 - posY: 3.39796019 - posZ: -88.74546 - rotX: 0.501330435 - rotY: 269.9966 - rotZ: 359.9608 + posX: 12.2617464 + posY: 3.37012362 + posZ: -36.9871063 + rotX: 359.920654 + rotY: 269.9915 + rotZ: 0.017039448 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Guardian 8e36c7.yaml b/unpacked/Custom_Model_Bag Guardian 8e36c7.yaml index dc4a0cced..f46f21fe5 100644 --- a/unpacked/Custom_Model_Bag Guardian 8e36c7.yaml +++ b/unpacked/Custom_Model_Bag Guardian 8e36c7.yaml @@ -5,8 +5,6 @@ ColorDiffuse: r: 1.0 ContainedObjects: - !include 'Custom_Model_Bag Guardian 8e36c7/Custom_Model_Bag Guardian 0b0fb1.yaml' -- !include 'Custom_Model_Bag Guardian 8e36c7/Card Blood Eclipse (1) 4a0555.yaml' -- !include 'Custom_Model_Bag Guardian 8e36c7/Card Survival Knife (2) a74bc0.yaml' - !include 'Custom_Model_Bag Guardian 8e36c7/Card Empty Vessel (4) 043971.yaml' - !include 'Custom_Model_Bag Guardian 8e36c7/Card Flamethrower (5) 066c18.yaml' - !include 'Custom_Model_Bag Guardian 8e36c7/Card Custom Ammunition (3) 0c278c.yaml' @@ -28,6 +26,7 @@ ContainedObjects: - !include 'Custom_Model_Bag Guardian 8e36c7/Card Shotgun (4) 3a622d.yaml' - !include 'Custom_Model_Bag Guardian 8e36c7/Card Stand Together (3) 3accaf.yaml' - !include 'Custom_Model_Bag Guardian 8e36c7/Card Springfield M1903 (4) 3b042e.yaml' +- !include 'Custom_Model_Bag Guardian 8e36c7/Card Blood Eclipse (1) 4a0555.yaml' - !include 'Custom_Model_Bag Guardian 8e36c7/Card Blood Eclipse (3) 537351.yaml' - !include 'Custom_Model_Bag Guardian 8e36c7/Card Extra Ammunition (1) 5761c7.yaml' - !include 'Custom_Model_Bag Guardian 8e36c7/Card Fool me once... (1) 596620.yaml' @@ -48,6 +47,7 @@ ContainedObjects: - !include 'Custom_Model_Bag Guardian 8e36c7/Card Vicious Blow (2) 8f5533.yaml' - !include 'Custom_Model_Bag Guardian 8e36c7/Card Heroic Rescue (2) 93381d.yaml' - !include 'Custom_Model_Bag Guardian 8e36c7/Card Stick to the Plan (3) a26425.yaml' +- !include 'Custom_Model_Bag Guardian 8e36c7/Card Survival Knife (2) a74bc0.yaml' - !include 'Custom_Model_Bag Guardian 8e36c7/Card Ever Vigilant (1) ab620e.yaml' - !include 'Custom_Model_Bag Guardian 8e36c7/Card Mk 1 Grenades (4) afef79.yaml' - !include 'Custom_Model_Bag Guardian 8e36c7/Card Bandolier (2) bdffae.yaml' diff --git a/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Agency Backup (5) f54b74.yaml b/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Agency Backup (5) f54b74.yaml index a8b37aeb7..b489e2628 100644 --- a/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Agency Backup (5) f54b74.yaml +++ b/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Agency Backup (5) f54b74.yaml @@ -36,9 +36,9 @@ Transform: posX: 7.07654667 posY: 1.32210255 posZ: -68.06011 - rotX: 0.0208089128 + rotX: 0.0208087917 rotY: 269.9992 - rotZ: 0.0167709682 + rotZ: 0.0167709161 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Blackjack (2) e56d1d.yaml b/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Blackjack (2) e56d1d.yaml index 15bf7364d..b3b46805d 100644 --- a/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Blackjack (2) e56d1d.yaml +++ b/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Blackjack (2) e56d1d.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 10.6296377 + posX: 10.6296358 posY: 1.32272327 posZ: -70.34808 - rotX: 0.0208086744 + rotX: 0.0208088327 rotY: 269.9993 - rotZ: 0.016770985 + rotZ: 0.0167707056 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Blood Eclipse (1) 4a0555.yaml b/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Blood Eclipse (1) 4a0555.yaml index 807e5c94d..b7078314a 100644 --- a/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Blood Eclipse (1) 4a0555.yaml +++ b/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Blood Eclipse (1) 4a0555.yaml @@ -36,9 +36,9 @@ Transform: posX: 19.3436 posY: 1.29519081 posZ: -54.2679 - rotX: 0.0208084174 + rotX: 0.0208083745 rotY: 270.000732 - rotZ: 0.0167715773 + rotZ: 0.0167714488 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Enchanted Blade (3) 5cfb72.yaml b/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Enchanted Blade (3) 5cfb72.yaml index 8f76aae22..5ab6930af 100644 --- a/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Enchanted Blade (3) 5cfb72.yaml +++ b/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Enchanted Blade (3) 5cfb72.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 10.6138544 + posX: 10.6138525 posY: 1.31733394 posZ: -88.74001 - rotX: 0.020801194 + rotX: 0.0208015386 rotY: 270.0246 - rotZ: 0.0167801045 + rotZ: 0.0167800263 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Guardian 8e36c7/Card First Aid (3) 80d5e3.yaml b/unpacked/Custom_Model_Bag Guardian 8e36c7/Card First Aid (3) 80d5e3.yaml index b92e4ed20..659a909a9 100644 --- a/unpacked/Custom_Model_Bag Guardian 8e36c7/Card First Aid (3) 80d5e3.yaml +++ b/unpacked/Custom_Model_Bag Guardian 8e36c7/Card First Aid (3) 80d5e3.yaml @@ -36,9 +36,9 @@ Transform: posX: 10.6296787 posY: 1.31801057 posZ: -86.4480438 - rotX: 0.0208087787 + rotX: 0.0208088867 rotY: 269.9991 - rotZ: 0.0167708732 + rotZ: 0.01677095 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Guardian 8e36c7/Card I've had worse... (2) e3ae5c.yaml b/unpacked/Custom_Model_Bag Guardian 8e36c7/Card I've had worse... (2) e3ae5c.yaml index 35e6010a2..634aaf839 100644 --- a/unpacked/Custom_Model_Bag Guardian 8e36c7/Card I've had worse... (2) e3ae5c.yaml +++ b/unpacked/Custom_Model_Bag Guardian 8e36c7/Card I've had worse... (2) e3ae5c.yaml @@ -36,9 +36,9 @@ Transform: posX: 19.3436317 posY: 1.28980494 posZ: -72.66767 - rotX: 0.020808747 + rotX: 0.0208087619 rotY: 269.9992 - rotZ: 0.0167708956 + rotZ: 0.01677075 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Keen Eye (3) 22256f.yaml b/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Keen Eye (3) 22256f.yaml index d43653ff9..0ed48cd84 100644 --- a/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Keen Eye (3) 22256f.yaml +++ b/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Keen Eye (3) 22256f.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 10.6295538 + posX: 10.6295519 posY: 1.31868374 posZ: -84.1480255 - rotX: 0.0208089147 + rotX: 0.02080882 rotY: 269.999268 - rotZ: 0.0167709 + rotZ: 0.0167705454 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Police Badge (2) 2901ee.yaml b/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Police Badge (2) 2901ee.yaml index a074b40da..2ab53ffd0 100644 --- a/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Police Badge (2) 2901ee.yaml +++ b/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Police Badge (2) 2901ee.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: 10.6296329 - posY: 1.32137668 + posY: 1.3213768 posZ: -74.9481354 - rotX: 0.0208086744 - rotY: 269.99942 - rotZ: 0.0167711489 + rotX: 0.0208086874 + rotY: 269.9995 + rotZ: 0.0167710725 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Spiritual Resolve (5) 7ab680.yaml b/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Spiritual Resolve (5) 7ab680.yaml index 084f68273..084e23a35 100644 --- a/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Spiritual Resolve (5) 7ab680.yaml +++ b/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Spiritual Resolve (5) 7ab680.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 7.07654047 - posY: 1.32479537 + posX: 7.076542 + posY: 1.32479548 posZ: -58.8604927 - rotX: 0.0208036229 - rotY: 270.016663 - rotZ: 0.0167772267 + rotX: 0.0208035763 + rotY: 270.0167 + rotZ: 0.0167773981 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Springfield M1903 (4) 3b042e.yaml b/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Springfield M1903 (4) 3b042e.yaml index f16ee0f59..83987cf0b 100644 --- a/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Springfield M1903 (4) 3b042e.yaml +++ b/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Springfield M1903 (4) 3b042e.yaml @@ -36,9 +36,9 @@ Transform: posX: 7.07654238 posY: 1.32681513 posZ: -51.9604759 - rotX: 0.0208085924 + rotX: 0.0208088011 rotY: 269.9994 - rotZ: 0.0167709533 + rotZ: 0.016770931 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Stick to the Plan (3) a26425.yaml b/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Stick to the Plan (3) a26425.yaml index 2e7c6bc13..26259a7d9 100644 --- a/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Stick to the Plan (3) a26425.yaml +++ b/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Stick to the Plan (3) a26425.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 10.6316814 + posX: 10.6316833 posY: 1.31935775 posZ: -81.84825 - rotX: 0.0208085943 + rotX: 0.02080885 rotY: 269.9992 - rotZ: 0.0167708136 + rotZ: 0.01677091 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Well Prepared (2) 1fc1f4.yaml b/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Well Prepared (2) 1fc1f4.yaml index c2c0eb710..96963c9eb 100644 --- a/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Well Prepared (2) 1fc1f4.yaml +++ b/unpacked/Custom_Model_Bag Guardian 8e36c7/Card Well Prepared (2) 1fc1f4.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 10.6296339 + posX: 10.62963 posY: 1.32406974 posZ: -65.74808 - rotX: 0.0208086353 + rotX: 0.0208086558 rotY: 269.9992 - rotZ: 0.01677088 + rotZ: 0.0167708453 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Leaked Items 42cd6e.yaml b/unpacked/Custom_Model_Bag Leaked Items 42cd6e.yaml index be7a7ee46..5db5b6936 100644 --- a/unpacked/Custom_Model_Bag Leaked Items 42cd6e.yaml +++ b/unpacked/Custom_Model_Bag Leaked Items 42cd6e.yaml @@ -47,12 +47,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 29.9582272 + posX: 29.9582348 posY: 3.04995441 - posZ: -26.9725819 - rotX: 0.07006087 - rotY: 134.999985 - rotZ: 0.0459756069 + posZ: -26.9725761 + rotX: 0.0700458139 + rotY: 135.000015 + rotZ: 0.0459772125 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Leaked Innsmouth Conspiracy Items 9a6604.yaml b/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Leaked Innsmouth Conspiracy Items 9a6604.yaml index 328e2a7b0..5f2b73fbc 100644 --- a/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Leaked Innsmouth Conspiracy Items 9a6604.yaml +++ b/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Leaked Innsmouth Conspiracy Items 9a6604.yaml @@ -1,16 +1,19 @@ Autoraise: true ColorDiffuse: - b: 0.426828951 - g: 0.0453597456 - r: 0.268001527 + b: 0.4268289 + g: 0.0453597233 + r: 0.2680015 ContainedObjects: - !include 'Bag Leaked Innsmouth Conspiracy Items 9a6604/Custom_Tile Bless b2b7be.yaml' - !include 'Bag Leaked Innsmouth Conspiracy Items 9a6604/Custom_Tile Curse 678891.yaml' +- !include 'Bag Leaked Innsmouth Conspiracy Items 9a6604/Card Predestined 59c726.yaml' - !include 'Bag Leaked Innsmouth Conspiracy Items 9a6604/Card Ward of Radiance 30d9ca.yaml' - !include 'Bag Leaked Innsmouth Conspiracy Items 9a6604/Card Tides of Fate 39f9ef.yaml' -- !include 'Bag Leaked Innsmouth Conspiracy Items 9a6604/Card Predestined 59c726.yaml' +- !include 'Bag Leaked Innsmouth Conspiracy Items 9a6604/CardCustom Sword Cane 756ec2.yaml' - !include 'Bag Leaked Innsmouth Conspiracy Items 9a6604/Card Faustian Bargain 5fdda4.yaml' - !include 'Bag Leaked Innsmouth Conspiracy Items 9a6604/Card Cryptic Grimoire d2b81b.yaml' +- !include 'Bag Leaked Innsmouth Conspiracy Items 9a6604/CardCustom Rite of Sanctification + cc17f6.yaml' - !include 'Bag Leaked Innsmouth Conspiracy Items 9a6604/Card Crisis of Faith d91dac.yaml' - !include 'Bag Leaked Innsmouth Conspiracy Items 9a6604/Card Amanda Sharpe 8fffaa.yaml' - !include 'Bag Leaked Innsmouth Conspiracy Items 9a6604/Card Sister Mary 3344d1.yaml' @@ -35,12 +38,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 30.6698532 - posY: 7.2928 - posZ: -28.04419 - rotX: 359.9841 - rotY: -0.00148448441 - rotZ: 359.949982 + posX: 26.1670532 + posY: 4.116576 + posZ: -31.0135021 + rotX: 359.993958 + rotY: -0.000449978223 + rotZ: 359.9714 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Leaked Innsmouth Conspiracy Items 9a6604/CardCustom Rite of Sanctification cc17f6.yaml b/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Leaked Innsmouth Conspiracy Items 9a6604/CardCustom Rite of Sanctification cc17f6.yaml new file mode 100644 index 000000000..1ff581124 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Leaked Innsmouth Conspiracy Items 9a6604/CardCustom Rite of Sanctification cc17f6.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267000 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2670': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1597043896927363108/189F8DCE708B9975ADE834B7066AE77332D1C4DF/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: cc17f6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: Rite of Sanctification +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 28.5372562 + posY: 4.03139925 + posZ: -5.4641304 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168741811 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Leaked Innsmouth Conspiracy Items 9a6604/CardCustom Sword Cane 756ec2.yaml b/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Leaked Innsmouth Conspiracy Items 9a6604/CardCustom Sword Cane 756ec2.yaml new file mode 100644 index 000000000..e5e11f2c7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Items 42cd6e/Bag Leaked Innsmouth Conspiracy Items 9a6604/CardCustom Sword Cane 756ec2.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 266900 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2669': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1597043896927362614/70DA6DB25DE90476346C7EA4FDC2297FD3A80E91/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 756ec2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: Sword Cane +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 23.947361 + posY: 3.55853343 + posZ: -2.27673078 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 0.0168732274 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb.ttslua b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb.ttslua rename to unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78.ttslua diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78.yaml new file mode 100644 index 000000000..94a3ccefa --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78.yaml @@ -0,0 +1,99 @@ +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: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring + e1caf1.yaml' +- !include 'Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch + Safari 1fae15.yaml' +- !include 'Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543.yaml' +- !include 'Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators + 05109d.yaml' +- !include 'Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring + 52d102.yaml' +- !include 'Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project + Cerulean 4c07bf.yaml' +- !include 'Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Custom_PDF VariantOptional + Rules c627fc.yaml' +- !include 'Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon + 2cea4e.yaml' +- !include 'Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep + Secrets 3da6dd.yaml' +- !include 'Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian + f040a6.yaml' +- !include 'Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon + e4069f.yaml' +- !include 'Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29.yaml' +- !include 'Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Custom_PDF Campaign Guide + 9af38c.yaml' +- !include 'Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding + Road 61801e.yaml' +- !include 'Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments + From The Unknown 13ed7d.yaml' +- !include 'Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To + An Existing Campaign 7b57ad.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/1597043896926982160/40A0068DAB05395205E184765110430CAADDA2CF/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 75fe78 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Pokemon Eldritch Edition 75fe78.ttslua' +LuaScriptState: '{"ml":{"05109d":{"lock":false,"pos":{"x":-3.12650632858276,"y":1.12496554851532,"z":-50.2695999145508},"rot":{"x":359.979156494141,"y":90.0000305175781,"z":359.983215332031}},"13ed7d":{"lock":false,"pos":{"x":12.2512159347534,"y":1.28292465209961,"z":11.9866123199463},"rot":{"x":0.0799700021743774,"y":89.9940567016602,"z":359.983093261719}},"1fae15":{"lock":false,"pos":{"x":12.1805124282837,"y":1.27355718612671,"z":-20.1692981719971},"rot":{"x":0.0799751281738281,"y":89.9954376220703,"z":359.983062744141}},"2cea4e":{"lock":false,"pos":{"x":66.0026016235352,"y":1.11216926574707,"z":-58.8017997741699},"rot":{"x":359.979156494141,"y":89.9912261962891,"z":359.983215332031}},"3c1b29":{"lock":false,"pos":{"x":33.1884002685547,"y":1.10052704811096,"z":80.7595977783203},"rot":{"x":359.979156494141,"y":89.9969177246094,"z":359.983215332031}},"3da6dd":{"lock":false,"pos":{"x":12.2621269226074,"y":1.27820086479187,"z":-4.00931167602539},"rot":{"x":0.0799639001488686,"y":89.997917175293,"z":359.983093261719}},"4c07bf":{"lock":false,"pos":{"x":12.2919178009033,"y":1.2710862159729,"z":-28.0307159423828},"rot":{"x":0.0799626559019089,"y":90.0000762939453,"z":359.983093261719}},"52d102":{"lock":false,"pos":{"x":12.2132120132446,"y":1.27584874629974,"z":-12.2319269180298},"rot":{"x":0.079963743686676,"y":89.9945907592773,"z":359.983062744141}},"61801e":{"lock":false,"pos":{"x":12.1700191497803,"y":1.28535890579224,"z":19.8675327301025},"rot":{"x":0.0799596309661865,"y":89.9972686767578,"z":359.983093261719}},"7b57ad":{"lock":false,"pos":{"x":16.2712287902832,"y":1.27489924430847,"z":3.76079654693604},"rot":{"x":0.0799755975604057,"y":89.9922409057617,"z":359.983093261719}},"9af38c":{"lock":false,"pos":{"x":4.95001363754272,"y":1.4647376537323,"z":-33.5225410461426},"rot":{"x":359.920104980469,"y":270.034729003906,"z":0.0168236587196589}},"c627fc":{"lock":false,"pos":{"x":15.9633131027222,"y":1.45811069011688,"z":-3.8863251209259},"rot":{"x":359.920135498047,"y":269.972961425781,"z":0.0169105026870966}},"d14543":{"lock":false,"pos":{"x":66.4962005615234,"y":1.11257517337799,"z":80.5900955200195},"rot":{"x":359.979156494141,"y":89.9930877685547,"z":359.983215332031}},"e1caf1":{"lock":false,"pos":{"x":12.170919418335,"y":1.28772258758545,"z":27.8930416107178},"rot":{"x":0.079961784183979,"y":89.9711837768555,"z":359.983062744141}},"e4069f":{"lock":false,"pos":{"x":33.2299995422363,"y":1.10042154788971,"z":-58.2793045043945},"rot":{"x":359.979156494141,"y":89.9846878051758,"z":359.983215332031}},"f040a6":{"lock":false,"pos":{"x":12.1407260894775,"y":1.28064274787903,"z":3.70839524269104},"rot":{"x":0.0799625217914581,"y":89.99755859375,"z":359.983093261719}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Pokemon Eldritch Edition +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.4524879 + posY: 1.43240261 + posZ: -13.1238527 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687411 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0.ttslua b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0.ttslua rename to unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad.ttslua diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad.yaml new file mode 100644 index 000000000..c42a765ff --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad.yaml @@ -0,0 +1,57 @@ +Autoraise: true +ColorDiffuse: + b: 0.7691502 + g: 0.00138099981 + r: 0.792683 +ContainedObjects: +- !include 'Bag Adding Pokemon To An Existing Campaign 7b57ad/DeckCustom Cave Encounter + Set 21f22b.yaml' +- !include 'Bag Adding Pokemon To An Existing Campaign 7b57ad/Custom_PDF Adding Pokemon + To An Existing Campaign 24307e.yaml' +- !include 'Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Water Assets 40a95c.yaml' +- !include 'Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Field Encounter + Set 5a83e7.yaml' +- !include 'Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Town Assets 6ddd26.yaml' +- !include 'Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Town Encounter + Set 89c0e9.yaml' +- !include 'Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Water Encounter + Set b6d6c5.yaml' +- !include 'Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Cave Assets b7a6b0.yaml' +- !include 'Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Rare Assets be6d22.yaml' +- !include 'Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Forest Encounter + Set e1bed4.yaml' +- !include 'Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Forest Assets ee0503.yaml' +- !include 'Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Rare Encounter + Set ee6e52.yaml' +- !include 'Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Field Assets f11def.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 7b57ad +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Adding Pokemon To An Existing Campaign 7b57ad.ttslua' +LuaScriptState: '{"ml":{"21f22b":{"lock":false,"pos":{"x":23.7867,"y":1.5257,"z":11.8444},"rot":{"x":359.9201,"y":269.9989,"z":180.0169}},"24307e":{"lock":false,"pos":{"x":22.6854,"y":1.4547,"z":16.4143},"rot":{"x":359.9201,"y":270.1111,"z":0.0167}},"40a95c":{"lock":false,"pos":{"x":20.4373,"y":1.5215,"z":-1.8652},"rot":{"x":359.9201,"y":270.0012,"z":0.0169}},"5a83e7":{"lock":false,"pos":{"x":23.9592,"y":1.5294,"z":8.708},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"6ddd26":{"lock":false,"pos":{"x":20.3348,"y":1.5179,"z":1.6556},"rot":{"x":359.9201,"y":270.0023,"z":0.0169}},"89c0e9":{"lock":false,"pos":{"x":23.9188,"y":1.5225,"z":1.6996},"rot":{"x":359.9201,"y":269.999,"z":180.0169}},"b6d6c5":{"lock":false,"pos":{"x":23.9174,"y":1.5264,"z":-1.5911},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"b7a6b0":{"lock":false,"pos":{"x":20.3626,"y":1.5257,"z":11.7763},"rot":{"x":359.9201,"y":269.9994,"z":0.0169}},"be6d22":{"lock":false,"pos":{"x":20.4106,"y":1.564,"z":-4.8205},"rot":{"x":359.9201,"y":269.9987,"z":0.0169}},"e1bed4":{"lock":false,"pos":{"x":23.9889,"y":1.5283,"z":5.1671},"rot":{"x":359.9201,"y":269.9991,"z":180.0169}},"ee0503":{"lock":false,"pos":{"x":20.3852,"y":1.5237,"z":5.2528},"rot":{"x":359.9201,"y":270.0102,"z":0.0169}},"ee6e52":{"lock":false,"pos":{"x":23.7733,"y":1.5593,"z":-4.8458},"rot":{"x":359.9201,"y":269.9989,"z":180.0169}},"f11def":{"lock":false,"pos":{"x":20.2209,"y":1.5249,"z":8.6264},"rot":{"x":359.9201,"y":269.9857,"z":0.0169}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Adding Pokemon To An Existing Campaign +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.2712326 + posY: 1.27489889 + posZ: 3.76079416 + rotX: 0.0799738839 + rotY: 89.99243 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Custom_PDF Adding Pokemon To An Existing Campaign 24307e.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Custom_PDF Adding Pokemon To An Existing Campaign 24307e.yaml new file mode 100644 index 000000000..7879d524a --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Custom_PDF Adding Pokemon To An Existing Campaign 24307e.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomPDF: + PDFPage: 0 + PDFPageOffset: -1 + PDFPassword: '' + PDFUrl: http://cloud-3.steamusercontent.com/ugc/1495712136742905094/0E2D78DD5C69931BAAA80E1357E44B0394709161/ +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 24307e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_PDF +Nickname: Adding Pokemon To An Existing Campaign +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 22.6854038 + posY: 1.45471716 + posZ: 16.4143 + rotX: 359.920074 + rotY: 270.111084 + rotZ: 0.0167185 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Cave Assets b7a6b0.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Cave Assets b7a6b0.yaml new file mode 100644 index 000000000..c83e48262 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Cave Assets b7a6b0.yaml @@ -0,0 +1,506 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 276000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 28ad19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dome Fossil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.43021 + posY: 3.33734965 + posZ: 1.117001 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2d3f57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Helix Fossil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.480196 + posY: 3.33802247 + posZ: -0.3717696 + rotX: 359.920135 + rotY: 270.000183 + rotZ: 0.01687269 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2497cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Clefairy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.2599373 + posY: 3.33678246 + posZ: -1.96771 + rotX: 359.920135 + rotY: 269.9997 + rotZ: 0.0168736074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c2a365 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Diglett + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.5718117 + posY: 3.33679867 + posZ: -4.944156 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168743674 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276005 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bf95cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Electabuzz + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.3659534 + posY: 2.63316679 + posZ: 3.024432 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.01687498 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276006 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c68f6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Geodude + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.0426083 + posY: 2.63131785 + posZ: 0.1585164 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.0168749578 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4c1091 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Magmar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.3674431 + posY: 2.63160038 + posZ: -1.18842065 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.0168737378 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 30c0ed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Paras + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.01258 + posY: 2.69782448 + posZ: -3.52421618 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168742836 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e85f66 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rhyhorn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.2396679 + posY: 2.69764948 + posZ: -3.85343742 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168733541 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fe9c8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Zubat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.312952 + posY: 2.60885954 + posZ: 0.362745047 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168739017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 276000 +- 276001 +- 276003 +- 276004 +- 276005 +- 276006 +- 276007 +- 276008 +- 276009 +- 276002 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: b7a6b0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Cave Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.3626041 + posY: 1.5256604 + posZ: 11.7763014 + rotX: 359.920135 + rotY: 269.99942 + rotZ: 0.016877817 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Field Assets f11def.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Field Assets f11def.yaml new file mode 100644 index 000000000..dd43818e5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Field Assets f11def.yaml @@ -0,0 +1,506 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e90ce8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Abra + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.8231449 + posY: 3.334493 + posZ: -0.122313604 + rotX: 359.920135 + rotY: 269.98645 + rotZ: 0.0168930441 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1ee60a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bellsprout + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.5623131 + posY: 3.33399367 + posZ: -3.52830243 + rotX: 359.920135 + rotY: 269.98645 + rotZ: 0.0168919433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a9dc3f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Doduo + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.3840923 + posY: 2.46407485 + posZ: -5.99315643 + rotX: 359.920135 + rotY: 269.9863 + rotZ: 0.0168926176 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1efdcd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ekans + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.0839672 + posY: 2.46520615 + posZ: -8.093622 + rotX: 359.920135 + rotY: 269.986359 + rotZ: 0.0168926157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 343cd4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nidoran F + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.6191635 + posY: 2.629498 + posZ: 0.681380033 + rotX: 359.920135 + rotY: 269.987183 + rotZ: 0.0168904755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 500a5d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nidoran M + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.390501 + posY: 2.62785769 + posZ: -2.30231643 + rotX: 359.920135 + rotY: 269.986176 + rotZ: 0.0168934651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6d764b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Oddish + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.0155773 + posY: 2.69697285 + posZ: -4.513911 + rotX: 359.920135 + rotY: 269.986145 + rotZ: 0.01689301 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6e065b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tangela + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.31674 + posY: 2.470587 + posZ: -7.54046631 + rotX: 359.920135 + rotY: 269.985962 + rotZ: 0.0168925468 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7868a7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ponyta + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.366148 + posY: 2.62348557 + posZ: 1.05293834 + rotX: 359.920135 + rotY: 269.98587 + rotZ: 0.0168922767 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3ab700 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Spearow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6734047 + posY: 2.69943285 + posZ: -3.39988565 + rotX: 359.920135 + rotY: 269.9858 + rotZ: 0.0168950055 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267111 +- 267112 +- 267113 +- 267114 +- 267116 +- 267117 +- 267118 +- 267119 +- 267120 +- 267110 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: f11def +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Field Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.2209015 + posY: 1.52493024 + posZ: 8.6264 + rotX: 359.920135 + rotY: 269.985626 + rotZ: 0.0168956611 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Field Encounter Set 5a83e7.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Field Encounter Set 5a83e7.yaml new file mode 100644 index 000000000..06351191f --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Field Encounter Set 5a83e7.yaml @@ -0,0 +1,598 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 35a6ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.245244 + posY: 1.47548389 + posZ: 5.59152174 + rotX: 359.920349 + rotY: 269.999542 + rotZ: 0.0153214335 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f06b3f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.5190783 + posY: 1.51723635 + posZ: 5.155181 + rotX: 359.9343 + rotY: 269.9997 + rotZ: 0.0128307054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b03c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2364569 + posY: 1.55164921 + posZ: 5.44123554 + rotX: 359.932739 + rotY: 269.9997 + rotZ: 0.0138072092 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 79dc6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.1293 + posY: 1.56135058 + posZ: 5.235817 + rotX: 359.934021 + rotY: 269.9997 + rotZ: 0.0141922077 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6b2656 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.7548189 + posY: 1.57123911 + posZ: 4.91537237 + rotX: 359.936 + rotY: 269.9997 + rotZ: 0.0184148718 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '175081' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.5734129 + posY: 1.58989215 + posZ: 6.10362339 + rotX: 359.932922 + rotY: 269.9997 + rotZ: 0.0135182422 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4258bb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.1697912 + posY: 1.59997523 + posZ: 5.784685 + rotX: 359.933563 + rotY: 269.9997 + rotZ: 0.0130977156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8b2534 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.1433659 + posY: 1.60960484 + posZ: 5.629472 + rotX: 359.9336 + rotY: 269.9997 + rotZ: 0.0133823939 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 148a5c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4305687 + posY: 1.61886609 + posZ: 5.63184452 + rotX: 359.933228 + rotY: 269.999664 + rotZ: 0.0139843039 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d31608 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.1135187 + posY: 1.4764483 + posZ: 8.606658 + rotX: 359.9214 + rotY: 269.999664 + rotZ: 0.008276335 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 784ffd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.7753048 + posY: 1.515142 + posZ: 8.600131 + rotX: 359.95105 + rotY: 269.999664 + rotZ: 0.009926532 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e08626 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.7752342 + posY: 1.54268146 + posZ: 8.600154 + rotX: 359.926727 + rotY: 269.999451 + rotZ: 0.0155431563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267819 +- 267818 +- 267817 +- 267816 +- 267815 +- 267813 +- 267812 +- 267811 +- 267810 +- 267809 +- 267809 +- 267809 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 5a83e7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Field Encounter Set +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 23.9592018 + posY: 1.5293709 + posZ: 8.708002 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Forest Assets ee0503.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Forest Assets ee0503.yaml new file mode 100644 index 000000000..04768b282 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Forest Assets ee0503.yaml @@ -0,0 +1,522 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '758550' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mankey + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.8041649 + posY: 3.33958864 + posZ: -5.61646461 + rotX: 359.9201 + rotY: 270.009247 + rotZ: 0.01686123 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9d6b1d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pikachu + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.9746418 + posY: 2.46499729 + posZ: -8.568453 + rotX: 359.920135 + rotY: 270.009369 + rotZ: 0.0168602429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d7ece7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Venonat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.79514 + posY: 2.92251754 + posZ: -11.5775766 + rotX: 359.920135 + rotY: 270.009369 + rotZ: 0.0168604981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 384ac6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vulpix + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.2543049 + posY: 2.92140484 + posZ: -14.5726986 + rotX: 359.920135 + rotY: 270.00946 + rotZ: 0.0168606173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b1beac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scyther + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.3251476 + posY: 2.69740725 + posZ: -4.66743565 + rotX: 359.920135 + rotY: 270.009644 + rotZ: 0.01685975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 570df0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Exeggcute + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.8016453 + posY: 2.47026658 + posZ: -7.358378 + rotX: 359.920135 + rotY: 270.0097 + rotZ: 0.0168606974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271929 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2719': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bbe4d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Metapod (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.5048161 + posY: 3.24653959 + posZ: -17.393074 + rotX: 359.920135 + rotY: 269.997131 + rotZ: 0.0168789662 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2690': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 340a11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kakuna (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.4232521 + posY: 6.23916435 + posZ: -20.1188431 + rotX: 359.920135 + rotY: 269.9964 + rotZ: 0.0168797933 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3e28de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Weedle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.7035522 + posY: 2.611235 + posZ: -10.4724226 + rotX: 359.920135 + rotY: 270.0098 + rotZ: 0.0168600138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5862bb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Caterpie + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.3306561 + posY: 2.611096 + posZ: -12.36759 + rotX: 359.9201 + rotY: 270.009979 + rotZ: 0.0168603268 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2690': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2719': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267223 +- 267224 +- 267225 +- 267226 +- 267227 +- 267228 +- 271929 +- 269024 +- 267222 +- 267221 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ee0503 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Forest Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.3852024 + posY: 1.52370787 + posZ: 5.2528 + rotX: 359.9201 + rotY: 270.010254 + rotZ: 0.0168601032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Forest Encounter Set e1bed4.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Forest Encounter Set e1bed4.yaml new file mode 100644 index 000000000..058c65c55 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Forest Encounter Set e1bed4.yaml @@ -0,0 +1,598 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e0fc2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.55809 + posY: 1.4726795 + posZ: 4.9362216 + rotX: 359.927 + rotY: 270.034546 + rotZ: 359.9593 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6bc2d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.2322025 + posY: 1.50317276 + posZ: 4.56675339 + rotX: 0.02361183 + rotY: 270.100281 + rotZ: 0.0265604481 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7fc688 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.8186016 + posY: 1.54918277 + posZ: 4.41500759 + rotX: 359.9331 + rotY: 269.999756 + rotZ: 0.0139340349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ec761d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.091814 + posY: 1.5587337 + posZ: 5.63553858 + rotX: 359.931854 + rotY: 269.999725 + rotZ: 0.0127415834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0bda8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.43559 + posY: 1.56892383 + posZ: 4.616964 + rotX: 359.933746 + rotY: 269.999725 + rotZ: 0.0141278161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 688f9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.842989 + posY: 1.57823849 + posZ: 5.03023434 + rotX: 359.933228 + rotY: 269.999725 + rotZ: 0.0139535209 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6d1b9b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.2421932 + posY: 1.58840823 + posZ: 4.525725 + rotX: 359.9342 + rotY: 269.999725 + rotZ: 0.0143275689 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 30c002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9022007 + posY: 1.59849739 + posZ: 4.84357834 + rotX: 359.921 + rotY: 270.005157 + rotZ: 0.01582711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0aad31 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6961946 + posY: 1.54074144 + posZ: 5.58039 + rotX: 2.27879524 + rotY: 270.0572 + rotZ: 0.0191300511 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '817763' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6910419 + posY: 1.57863247 + posZ: 5.49776554 + rotX: 2.28761959 + rotY: 270.056946 + rotZ: 0.0170882381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 95b213 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3433533 + posY: 1.47456408 + posZ: 7.842694 + rotX: 359.920868 + rotY: 269.9998 + rotZ: 0.01188529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b5d5a0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3442135 + posY: 1.5125773 + posZ: 7.84460354 + rotX: 359.935455 + rotY: 269.999756 + rotZ: 0.008050943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267829 +- 267828 +- 267827 +- 267826 +- 267825 +- 267824 +- 267823 +- 267822 +- 267820 +- 267820 +- 267821 +- 267821 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e1bed4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Forest Encounter Set +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 23.9889011 + posY: 1.52828681 + posZ: 5.16710043 + rotX: 359.920135 + rotY: 269.999054 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Rare Assets be6d22.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Rare Assets be6d22.yaml new file mode 100644 index 000000000..9ec2bc2b7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Rare Assets be6d22.yaml @@ -0,0 +1,1008 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 270859 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2708': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f37da0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Wigglytuff (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.1643677 + posY: 2.29466033 + posZ: -92.286 + rotX: 0.0208087415 + rotY: 269.999939 + rotZ: 0.01677116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269541 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2695': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '290982' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Poliwhirl (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.49959326 + posY: 2.35844254 + posZ: -73.42042 + rotX: 0.020809222 + rotY: 269.998779 + rotZ: 0.0167715568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2704': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1bfcd3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Graveler (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.501009 + posY: 2.41560912 + posZ: -75.69878 + rotX: 0.0208076611 + rotY: 269.996979 + rotZ: 0.01676834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2720': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9ae052 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Raichu (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.4154949 + posY: 2.08696342 + posZ: -97.68598 + rotX: 359.332825 + rotY: 269.998322 + rotZ: 0.0167983361 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2688': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 056b24 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pidgeotto (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9011421 + posY: 1.985616 + posZ: -100.131729 + rotX: 0.02080906 + rotY: 269.998535 + rotZ: 0.0167711265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2685': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 215bb7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Exeggutor (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.5850182 + posY: 2.34497166 + posZ: -93.904686 + rotX: 359.332825 + rotY: 269.99646 + rotZ: 0.0168202147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268925 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2689': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '775582' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kingler (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9140272 + posY: 2.3305428 + posZ: -84.201416 + rotX: 0.0208111536 + rotY: 269.9973 + rotZ: 0.0167711135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2682': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 48a727 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gloom (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.5786 + posY: 2.32966423 + posZ: -67.9397659 + rotX: 0.0208100118 + rotY: 269.996643 + rotZ: 0.0167700313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272757 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2727': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a3cbef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Weepinbell (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.28058 + posY: 2.3290453 + posZ: -69.50996 + rotX: 0.0208090339 + rotY: 269.9997 + rotZ: 0.0167709049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2717': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f66d99 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Golbat (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.10876 + posY: 2.32665467 + posZ: -76.22074 + rotX: 0.0208082721 + rotY: 269.996857 + rotZ: 0.0167695377 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2692': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 68facf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Clefable (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.3180523 + posY: 2.29423618 + posZ: -96.46822 + rotX: 0.02081172 + rotY: 269.9958 + rotZ: 0.0167714711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267753 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 69cfd0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Snorlax + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.514061 + posY: 2.30767155 + posZ: -61.1594658 + rotX: 0.0208094958 + rotY: 269.9975 + rotZ: 0.01677081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267752 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dcb4c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lickitung + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.539299 + posY: 2.54712415 + posZ: -63.35171 + rotX: 0.0208097566 + rotY: 269.9975 + rotZ: 0.01677087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267751 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f49176 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lapras + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.71938 + posY: 2.41880083 + posZ: -64.34725 + rotX: 0.02080993 + rotY: 269.99762 + rotZ: 0.0167701133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267749 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bebe7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dratini + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.2413425 + posY: 2.419513 + posZ: -61.6512146 + rotX: 0.0208100267 + rotY: 269.997772 + rotZ: 0.0167699959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267750 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bcdb4e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kanaskhan + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.81132 + posY: 2.54641271 + posZ: -68.02298 + rotX: 0.0208092052 + rotY: 269.997742 + rotZ: 0.0167703629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267748 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b453d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ditto + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.44265 + posY: 2.41933084 + posZ: -62.3478355 + rotX: 0.0208092127 + rotY: 269.997864 + rotZ: 0.0167702921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267747 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 86c451 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Chansey + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.1278152 + posY: 2.41889048 + posZ: -63.9618454 + rotX: 0.0208098348 + rotY: 269.9979 + rotZ: 0.0167699363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267754 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c3190e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tauros + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1232424 + posY: 2.48485446 + posZ: -16.02921 + rotX: 359.920135 + rotY: 269.998535 + rotZ: 0.0168761462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2682': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2685': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2688': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2689': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2692': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2695': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2704': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2708': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2717': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2720': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2727': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 270859 +- 269541 +- 270419 +- 272044 +- 268840 +- 268514 +- 268925 +- 268216 +- 272757 +- 271717 +- 269205 +- 267753 +- 267752 +- 267751 +- 267749 +- 267750 +- 267748 +- 267747 +- 267754 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: be6d22 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Rare Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.4106083 + posY: 1.56403267 + posZ: -4.82050133 + rotX: 359.920135 + rotY: 269.998779 + rotZ: 0.0168792829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Rare Encounter Set ee6e52.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Rare Encounter Set ee6e52.yaml new file mode 100644 index 000000000..220552f8b --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Rare Encounter Set ee6e52.yaml @@ -0,0 +1,920 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267866 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d10f76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7763824 + posY: 1.70056987 + posZ: -4.83039951 + rotX: 359.933 + rotY: 270.0 + rotZ: 180.014435 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267865 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4945ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7495613 + posY: 1.50693226 + posZ: -4.51910925 + rotX: 359.9121 + rotY: 269.999939 + rotZ: 0.0039470233 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267864 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a2b46e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.8294334 + posY: 1.54642951 + posZ: -4.882814 + rotX: 359.9331 + rotY: 269.999939 + rotZ: 0.01384164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267863 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 527ce6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9577055 + posY: 1.55732691 + posZ: -3.599544 + rotX: 359.930878 + rotY: 269.999939 + rotZ: 359.9833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267862 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ab32cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.34694 + posY: 1.56640959 + posZ: -4.3452816 + rotX: 359.933868 + rotY: 269.999939 + rotZ: 0.0127378786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267861 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2f3e94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7288742 + posY: 1.57552576 + posZ: -4.707577 + rotX: 359.932617 + rotY: 269.999939 + rotZ: 0.0138330935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267860 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 71aac2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.81522 + posY: 1.58503914 + posZ: -4.82249069 + rotX: 359.9325 + rotY: 269.999939 + rotZ: 0.01398095 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267859 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: aeb7fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1070385 + posY: 1.59544921 + posZ: -4.78942537 + rotX: 359.934357 + rotY: 269.999939 + rotZ: 0.0141529925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267858 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6304b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3074913 + posY: 1.60498524 + posZ: -3.97525263 + rotX: 359.935181 + rotY: 269.999939 + rotZ: 0.0096496 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267857 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2b360a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3249359 + posY: 1.61457539 + posZ: -4.38055563 + rotX: 359.933716 + rotY: 269.9999 + rotZ: 0.0130347963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267856 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c89b11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1950531 + posY: 1.62436426 + posZ: -4.22008848 + rotX: 359.934143 + rotY: 269.999878 + rotZ: 0.0122695034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267855 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0d9018 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.53936 + posY: 1.63361788 + posZ: -4.06025 + rotX: 359.934235 + rotY: 269.999878 + rotZ: 0.01124593 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267854 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 04fbfc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4184074 + posY: 1.643317 + posZ: -4.56822348 + rotX: 359.933441 + rotY: 269.999878 + rotZ: 0.01348167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267853 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e29a11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3690414 + posY: 1.653022 + posZ: -4.46332932 + rotX: 359.9335 + rotY: 269.999878 + rotZ: 0.013344436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267852 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f120d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9491539 + posY: 1.66192007 + posZ: -4.450786 + rotX: 359.933044 + rotY: 269.999878 + rotZ: 0.014011329 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267851 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9a90a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.8511982 + posY: 1.6716491 + posZ: -4.70562458 + rotX: 359.932465 + rotY: 269.999878 + rotZ: 0.0139912358 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267850 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e743bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.5542374 + posY: 1.681409 + posZ: -5.39828348 + rotX: 359.933167 + rotY: 269.999878 + rotZ: 0.01335297 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267849 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '126268' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3703651 + posY: 1.69154 + posZ: -4.437929 + rotX: 359.933441 + rotY: 269.999878 + rotZ: 0.0134003581 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267848 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8275f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4778252 + posY: 1.70083308 + posZ: -5.110941 + rotX: 359.93396 + rotY: 269.999878 + rotZ: 0.0146708526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267866 +- 267865 +- 267864 +- 267863 +- 267862 +- 267861 +- 267860 +- 267859 +- 267858 +- 267857 +- 267856 +- 267855 +- 267854 +- 267853 +- 267852 +- 267851 +- 267850 +- 267849 +- 267848 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ee6e52 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Rare Encounter Set +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 23.7733021 + posY: 1.55933726 + posZ: -4.845801 + rotX: 359.920135 + rotY: 269.998779 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Town Assets 6ddd26.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Town Assets 6ddd26.yaml new file mode 100644 index 000000000..31d611f58 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Town Assets 6ddd26.yaml @@ -0,0 +1,468 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1b04db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Jigglypuff + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.5980854 + posY: 2.923997 + posZ: -11.6731243 + rotX: 359.920135 + rotY: 270.0027 + rotZ: 0.01686976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267531 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5992cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cubone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.2537537 + posY: 2.61031342 + posZ: -12.5758448 + rotX: 359.920135 + rotY: 270.002747 + rotZ: 0.0168688986 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267532 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '873452' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Grimer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.00922 + posY: 2.61011672 + posZ: -14.3550587 + rotX: 359.920135 + rotY: 270.002625 + rotZ: 0.0168693326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267533 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a4a96f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Growlithe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.02254 + posY: 3.24992967 + posZ: -17.840559 + rotX: 359.920135 + rotY: 270.0025 + rotZ: 0.0168695934 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267534 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 714c76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Koffing + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.50306 + posY: 2.614051 + posZ: -9.270244 + rotX: 359.920135 + rotY: 270.002472 + rotZ: 0.0168699771 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267535 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e6dbc4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Magnemite + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.7738113 + posY: 2.61166573 + posZ: -11.7794247 + rotX: 359.920135 + rotY: 270.002472 + rotZ: 0.0168705974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267536 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cabbdd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Farfetch'd + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.7219658 + posY: 2.67955565 + posZ: -13.7013521 + rotX: 2.572715 + rotY: 270.008057 + rotZ: 0.016536653 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267530 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1a17e3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pidgey + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.7222042 + posY: 2.61277223 + posZ: -14.1867771 + rotX: 359.920135 + rotY: 270.002319 + rotZ: 0.0168705154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267529 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f1aee6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rattata + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.8781033 + posY: 2.47851443 + posZ: -9.752915 + rotX: 359.920135 + rotY: 270.00238 + rotZ: 0.0168707855 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267115 +- 267531 +- 267532 +- 267533 +- 267534 +- 267535 +- 267536 +- 267530 +- 267529 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 6ddd26 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Town Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.3348045 + posY: 1.517905 + posZ: 1.65559983 + rotX: 359.920135 + rotY: 270.002258 + rotZ: 0.0168720149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Town Encounter Set 89c0e9.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Town Encounter Set 89c0e9.yaml new file mode 100644 index 000000000..947d5222d --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Town Encounter Set 89c0e9.yaml @@ -0,0 +1,552 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d477a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.8392925 + posY: 2.47451162 + posZ: -18.5536728 + rotX: 359.920135 + rotY: 269.999054 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267837 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0303f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.7293348 + posY: 1.47265851 + posZ: -1.736532 + rotX: 359.9203 + rotY: 269.999878 + rotZ: 0.0158168469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267836 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '495121' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4387846 + posY: 1.51522315 + posZ: -1.61147654 + rotX: 359.937836 + rotY: 269.999817 + rotZ: 0.008324486 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267835 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0f413c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.29541 + posY: 1.549231 + posZ: -2.09604073 + rotX: 359.93396 + rotY: 269.999756 + rotZ: 0.0144235371 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267834 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4dfacd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.700798 + posY: 1.55857623 + posZ: -1.57905722 + rotX: 359.933655 + rotY: 269.9998 + rotZ: 0.0130110951 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267833 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8ff1a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.3915787 + posY: 1.56830037 + posZ: -2.30903816 + rotX: 359.9344 + rotY: 269.999756 + rotZ: 0.015141746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267832 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 87cee0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.8214407 + posY: 1.5777036 + posZ: -1.51616192 + rotX: 359.932556 + rotY: 269.999756 + rotZ: 0.01392519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ca19d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2823029 + posY: 1.58764184 + posZ: -2.37598515 + rotX: 359.935516 + rotY: 269.999939 + rotZ: 0.0173349325 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 733ca3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.7685232 + posY: 1.59683776 + posZ: -1.87969816 + rotX: 359.920563 + rotY: 269.999756 + rotZ: 0.01636774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d2230c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.275857 + posY: 1.47876179 + posZ: -2.21049929 + rotX: 359.919983 + rotY: 269.999725 + rotZ: 0.0180199351 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 39c7c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.2810535 + posY: 1.51521266 + posZ: -2.135877 + rotX: 359.9148 + rotY: 270.0008 + rotZ: 0.005308617 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267814 +- 267837 +- 267836 +- 267835 +- 267834 +- 267833 +- 267832 +- 267831 +- 267831 +- 267830 +- 267830 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 89c0e9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Town Encounter Set +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 23.9188042 + posY: 1.52254951 + posZ: 1.6996001 + rotX: 359.920135 + rotY: 269.9989 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Water Assets 40a95c.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Water Assets 40a95c.yaml new file mode 100644 index 000000000..797837f59 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Water Assets 40a95c.yaml @@ -0,0 +1,506 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267538 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e812cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Goldeen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.1195831 + posY: 2.6113286 + posZ: -12.0132265 + rotX: 359.920135 + rotY: 270.0018 + rotZ: 0.0168716423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267539 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 84202f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Horsea + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.4325714 + posY: 2.610624 + posZ: -14.1556587 + rotX: 359.920135 + rotY: 270.003082 + rotZ: 0.01686815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267540 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3f57d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Krabby + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9629478 + posY: 2.59854484 + posZ: -16.8979359 + rotX: 359.920135 + rotY: 270.001678 + rotZ: 0.0168715138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267541 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5fec8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Poliwag + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.7416744 + posY: 6.240125 + posZ: -19.7415218 + rotX: 359.920135 + rotY: 270.001648 + rotZ: 0.01687008 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267542 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 335a0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Seel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.8016167 + posY: 2.61319327 + posZ: -12.0105333 + rotX: 359.920135 + rotY: 270.0016 + rotZ: 0.0168711115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267543 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4d6002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shellder + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.2026653 + posY: 2.61073422 + posZ: -12.2918587 + rotX: 359.920135 + rotY: 270.0014 + rotZ: 0.0168711152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267544 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 280e7e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Slowpoke + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.8173656 + posY: 2.47487068 + posZ: -15.2104483 + rotX: 359.920135 + rotY: 270.0017 + rotZ: 0.0168694053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267545 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 83e95c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Staryu + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.7759075 + posY: 2.61198616 + posZ: -17.5338173 + rotX: 359.920135 + rotY: 270.000458 + rotZ: 0.016870698 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267546 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 878a16 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Magikarp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.2997437 + posY: 2.479081 + posZ: -10.5870619 + rotX: 359.920135 + rotY: 270.000916 + rotZ: 0.0168716032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267537 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e03708 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tentacool + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.1746159 + posY: 2.54044 + posZ: -12.226141 + rotX: 2.354295 + rotY: 269.998383 + rotZ: 0.0167677552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267538 +- 267539 +- 267540 +- 267541 +- 267542 +- 267543 +- 267544 +- 267545 +- 267546 +- 267537 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 40a95c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Water Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.4373035 + posY: 1.52153933 + posZ: -1.86520112 + rotX: 359.920135 + rotY: 270.001221 + rotZ: 0.0168737248 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Water Encounter Set b6d6c5.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Water Encounter Set b6d6c5.yaml new file mode 100644 index 000000000..241a750f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/Deck Water Encounter Set b6d6c5.yaml @@ -0,0 +1,598 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267847 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ccf26e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.5250912 + posY: 1.47145438 + posZ: -2.03748727 + rotX: 359.920349 + rotY: 269.999878 + rotZ: 0.0154142529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267846 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 31419f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1075459 + posY: 1.51413083 + posZ: -2.02123046 + rotX: 359.93927 + rotY: 269.999878 + rotZ: 0.008084392 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267845 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2024c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7598133 + posY: 1.5471884 + posZ: -2.51725245 + rotX: 359.933533 + rotY: 269.999847 + rotZ: 0.0138228955 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267844 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d7b478 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.16893 + posY: 1.55770254 + posZ: -2.07580566 + rotX: 359.934052 + rotY: 269.999847 + rotZ: 0.0139717571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267843 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0d2fc4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4077568 + posY: 1.62674642 + posZ: -2.01337242 + rotX: 359.920166 + rotY: 269.993347 + rotZ: 3.15558839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267842 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 656e1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.42537 + posY: 1.57669008 + posZ: -1.954552 + rotX: 359.933563 + rotY: 269.999817 + rotZ: 0.0132578835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267841 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ce01d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.67434 + posY: 1.58587706 + posZ: -2.43868351 + rotX: 359.9331 + rotY: 269.999817 + rotZ: 0.0139118871 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 506d86 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6808147 + posY: 1.59673488 + posZ: -2.124152 + rotX: 359.9364 + rotY: 269.9998 + rotZ: 0.01766552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267839 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 913ca8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9234705 + posY: 1.6061666 + posZ: -1.65239608 + rotX: 359.934875 + rotY: 269.999817 + rotZ: 0.01145146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267838 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dd980a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1472073 + posY: 1.61553931 + posZ: -1.830852 + rotX: 359.933868 + rotY: 270.0 + rotZ: 0.0128418608 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267838 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dd980a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.02569 + posY: 1.47095919 + posZ: -5.845026 + rotX: 359.921051 + rotY: 269.999878 + rotZ: 0.01074309 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267838 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 189ff6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.0097733 + posY: 1.50821984 + posZ: -5.855652 + rotX: 359.939056 + rotY: 269.999817 + rotZ: 0.00627084542 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267847 +- 267846 +- 267845 +- 267844 +- 267843 +- 267842 +- 267841 +- 267840 +- 267839 +- 267838 +- 267838 +- 267838 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: b6d6c5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Water Encounter Set +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 23.9174042 + posY: 1.52639639 + posZ: -1.5911 + rotX: 359.920135 + rotY: 270.0001 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/DeckCustom Cave Encounter Set 21f22b.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/DeckCustom Cave Encounter Set 21f22b.yaml new file mode 100644 index 000000000..6dd822eb0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Adding Pokemon To An Existing Campaign 7b57ad/DeckCustom Cave Encounter Set 21f22b.yaml @@ -0,0 +1,480 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 636d82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9020882 + posY: 1.47524452 + posZ: 7.982651 + rotX: 359.9207 + rotY: 270.000061 + rotZ: 0.0134192724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d4f223 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9021206 + posY: 1.51343989 + posZ: 7.98287344 + rotX: 359.910431 + rotY: 270.0 + rotZ: 0.0120253172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7d6826 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9020882 + posY: 1.55420744 + posZ: 7.98288 + rotX: 359.919281 + rotY: 270.0 + rotZ: 0.01650513 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e32ba3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1b92ac + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9b882f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1ab38a + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c8a0ee + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f5d7c8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7ab4ad + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4fd680 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267800 +- 267800 +- 267800 +- 267801 +- 267802 +- 267803 +- 267804 +- 267805 +- 267806 +- 267807 +- 267808 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 21f22b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: DeckCustom +Nickname: Cave Encounter Set +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 23.7867031 + posY: 1.52572107 + posZ: 11.8444023 + rotX: 359.920135 + rotY: 269.9988 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62.ttslua b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62.ttslua rename to unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29.ttslua diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29.yaml new file mode 100644 index 000000000..198c196ed --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29.yaml @@ -0,0 +1,54 @@ +Autoraise: true +ColorDiffuse: + b: 0.5490196 + g: 0.7058823 + r: 0.0 +ContainedObjects: +- !include 'Bag Basic Pokemon 3c1b29/Card Squirtle 96a0f6.yaml' +- !include 'Bag Basic Pokemon 3c1b29/Card Gastly d59a90.yaml' +- !include 'Bag Basic Pokemon 3c1b29/Card Bulbasaur 13765b.yaml' +- !include 'Bag Basic Pokemon 3c1b29/Card Charmander 04b4ed.yaml' +- !include 'Bag Basic Pokemon 3c1b29/Card Conjuring Cube 8d868d.yaml' +- !include 'Bag Basic Pokemon 3c1b29/Card Eevee afa7b5.yaml' +- !include 'Bag Basic Pokemon 3c1b29/Card Machop fa4bb4.yaml' +- !include 'Bag Basic Pokemon 3c1b29/Card Untamed Eevee d46288.yaml' +- !include 'Bag Basic Pokemon 3c1b29/Card Untamed Machop 3dc91a.yaml' +- !include 'Bag Basic Pokemon 3c1b29/Card Untamed Charmander d76fa1.yaml' +- !include 'Bag Basic Pokemon 3c1b29/Card Untamed Bulbasaur b83c4e.yaml' +- !include 'Bag Basic Pokemon 3c1b29/Card Untamed Gastly e4de50.yaml' +- !include 'Bag Basic Pokemon 3c1b29/Card Untamed Squirtle 1930e0.yaml' +- !include 'Bag Basic Pokemon 3c1b29/Card Alternate Art FIne Clothes 682f06.yaml' +- !include 'Bag Basic Pokemon 3c1b29/Card Alternate Art FIne Clothes 73e066.yaml' +- !include 'Bag Basic Pokemon 3c1b29/Card Alternate Art FIne Clothes 26aa08.yaml' +- !include 'Bag Basic Pokemon 3c1b29/Card Alternate Art FIne Clothes 639cce.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 3c1b29 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Basic Pokemon 3c1b29.ttslua' +LuaScriptState: '{"ml":{"04b4ed":{"lock":false,"pos":{"x":19.2841,"y":1.2908,"z":69.4412},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"13765b":{"lock":false,"pos":{"x":19.2841,"y":1.2915,"z":71.7412},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"1930e0":{"lock":false,"pos":{"x":15.6184,"y":1.2915,"z":76.3528},"rot":{"x":0.0208,"y":270.0042,"z":0.0168}},"26aa08":{"lock":false,"pos":{"x":10.5689,"y":1.2883,"z":71.7607},"rot":{"x":0.0208,"y":270,"z":0.0168}},"3dc91a":{"lock":false,"pos":{"x":15.6184,"y":1.2888,"z":67.1527},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"639cce":{"lock":false,"pos":{"x":10.5689,"y":1.2876,"z":69.4607},"rot":{"x":0.0208,"y":270,"z":0.0168}},"682f06":{"lock":false,"pos":{"x":10.5689,"y":1.2897,"z":76.3607},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"73e066":{"lock":false,"pos":{"x":10.5689,"y":1.289,"z":74.0607},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"8d868d":{"lock":false,"pos":{"x":19.2841,"y":1.2888,"z":62.5412},"rot":{"x":0.0208,"y":270.004,"z":0.0168}},"96a0f6":{"lock":false,"pos":{"x":19.2841,"y":1.2928,"z":76.3412},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"afa7b5":{"lock":false,"pos":{"x":19.2841,"y":1.2895,"z":64.8411},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"b83c4e":{"lock":false,"pos":{"x":15.6184,"y":1.2901,"z":71.7528},"rot":{"x":0.0208,"y":270.004,"z":0.0168}},"d46288":{"lock":false,"pos":{"x":15.6184,"y":1.2881,"z":64.8527},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"d59a90":{"lock":false,"pos":{"x":19.2841,"y":1.2922,"z":74.0412},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"d76fa1":{"lock":false,"pos":{"x":15.6184,"y":1.2895,"z":69.4528},"rot":{"x":0.0208,"y":270.004,"z":0.0168}},"e4de50":{"lock":false,"pos":{"x":15.6184,"y":1.2908,"z":74.0528},"rot":{"x":0.0208,"y":270.0042,"z":0.0168}},"fa4bb4":{"lock":false,"pos":{"x":19.2841,"y":1.2901,"z":67.1411},"rot":{"x":0.0208,"y":270.004,"z":0.0168}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Basic Pokemon +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 33.1884 + posY: 1.100528 + posZ: 80.7596 + rotX: 359.979156 + rotY: 89.9965439 + rotZ: 359.983215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Alternate Art FIne Clothes 26aa08.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Alternate Art FIne Clothes 26aa08.yaml new file mode 100644 index 000000000..78ec58f56 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Alternate Art FIne Clothes 26aa08.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267804 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 26aa08 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Alternate Art FIne Clothes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688705 + posY: 1.2883178 + posZ: 71.76074 + rotX: 0.0208086763 + rotY: 270.0 + rotZ: 0.0167709067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Alternate Art FIne Clothes 639cce.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Alternate Art FIne Clothes 639cce.yaml new file mode 100644 index 000000000..5326969fb --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Alternate Art FIne Clothes 639cce.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267806 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 639cce +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Alternate Art FIne Clothes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688648 + posY: 1.28764451 + posZ: 69.46074 + rotX: 0.0208085515 + rotY: 270.0 + rotZ: 0.0167706963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Alternate Art FIne Clothes 682f06.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Alternate Art FIne Clothes 682f06.yaml new file mode 100644 index 000000000..34242c21e --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Alternate Art FIne Clothes 682f06.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267800 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 682f06 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Alternate Art FIne Clothes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568862 + posY: 1.28966427 + posZ: 76.36074 + rotX: 0.0208086818 + rotY: 270.0001 + rotZ: 0.0167707186 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Alternate Art FIne Clothes 73e066.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Alternate Art FIne Clothes 73e066.yaml new file mode 100644 index 000000000..8c6bfb596 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Alternate Art FIne Clothes 73e066.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267802 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 73e066 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Alternate Art FIne Clothes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688677 + posY: 1.28899109 + posZ: 74.0607452 + rotX: 0.02080875 + rotY: 270.0001 + rotZ: 0.01677078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Bulbasaur 13765b.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Bulbasaur 13765b.yaml new file mode 100644 index 000000000..5b5915762 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Bulbasaur 13765b.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267700 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 13765b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Bulbasaur +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841129 + posY: 1.29147708 + posZ: 71.7412338 + rotX: 0.0208074823 + rotY: 270.0041 + rotZ: 0.0167727116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Charmander 04b4ed.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Charmander 04b4ed.yaml new file mode 100644 index 000000000..c91208fcb --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Charmander 04b4ed.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267701 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 04b4ed +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Charmander +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.284111 + posY: 1.29080379 + posZ: 69.44123 + rotX: 0.0208073165 + rotY: 270.0041 + rotZ: 0.0167727768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Conjuring Cube 8d868d.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Conjuring Cube 8d868d.yaml new file mode 100644 index 000000000..5d11b4cb0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Conjuring Cube 8d868d.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267712 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8d868d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Conjuring Cube +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841148 + posY: 1.288784 + posZ: 62.5412025 + rotX: 0.0208072364 + rotY: 270.004 + rotZ: 0.0167726781 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Eevee afa7b5.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Eevee afa7b5.yaml new file mode 100644 index 000000000..d71a39750 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Eevee afa7b5.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267702 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: afa7b5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Eevee +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841072 + posY: 1.28945732 + posZ: 64.8411 + rotX: 0.020807445 + rotY: 270.00412 + rotZ: 0.0167727359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Gastly d59a90.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Gastly d59a90.yaml new file mode 100644 index 000000000..a54c13855 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Gastly d59a90.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267703 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d59a90 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Gastly +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841129 + posY: 1.29215026 + posZ: 74.04124 + rotX: 0.0208074469 + rotY: 270.0041 + rotZ: 0.0167726874 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Machop fa4bb4.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Machop fa4bb4.yaml new file mode 100644 index 000000000..57cd68936 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Machop fa4bb4.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267704 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: fa4bb4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Machop +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.284111 + posY: 1.2901305 + posZ: 67.14111 + rotX: 0.0208071973 + rotY: 270.004 + rotZ: 0.0167725477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Squirtle 96a0f6.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Squirtle 96a0f6.yaml new file mode 100644 index 000000000..90e213309 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Squirtle 96a0f6.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267705 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 96a0f6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Squirtle +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841072 + posY: 1.29282355 + posZ: 76.34123 + rotX: 0.0208073538 + rotY: 270.00412 + rotZ: 0.0167726427 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Untamed Bulbasaur b83c4e.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Untamed Bulbasaur b83c4e.yaml new file mode 100644 index 000000000..22ef2becc --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Untamed Bulbasaur b83c4e.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267707 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: b83c4e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Untamed Bulbasaur +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6184025 + posY: 1.29014909 + posZ: 71.75279 + rotX: 0.0208074376 + rotY: 270.004028 + rotZ: 0.0167726 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Untamed Charmander d76fa1.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Untamed Charmander d76fa1.yaml new file mode 100644 index 000000000..dcb7d6593 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Untamed Charmander d76fa1.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267708 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d76fa1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Untamed Charmander +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6184015 + posY: 1.28947592 + posZ: 69.45279 + rotX: 0.0208074 + rotY: 270.004028 + rotZ: 0.0167724937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Untamed Eevee d46288.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Untamed Eevee d46288.yaml new file mode 100644 index 000000000..9ec584d79 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Untamed Eevee d46288.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267706 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d46288 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Untamed Eevee +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6184015 + posY: 1.28812933 + posZ: 64.85268 + rotX: 0.02080745 + rotY: 270.00412 + rotZ: 0.0167719889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Untamed Gastly e4de50.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Untamed Gastly e4de50.yaml new file mode 100644 index 000000000..619e627f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Untamed Gastly e4de50.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267709 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e4de50 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Untamed Gastly +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6184025 + posY: 1.29082239 + posZ: 74.0527954 + rotX: 0.0208073519 + rotY: 270.00415 + rotZ: 0.0167725645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Untamed Machop 3dc91a.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Untamed Machop 3dc91a.yaml new file mode 100644 index 000000000..d74df3849 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Untamed Machop 3dc91a.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267710 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 3dc91a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Untamed Machop +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6184006 + posY: 1.28880262 + posZ: 67.1527 + rotX: 0.0208072849 + rotY: 270.00412 + rotZ: 0.01677264 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Untamed Squirtle 1930e0.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Untamed Squirtle 1930e0.yaml new file mode 100644 index 000000000..32ddb985c --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon 3c1b29/Card Untamed Squirtle 1930e0.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267711 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 1930e0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Untamed Squirtle +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6184006 + posY: 1.29149568 + posZ: 76.35279 + rotX: 0.020807473 + rotY: 270.00415 + rotZ: 0.0167719759 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f.ttslua b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f.ttslua rename to unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543.ttslua diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543.yaml new file mode 100644 index 000000000..216628895 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543.yaml @@ -0,0 +1,54 @@ +Autoraise: true +ColorDiffuse: + b: 0.5490196 + g: 0.7058823 + r: 0.0 +ContainedObjects: +- !include 'Bag Basic Pokemon d14543/Card Untamed Squirtle 261165.yaml' +- !include 'Bag Basic Pokemon d14543/Card Gastly 28ce9c.yaml' +- !include 'Bag Basic Pokemon d14543/Card Eevee 2bc747.yaml' +- !include 'Bag Basic Pokemon d14543/Card Alternate Art FIne Clothes 3ae795.yaml' +- !include 'Bag Basic Pokemon d14543/Card Alternate Art FIne Clothes 6bb591.yaml' +- !include 'Bag Basic Pokemon d14543/Card Untamed Eevee 85e3bf.yaml' +- !include 'Bag Basic Pokemon d14543/Card Squirtle 8f3531.yaml' +- !include 'Bag Basic Pokemon d14543/Card Alternate Art FIne Clothes 915714.yaml' +- !include 'Bag Basic Pokemon d14543/Card Untamed Gastly a52ad1.yaml' +- !include 'Bag Basic Pokemon d14543/Card Untamed Machop b2b8d0.yaml' +- !include 'Bag Basic Pokemon d14543/Card Machop b4d0c7.yaml' +- !include 'Bag Basic Pokemon d14543/Card Untamed Charmander d451c8.yaml' +- !include 'Bag Basic Pokemon d14543/Card Conjuring Cube eae7ed.yaml' +- !include 'Bag Basic Pokemon d14543/Card Bulbasaur ebfa06.yaml' +- !include 'Bag Basic Pokemon d14543/Card Charmander f2e223.yaml' +- !include 'Bag Basic Pokemon d14543/Card Alternate Art FIne Clothes fb4290.yaml' +- !include 'Bag Basic Pokemon d14543/Card Untamed Bulbasaur ff9705.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d14543 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Basic Pokemon d14543.ttslua' +LuaScriptState: '{"ml":{"261165":{"lock":false,"pos":{"x":49.5629,"y":1.3038,"z":76.3528},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"28ce9c":{"lock":false,"pos":{"x":53.2286,"y":1.3045,"z":74.0412},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"2bc747":{"lock":false,"pos":{"x":53.2286,"y":1.3018,"z":64.8411},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"3ae795":{"lock":false,"pos":{"x":44.5133,"y":1.302,"z":76.3607},"rot":{"x":0.0208,"y":270,"z":0.0168}},"6bb591":{"lock":false,"pos":{"x":44.5133,"y":1.3013,"z":74.0607},"rot":{"x":0.0208,"y":270,"z":0.0168}},"85e3bf":{"lock":false,"pos":{"x":49.5629,"y":1.3005,"z":64.8527},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"8f3531":{"lock":false,"pos":{"x":53.2286,"y":1.3052,"z":76.3412},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"915714":{"lock":false,"pos":{"x":44.5133,"y":1.3006,"z":71.7607},"rot":{"x":0.0208,"y":270,"z":0.0168}},"a52ad1":{"lock":false,"pos":{"x":49.5629,"y":1.3032,"z":74.0528},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"b2b8d0":{"lock":false,"pos":{"x":49.5629,"y":1.3011,"z":67.1527},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"b4d0c7":{"lock":false,"pos":{"x":53.2286,"y":1.3025,"z":67.1411},"rot":{"x":0.0208,"y":270.004,"z":0.0168}},"d451c8":{"lock":false,"pos":{"x":49.5628,"y":1.3018,"z":69.4528},"rot":{"x":0.0208,"y":270.004,"z":0.0168}},"eae7ed":{"lock":false,"pos":{"x":53.2286,"y":1.3011,"z":62.5412},"rot":{"x":0.0208,"y":270.004,"z":0.0168}},"ebfa06":{"lock":false,"pos":{"x":53.2286,"y":1.3038,"z":71.7412},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"f2e223":{"lock":false,"pos":{"x":53.2286,"y":1.3031,"z":69.4412},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"fb4290":{"lock":false,"pos":{"x":44.5133,"y":1.3,"z":69.4607},"rot":{"x":0.0208,"y":270,"z":0.0168}},"ff9705":{"lock":false,"pos":{"x":49.5629,"y":1.3025,"z":71.7528},"rot":{"x":0.0208,"y":270.004,"z":0.0168}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Basic Pokemon +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.4962 + posY: 1.11257529 + posZ: 80.5900955 + rotX: 359.979156 + rotY: 89.99309 + rotZ: 359.983215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Alternate Art FIne Clothes 3ae795.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Alternate Art FIne Clothes 3ae795.yaml new file mode 100644 index 000000000..23d698f5c --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Alternate Art FIne Clothes 3ae795.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267800 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 3ae795 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Alternate Art FIne Clothes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.30199194 + posZ: 76.3607 + rotX: 0.020808721 + rotY: 270.0 + rotZ: 0.0167711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Alternate Art FIne Clothes 6bb591.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Alternate Art FIne Clothes 6bb591.yaml new file mode 100644 index 000000000..d7b3d68f4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Alternate Art FIne Clothes 6bb591.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267802 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 6bb591 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Alternate Art FIne Clothes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.30131865 + posZ: 74.0607 + rotX: 0.0208086036 + rotY: 270.0 + rotZ: 0.01677116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Alternate Art FIne Clothes 915714.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Alternate Art FIne Clothes 915714.yaml new file mode 100644 index 000000000..b8b83f57b --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Alternate Art FIne Clothes 915714.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267804 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: '915714' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Alternate Art FIne Clothes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.30064547 + posZ: 71.7607 + rotX: 0.0208087079 + rotY: 270.0 + rotZ: 0.01677113 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Alternate Art FIne Clothes fb4290.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Alternate Art FIne Clothes fb4290.yaml new file mode 100644 index 000000000..8a59c13cf --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Alternate Art FIne Clothes fb4290.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267806 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: fb4290 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Alternate Art FIne Clothes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.29997218 + posZ: 69.4607 + rotX: 0.02080864 + rotY: 270.0 + rotZ: 0.0167712886 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Bulbasaur ebfa06.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Bulbasaur ebfa06.yaml new file mode 100644 index 000000000..8863f29e2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Bulbasaur ebfa06.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267700 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ebfa06 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Bulbasaur +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2286 + posY: 1.30380487 + posZ: 71.7412 + rotX: 0.0208074134 + rotY: 270.0041 + rotZ: 0.0167724621 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Charmander f2e223.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Charmander f2e223.yaml new file mode 100644 index 000000000..93f5d266f --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Charmander f2e223.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267701 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: f2e223 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Charmander +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2286 + posY: 1.3031317 + posZ: 69.4412 + rotX: 0.0208074339 + rotY: 270.0041 + rotZ: 0.0167726148 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Conjuring Cube eae7ed.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Conjuring Cube eae7ed.yaml new file mode 100644 index 000000000..d98efd6c0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Conjuring Cube eae7ed.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267712 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: eae7ed +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Conjuring Cube +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2286 + posY: 1.30111194 + posZ: 62.5412 + rotX: 0.0208074581 + rotY: 270.004028 + rotZ: 0.0167725328 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Eevee 2bc747.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Eevee 2bc747.yaml new file mode 100644 index 000000000..ffbff0036 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Eevee 2bc747.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267702 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 2bc747 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Eevee +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2286 + posY: 1.30178511 + posZ: 64.8411 + rotX: 0.020807432 + rotY: 270.0041 + rotZ: 0.0167726781 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Gastly 28ce9c.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Gastly 28ce9c.yaml new file mode 100644 index 000000000..c34693e17 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Gastly 28ce9c.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267703 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 28ce9c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Gastly +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2286 + posY: 1.30447817 + posZ: 74.0412 + rotX: 0.0208073128 + rotY: 270.0041 + rotZ: 0.0167727768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Machop b4d0c7.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Machop b4d0c7.yaml new file mode 100644 index 000000000..34b9f3b16 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Machop b4d0c7.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267704 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: b4d0c7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Machop +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2286 + posY: 1.30245841 + posZ: 67.1411 + rotX: 0.0208073016 + rotY: 270.004028 + rotZ: 0.01677245 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Squirtle 8f3531.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Squirtle 8f3531.yaml new file mode 100644 index 000000000..f24ecc903 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Squirtle 8f3531.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267705 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8f3531 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Squirtle +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2286 + posY: 1.30515134 + posZ: 76.3412 + rotX: 0.0208073817 + rotY: 270.0041 + rotZ: 0.0167725869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Untamed Bulbasaur ff9705.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Untamed Bulbasaur ff9705.yaml new file mode 100644 index 000000000..af33887e7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Untamed Bulbasaur ff9705.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267707 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ff9705 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Untamed Bulbasaur +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.5629 + posY: 1.302477 + posZ: 71.7528 + rotX: 0.0208072327 + rotY: 270.004028 + rotZ: 0.0167725049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Untamed Charmander d451c8.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Untamed Charmander d451c8.yaml new file mode 100644 index 000000000..40548a435 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Untamed Charmander d451c8.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267708 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d451c8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Untamed Charmander +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.5628 + posY: 1.30180371 + posZ: 69.4528 + rotX: 0.0208074655 + rotY: 270.004028 + rotZ: 0.016772734 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Untamed Eevee 85e3bf.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Untamed Eevee 85e3bf.yaml new file mode 100644 index 000000000..e28baea8a --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Untamed Eevee 85e3bf.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267706 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 85e3bf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Untamed Eevee +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.5629 + posY: 1.30045724 + posZ: 64.8527 + rotX: 0.020807337 + rotY: 270.0041 + rotZ: 0.0167724751 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Untamed Gastly a52ad1.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Untamed Gastly a52ad1.yaml new file mode 100644 index 000000000..b7e41761b --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Untamed Gastly a52ad1.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267709 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: a52ad1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Untamed Gastly +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.5629 + posY: 1.3031503 + posZ: 74.0528 + rotX: 0.0208074376 + rotY: 270.0041 + rotZ: 0.01677281 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Untamed Machop b2b8d0.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Untamed Machop b2b8d0.yaml new file mode 100644 index 000000000..48a08ae86 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Untamed Machop b2b8d0.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267710 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: b2b8d0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Untamed Machop +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.5629 + posY: 1.30113053 + posZ: 67.1527 + rotX: 0.0208073314 + rotY: 270.0041 + rotZ: 0.0167726148 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Untamed Squirtle 261165.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Untamed Squirtle 261165.yaml new file mode 100644 index 000000000..40ca9bad6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Basic Pokemon d14543/Card Untamed Squirtle 261165.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267711 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: '261165' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Untamed Squirtle +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.5629 + posY: 1.30382347 + posZ: 76.3528 + rotX: 0.0208073836 + rotY: 270.0041 + rotZ: 0.0167725142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a.ttslua b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a.ttslua rename to unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d.ttslua diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d.yaml new file mode 100644 index 000000000..7257d990e --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d.yaml @@ -0,0 +1,72 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.7019608 +ContainedObjects: +- !include 'Bag Pokemon Investigators 05109d/Card 810d82.yaml' +- !include 'Bag Pokemon Investigators 05109d/Card Maxwell Blue 0f241b.yaml' +- !include 'Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards + 2a0151.yaml' +- !include 'Bag Pokemon Investigators 05109d/Custom_Model Turn token 3ddfeb.yaml' +- !include 'Bag Pokemon Investigators 05109d/Custom_Model Turn token 307044.yaml' +- !include 'Bag Pokemon Investigators 05109d/Custom_Model Turn token 779aa6.yaml' +- !include 'Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token d9fb86.yaml' +- !include 'Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token 4ad11b.yaml' +- !include 'Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token e04b48.yaml' +- !include 'Bag Pokemon Investigators 05109d/Card 8a01b9.yaml' +- !include 'Bag Pokemon Investigators 05109d/Card Ashley Sumner d92dda.yaml' +- !include 'Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards + bfb635.yaml' +- !include 'Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards + 1aebf8.yaml' +- !include 'Bag Pokemon Investigators 05109d/Card Reggie Red Hunter ddb016.yaml' +- !include 'Bag Pokemon Investigators 05109d/Card 3f0e28.yaml' +- !include 'Bag Pokemon Investigators 05109d/Custom_Model Turn token 226716.yaml' +- !include 'Bag Pokemon Investigators 05109d/Custom_Model Turn token 543164.yaml' +- !include 'Bag Pokemon Investigators 05109d/Custom_Model Turn token 0de2c4.yaml' +- !include 'Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token d6fdbf.yaml' +- !include 'Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token 41bfc7.yaml' +- !include 'Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token de216f.yaml' +- !include 'Bag Pokemon Investigators 05109d/Card 808696.yaml' +- !include 'Bag Pokemon Investigators 05109d/Card Samantha Oak 2d7917.yaml' +- !include 'Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards + cfcb92.yaml' +- !include 'Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards + 02dd21.yaml' +- !include 'Bag Pokemon Investigators 05109d/Card Willa Strucker 4d0a50.yaml' +- !include 'Bag Pokemon Investigators 05109d/Card a01c9b.yaml' +- !include 'Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token 6330da.yaml' +- !include 'Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token 9e80b9.yaml' +- !include 'Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token bde4a6.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 05109d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Pokemon Investigators 05109d.ttslua' +LuaScriptState: '{"ml":{"02dd21":{"lock":false,"pos":{"x":-26.3,"y":1.2757,"z":-53.4368},"rot":{"x":359.9792,"y":89.9969,"z":359.9832}},"0de2c4":{"lock":false,"pos":{"x":-16.6401,"y":1.36,"z":-67.8206},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"0f241b":{"lock":false,"pos":{"x":-22.6169,"y":1.7837,"z":-84.8185},"rot":{"x":0.0168,"y":180,"z":359.9792}},"1aebf8":{"lock":false,"pos":{"x":-26.3002,"y":1.2711,"z":-69.0606},"rot":{"x":359.9792,"y":90.0002,"z":359.9832}},"226716":{"lock":false,"pos":{"x":-16.6401,"y":1.3592,"z":-70.2906},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"2a0151":{"lock":false,"pos":{"x":-26.2996,"y":1.2665,"z":-84.818},"rot":{"x":359.9792,"y":90.0002,"z":359.9832}},"2d7917":{"lock":false,"pos":{"x":-22.6169,"y":1.3133,"z":-61.2414},"rot":{"x":0.0168,"y":179.9999,"z":359.9792}},"307044":{"lock":false,"pos":{"x":-16.6402,"y":1.355,"z":-84.8182},"rot":{"x":0.0208,"y":270.0222,"z":0.0168}},"3ddfeb":{"lock":false,"pos":{"x":-16.6394,"y":1.3546,"z":-86.0186},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"3f0e28":{"lock":false,"pos":{"x":-19.2959,"y":1.3122,"z":-69.0607},"rot":{"x":0.0208,"y":270.0209,"z":0.0168}},"41bfc7":{"lock":false,"pos":{"x":-16.6401,"y":1.3619,"z":-61.231},"rot":{"x":0.0208,"y":270.0109,"z":0.0168}},"4ad11b":{"lock":false,"pos":{"x":-16.6396,"y":1.3573,"z":-76.9456},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"4d0a50":{"lock":false,"pos":{"x":-22.6139,"y":1.3156,"z":-53.4381},"rot":{"x":0.0168,"y":180,"z":359.9792}},"543164":{"lock":false,"pos":{"x":-16.6403,"y":1.3596,"z":-69.0603},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"6330da":{"lock":false,"pos":{"x":-16.6401,"y":1.3638,"z":-54.6207},"rot":{"x":0.0208,"y":270.0005,"z":0.0168}},"779aa6":{"lock":false,"pos":{"x":-16.6385,"y":1.3554,"z":-83.5415},"rot":{"x":0.0208,"y":269.998,"z":0.0168}},"808696":{"lock":false,"pos":{"x":-19.3001,"y":1.3145,"z":-61.2332},"rot":{"x":0.0208,"y":270.0226,"z":0.0168}},"810d82":{"lock":false,"pos":{"x":-19.2998,"y":1.8953,"z":-84.8182},"rot":{"x":0.0208,"y":270.0226,"z":0.0168}},"8a01b9":{"lock":false,"pos":{"x":-19.2936,"y":1.3099,"z":-76.9415},"rot":{"x":0.0208,"y":270.0234,"z":0.0168}},"9e80b9":{"lock":false,"pos":{"x":-16.6401,"y":1.3642,"z":-53.3904},"rot":{"x":0.0208,"y":269.9839,"z":0.0168}},"a01c9b":{"lock":false,"pos":{"x":-19.3,"y":1.3168,"z":-53.4358},"rot":{"x":0.0208,"y":270.0211,"z":0.0168}},"bde4a6":{"lock":false,"pos":{"x":-16.6401,"y":1.3645,"z":-52.152},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"bfb635":{"lock":false,"pos":{"x":-26.3002,"y":1.2688,"z":-76.9456},"rot":{"x":359.9792,"y":90.0002,"z":359.9832}},"cfcb92":{"lock":false,"pos":{"x":-26.3001,"y":1.2734,"z":-61.241},"rot":{"x":359.9792,"y":90.0002,"z":359.9832}},"d6fdbf":{"lock":false,"pos":{"x":-16.64,"y":1.3615,"z":-62.4609},"rot":{"x":0.0208,"y":269.9652,"z":0.0168}},"d92dda":{"lock":false,"pos":{"x":-22.6157,"y":1.3087,"z":-76.946},"rot":{"x":0.0168,"y":179.9999,"z":359.9792}},"d9fb86":{"lock":false,"pos":{"x":-16.6401,"y":1.3569,"z":-78.1756},"rot":{"x":0.0208,"y":270.0087,"z":0.0168}},"ddb016":{"lock":false,"pos":{"x":-22.6157,"y":1.311,"z":-69.0756},"rot":{"x":0.0168,"y":179.9999,"z":359.9792}},"de216f":{"lock":false,"pos":{"x":-16.6401,"y":1.3622,"z":-60.001},"rot":{"x":0.0208,"y":270.0107,"z":0.0168}},"e04b48":{"lock":false,"pos":{"x":-16.6403,"y":1.3576,"z":-75.7054},"rot":{"x":0.0208,"y":269.9874,"z":0.0168}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Pokemon Investigators +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.12650633 + posY: 1.12496579 + posZ: -50.2696 + rotX: 359.979156 + rotY: 89.99961 + rotZ: 359.983215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card 3f0e28.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card 3f0e28.yaml new file mode 100644 index 000000000..f8cd257cf --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card 3f0e28.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277902 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2779': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1604925196274256112/09975E37369A4D62F42798A15026E960D13CE66B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1604925196274255603/464879A02BE98ABBE0C9646E040701C54C0C9572/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 3f0e28 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -19.2958546 + posY: 1.3122319 + posZ: -69.0606842 + rotX: 0.0208028052 + rotY: 270.020874 + rotZ: 0.0167784151 + scaleX: 0.587234735 + scaleY: 1.0 + scaleZ: 0.587234735 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card 808696.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card 808696.yaml new file mode 100644 index 000000000..a89a313df --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card 808696.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277903 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2779': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1604925196274256112/09975E37369A4D62F42798A15026E960D13CE66B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1604925196274255603/464879A02BE98ABBE0C9646E040701C54C0C9572/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: '808696' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -19.3000546 + posY: 1.31452155 + posZ: -61.2332344 + rotX: 0.0208019558 + rotY: 270.022583 + rotZ: 0.016779203 + scaleX: 0.587234735 + scaleY: 1.0 + scaleZ: 0.587234735 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card 810d82.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card 810d82.yaml new file mode 100644 index 000000000..67b55f851 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card 810d82.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277901 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2779': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1604925196274256112/09975E37369A4D62F42798A15026E960D13CE66B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1604925196274255603/464879A02BE98ABBE0C9646E040701C54C0C9572/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 810d82 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -19.2997818 + posY: 1.307618 + posZ: -84.81819 + rotX: 0.02080076 + rotY: 270.022675 + rotZ: 0.0167762935 + scaleX: 0.587234735 + scaleY: 1.0 + scaleZ: 0.587234735 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card 8a01b9.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card 8a01b9.yaml new file mode 100644 index 000000000..f6404386c --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card 8a01b9.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277900 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2779': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1604925196274256112/09975E37369A4D62F42798A15026E960D13CE66B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1604925196274255603/464879A02BE98ABBE0C9646E040701C54C0C9572/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8a01b9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -19.2935867 + posY: 1.30992579 + posZ: -76.94153 + rotX: 0.0208017342 + rotY: 270.0234 + rotZ: 0.0167794768 + scaleX: 0.587234735 + scaleY: 1.0 + scaleZ: 0.587234735 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card a01c9b.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card a01c9b.yaml new file mode 100644 index 000000000..63776f24a --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card a01c9b.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277904 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2779': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1604925196274256112/09975E37369A4D62F42798A15026E960D13CE66B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1604925196274255603/464879A02BE98ABBE0C9646E040701C54C0C9572/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: a01c9b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -19.3 + posY: 1.31680393 + posZ: -53.4358177 + rotX: 0.0208025947 + rotY: 270.021057 + rotZ: 0.0167785659 + scaleX: 0.587234735 + scaleY: 1.0 + scaleZ: 0.587234735 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card Ashley Sumner d92dda.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card Ashley Sumner d92dda.yaml new file mode 100644 index 000000000..084cab839 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card Ashley Sumner d92dda.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277839 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2778': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d92dda +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Ashley Sumner +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6157 + posY: 1.308718 + posZ: -76.946 + rotX: 0.0167714171 + rotY: 179.999939 + rotZ: 359.9792 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card Maxwell Blue 0f241b.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card Maxwell Blue 0f241b.yaml new file mode 100644 index 000000000..98f4ba465 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card Maxwell Blue 0f241b.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277840 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2778': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 0f241b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Maxwell Blue +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6168861 + posY: 1.30641317 + posZ: -84.81846 + rotX: 0.0167711712 + rotY: 179.999985 + rotZ: 359.9792 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card Reggie Red Hunter ddb016.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card Reggie Red Hunter ddb016.yaml new file mode 100644 index 000000000..5ad5a479c --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card Reggie Red Hunter ddb016.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277841 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2778': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ddb016 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Reggie "Red" Hunter +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6157 + posY: 1.3110218 + posZ: -69.0756 + rotX: 0.0167712066 + rotY: 179.999939 + rotZ: 359.9792 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card Samantha Oak 2d7917.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card Samantha Oak 2d7917.yaml new file mode 100644 index 000000000..f7b50a5f4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card Samantha Oak 2d7917.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277842 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2778': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 2d7917 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Samantha Oak +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6169 + posY: 1.31331456 + posZ: -61.2414 + rotX: 0.01677137 + rotY: 179.999939 + rotZ: 359.9792 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card Willa Strucker 4d0a50.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card Willa Strucker 4d0a50.yaml new file mode 100644 index 000000000..b429d2233 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Card Willa Strucker 4d0a50.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277843 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2778': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 4d0a50 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Willa Strucker +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6139 + posY: 1.3155998 + posZ: -53.4381 + rotX: 0.0167713426 + rotY: 179.999954 + rotZ: 359.9792 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token 41bfc7.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token 41bfc7.yaml new file mode 100644 index 000000000..b0e5c2d92 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token 41bfc7.yaml @@ -0,0 +1,43 @@ +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: 41bfc7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.64006 + posY: 1.36188328 + posZ: -61.23097 + rotX: 0.0208128579 + rotY: 270.010925 + rotZ: 0.0167718641 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token 4ad11b.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token 4ad11b.yaml new file mode 100644 index 000000000..3d1d59e1d --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token 4ad11b.yaml @@ -0,0 +1,43 @@ +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: 4ad11b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6395721 + posY: 1.35728359 + posZ: -76.9456253 + rotX: 0.0208164416 + rotY: 269.9997 + rotZ: 0.01676805 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token 6330da.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token 6330da.yaml new file mode 100644 index 000000000..f1d4bb474 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token 6330da.yaml @@ -0,0 +1,43 @@ +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: 6330da +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.64009 + posY: 1.36381841 + posZ: -54.62074 + rotX: 0.0208161864 + rotY: 270.000458 + rotZ: 0.0167682786 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token 9e80b9.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token 9e80b9.yaml new file mode 100644 index 000000000..172a47161 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token 9e80b9.yaml @@ -0,0 +1,43 @@ +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: 9e80b9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.640089 + posY: 1.3641783 + posZ: -53.3904152 + rotX: 0.0208216347 + rotY: 269.983948 + rotZ: 0.0167623851 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token bde4a6.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token bde4a6.yaml new file mode 100644 index 000000000..35e1bc1c4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token bde4a6.yaml @@ -0,0 +1,43 @@ +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: bde4a6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6400871 + posY: 1.364541 + posZ: -52.15202 + rotX: 0.0208160821 + rotY: 269.999817 + rotZ: 0.0167681072 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token d6fdbf.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token d6fdbf.yaml new file mode 100644 index 000000000..8edbce27d --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token d6fdbf.yaml @@ -0,0 +1,43 @@ +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: d6fdbf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.64002 + posY: 1.36152351 + posZ: -62.460907 + rotX: 0.020826932 + rotY: 269.96524 + rotZ: 0.0167552829 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token d9fb86.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token d9fb86.yaml new file mode 100644 index 000000000..6dea8290c --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token d9fb86.yaml @@ -0,0 +1,43 @@ +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: d9fb86 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6401119 + posY: 1.35692358 + posZ: -78.17563 + rotX: 0.0208139941 + rotY: 270.008667 + rotZ: 0.016770795 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token de216f.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token de216f.yaml new file mode 100644 index 000000000..43b7c2845 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token de216f.yaml @@ -0,0 +1,43 @@ +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: de216f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6400642 + posY: 1.36224329 + posZ: -60.00097 + rotX: 0.0208128318 + rotY: 270.0107 + rotZ: 0.0167718567 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token e04b48.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token e04b48.yaml new file mode 100644 index 000000000..4ad85b4c0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Survivor turn token e04b48.yaml @@ -0,0 +1,43 @@ +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: e04b48 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6402836 + posY: 1.35764635 + posZ: -75.70542 + rotX: 0.020820139 + rotY: 269.987366 + rotZ: 0.0167633146 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Turn token 0de2c4.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Turn token 0de2c4.yaml new file mode 100644 index 000000000..c36a92337 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Turn token 0de2c4.yaml @@ -0,0 +1,43 @@ +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: 0de2c4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6400566 + posY: 1.35995448 + posZ: -67.82057 + rotX: 0.0208167639 + rotY: 269.999756 + rotZ: 0.0167680867 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Turn token 226716.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Turn token 226716.yaml new file mode 100644 index 000000000..a658e11dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Turn token 226716.yaml @@ -0,0 +1,43 @@ +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: '226716' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6400528 + posY: 1.35923135 + posZ: -70.29057 + rotX: 0.0208167471 + rotY: 269.999573 + rotZ: 0.0167679749 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Turn token 307044.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Turn token 307044.yaml new file mode 100644 index 000000000..65cb9d520 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Turn token 307044.yaml @@ -0,0 +1,43 @@ +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: '307044' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6402168 + posY: 1.35497916 + posZ: -84.8181839 + rotX: 0.0208096784 + rotY: 270.022247 + rotZ: 0.01677615 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Turn token 3ddfeb.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Turn token 3ddfeb.yaml new file mode 100644 index 000000000..cfe2aa567 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Turn token 3ddfeb.yaml @@ -0,0 +1,43 @@ +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: 3ddfeb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6393833 + posY: 1.35462809 + posZ: -86.01858 + rotX: 0.0208162237 + rotY: 269.999573 + rotZ: 0.01676779 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Turn token 543164.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Turn token 543164.yaml new file mode 100644 index 000000000..46258f719 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Turn token 543164.yaml @@ -0,0 +1,43 @@ +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: '543164' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.640274 + posY: 1.35959148 + posZ: -69.06029 + rotX: 0.0208171029 + rotY: 269.999481 + rotZ: 0.0167679489 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Turn token 779aa6.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Turn token 779aa6.yaml new file mode 100644 index 000000000..1e65c739b --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model Turn token 779aa6.yaml @@ -0,0 +1,43 @@ +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: 779aa6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.638546 + posY: 1.35535347 + posZ: -83.5415 + rotX: 0.0208172388 + rotY: 269.998016 + rotZ: 0.0167672765 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 02dd21.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 02dd21.yaml new file mode 100644 index 000000000..d8b5395c6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 02dd21.yaml @@ -0,0 +1,63 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards 02dd21/Card Machine of Saturn c247e4.yaml' +- !include 'Custom_Model_Bag starter deck & cards 02dd21/Card Porygon 2c54c3.yaml' +- !include 'Custom_Model_Bag starter deck & cards 02dd21/Card Memory of the Rings + e05570.yaml' +- !include 'Custom_Model_Bag starter deck & cards 02dd21/Deck Willa Strucker Starter + Deck 5020f3.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: 02dd21 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +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.27569318 + posZ: -53.4368 + rotX: 359.979156 + rotY: 89.99688 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 02dd21/Card Machine of Saturn c247e4.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 02dd21/Card Machine of Saturn c247e4.yaml new file mode 100644 index 000000000..0be47784f --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 02dd21/Card Machine of Saturn c247e4.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277406 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c247e4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Machine of Saturn +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.5583649 + posY: 2.43412066 + posZ: -88.42605 + rotX: 0.02080903 + rotY: 269.9995 + rotZ: 0.0167715214 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 02dd21/Card Memory of the Rings e05570.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 02dd21/Card Memory of the Rings e05570.yaml new file mode 100644 index 000000000..c063cf8d1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 02dd21/Card Memory of the Rings e05570.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277409 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e05570 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Memory of the Rings +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.4576683 + posY: 2.43651819 + posZ: -80.36255 + rotX: 0.0208089128 + rotY: 269.999542 + rotZ: 0.0167713743 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 02dd21/Card Porygon 2c54c3.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 02dd21/Card Porygon 2c54c3.yaml new file mode 100644 index 000000000..e004a8728 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 02dd21/Card Porygon 2c54c3.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277407 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 2c54c3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Porygon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.5080528 + posY: 2.43529463 + posZ: -84.4779053 + rotX: 0.0208090637 + rotY: 269.999542 + rotZ: 0.0167711712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 02dd21/Deck Willa Strucker Starter Deck 5020f3.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 02dd21/Deck Willa Strucker Starter Deck 5020f3.yaml new file mode 100644 index 000000000..5c90288e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 02dd21/Deck Willa Strucker Starter Deck 5020f3.yaml @@ -0,0 +1,1628 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 277409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e05570 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Memory of the Rings + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.6117668 + posY: 1.31180871 + posZ: -52.74436 + rotX: 0.0208092686 + rotY: 269.9995 + rotZ: 0.0167702045 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2c54c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Porygon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.18446 + posY: 1.3538605 + posZ: -52.73879 + rotX: 0.0208092257 + rotY: 269.999542 + rotZ: 0.0167705677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c247e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Machine of Saturn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.8639565 + posY: 1.38759756 + posZ: -52.50327 + rotX: 0.0208088867 + rotY: 269.9995 + rotZ: 0.0167710371 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '438870' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Alternate Art FIne Clothes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.5365982 + posY: 1.31316423 + posZ: -53.169632 + rotX: 0.0208092462 + rotY: 270.0 + rotZ: 0.0167709 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 69361e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Alternate Art FIne Clothes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.3255787 + posY: 1.353397 + posZ: -52.7447472 + rotX: 0.0208091009 + rotY: 270.0 + rotZ: 0.0167708229 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 57376a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Conjuring Cube + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.2970428 + posY: 1.38021135 + posZ: -53.0055351 + rotX: 0.0208002813 + rotY: 270.008118 + rotZ: 0.0167971775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2c1787 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Conjuring Cube + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.2970715 + posY: 1.39572549 + posZ: -53.005394 + rotX: 0.0215631239 + rotY: 270.008179 + rotZ: 0.0160416365 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9b077d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Untamed Eevee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.18222 + posY: 1.41302562 + posZ: -52.94856 + rotX: 0.02080719 + rotY: 270.00415 + rotZ: 0.01677169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 65efb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Untamed Squirtle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.0675735 + posY: 1.421554 + posZ: -52.569416 + rotX: 0.020807337 + rotY: 270.00412 + rotZ: 0.0167724174 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fdad2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Untamed Machop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.1411762 + posY: 1.4185946 + posZ: -53.5584068 + rotX: 0.0207519 + rotY: 270.000854 + rotZ: 0.0177454241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1e9f58 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.4966 + posY: 1.4367044 + posZ: -52.70086 + rotX: 0.02080944 + rotY: 269.9969 + rotZ: 0.0167696122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cb914d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.4966717 + posY: 1.4517138 + posZ: -52.7009468 + rotX: 0.0210038349 + rotY: 269.9969 + rotZ: 0.0159764457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5958de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.14641 + posY: 1.45284355 + posZ: -52.82348 + rotX: 0.0166456737 + rotY: 269.985474 + rotZ: 0.0112019693 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 31f20b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.14641 + posY: 1.47151339 + posZ: -52.8234863 + rotX: 0.0174051188 + rotY: 269.985474 + rotZ: 0.009787292 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f2d673 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.9768314 + posY: 1.49532127 + posZ: -53.4339066 + rotX: 0.0005723085 + rotY: 270.021667 + rotZ: 0.320666939 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '826720' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.97687 + posY: 1.5342139 + posZ: -53.4331627 + rotX: 0.0518565662 + rotY: 270.023682 + rotZ: 1.33904827 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f6297c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Inspiring Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.94937 + posY: 1.52272415 + posZ: -52.9567 + rotX: 0.0208053645 + rotY: 270.0116 + rotZ: 0.0167749878 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 323df2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Inspiring Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.9493618 + posY: 1.5223496 + posZ: -52.95669 + rotX: 0.02155059 + rotY: 270.0114 + rotZ: 0.015694622 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3798': + 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: c3cb28 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Self-Sacrifice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.8251572 + posY: 1.53783894 + posZ: -53.1820946 + rotX: 0.0208060313 + rotY: 270.0088 + rotZ: 0.0167734921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3798': + 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: 4570b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Self-Sacrifice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.8251553 + posY: 1.55083537 + posZ: -53.18209 + rotX: 0.0212833416 + rotY: 270.0088 + rotZ: 0.0164772347 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4dc519 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"Let me handle this!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.0495663 + posY: 1.53792763 + posZ: -53.1722145 + rotX: 0.0208003912 + rotY: 270.02832 + rotZ: 0.0167806782 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f6535a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: On The Hunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.3517361 + posY: 1.54445863 + posZ: -52.97973 + rotX: 0.02079381 + rotY: 270.0313 + rotZ: 0.01679333 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dc828f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Physical Training + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.95488 + posY: 1.55229211 + posZ: -52.8453331 + rotX: 0.0208204053 + rotY: 269.969116 + rotZ: 0.0167861618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0dd7f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Physical Training + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.95489 + posY: 1.57041752 + posZ: -52.84543 + rotX: 0.0210814364 + rotY: 269.969147 + rotZ: 0.016020216 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 378620 + 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: 0de480 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hallowed Mirror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.7596455 + posY: 1.58314693 + posZ: -52.9404678 + rotX: 0.02081771 + rotY: 269.968933 + rotZ: 0.0167587884 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 07b168 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.93647 + posY: 1.62168825 + posZ: -53.2412834 + rotX: 0.02174193 + rotY: 270.0285 + rotZ: 0.0164426174 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0fbfb3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Heroic Rescue + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.3838463 + posY: 1.30292833 + posZ: 62.4903336 + rotX: 0.0212114435 + rotY: 270.028625 + rotZ: 0.0140652936 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 91c529 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Heroic Rescue + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.38383 + posY: 1.3447057 + posZ: 62.4903221 + rotX: 0.0282384 + rotY: 270.028625 + rotZ: 0.012983527 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d6b65f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Second Wind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.3838348 + posY: 1.39358664 + posZ: 62.49033 + rotX: 0.02153464 + rotY: 270.028931 + rotZ: 0.016448278 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ae3b55 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shortcut + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.9284153 + posY: 1.660875 + posZ: -52.7445526 + rotX: 0.0208120458 + rotY: 269.98822 + rotZ: 0.0167657677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a5e7f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shortcut + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.92841 + posY: 1.65933955 + posZ: -52.744545 + rotX: 0.0210855361 + rotY: 269.988037 + rotZ: 0.0156079279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4481': + 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: 5f980f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Crack the Case + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.74799 + posY: 1.31353092 + posZ: -47.9325562 + rotX: 0.0208086763 + rotY: 269.999725 + rotZ: 0.0167717915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4481': + 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: 4acaaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Crack the Case + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.7978935 + posY: 1.35540092 + posZ: -47.9732437 + rotX: 0.0208086129 + rotY: 269.999725 + rotZ: 0.01677164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + '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 + '3798': + 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 + '4481': + 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 +DeckIDs: +- 277409 +- 277407 +- 277406 +- 267804 +- 267806 +- 267712 +- 267712 +- 267706 +- 267711 +- 267710 +- 209608 +- 209608 +- 209606 +- 209606 +- 209609 +- 209609 +- 226301 +- 226301 +- 379831 +- 379831 +- 226305 +- 226314 +- 226323 +- 226323 +- 378620 +- 226313 +- 226311 +- 226311 +- 226316 +- 230405 +- 230405 +- 448112 +- 448112 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 5020f3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Willa Strucker Starter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.300005 + posY: 3.53996634 + posZ: -53.4368477 + rotX: 0.0208840128 + rotY: 270.000031 + rotZ: 180.0167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 1aebf8.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 1aebf8.yaml new file mode 100644 index 000000000..ab401fe7b --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 1aebf8.yaml @@ -0,0 +1,61 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards 1aebf8/Card Bear Trap cd1bb9.yaml' +- !include 'Custom_Model_Bag starter deck & cards 1aebf8/Card Thrill of the Hunt 8b6be6.yaml' +- !include 'Custom_Model_Bag starter deck & cards 1aebf8/Deck Reggie Red Hunter Starter + Deck 9765d6.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: 1aebf8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +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.3002 + posY: 1.27111971 + posZ: -69.0606 + rotX: 359.9792 + rotY: 90.00021 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 1aebf8/Card Bear Trap cd1bb9.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 1aebf8/Card Bear Trap cd1bb9.yaml new file mode 100644 index 000000000..5dc04e889 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 1aebf8/Card Bear Trap cd1bb9.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277405 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: cd1bb9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Bear Trap +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.4694176 + posY: 2.31947064 + posZ: -81.49298 + rotX: 0.02080859 + rotY: 269.9995 + rotZ: 0.01677089 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 1aebf8/Card Thrill of the Hunt 8b6be6.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 1aebf8/Card Thrill of the Hunt 8b6be6.yaml new file mode 100644 index 000000000..43e0c1b3d --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 1aebf8/Card Thrill of the Hunt 8b6be6.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277408 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8b6be6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Thrill of the Hunt +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.8857288 + posY: 4.35382557 + posZ: -77.36941 + rotX: 0.0208083447 + rotY: 269.9995 + rotZ: 0.0167710762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 1aebf8/Deck Reggie Red Hunter Starter Deck 9765d6.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 1aebf8/Deck Reggie Red Hunter Starter Deck 9765d6.yaml new file mode 100644 index 000000000..35f06c280 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 1aebf8/Deck Reggie Red Hunter Starter Deck 9765d6.yaml @@ -0,0 +1,1598 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 277408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8b6be6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Thrill of the Hunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.1235924 + posY: 1.30536067 + posZ: -71.65642 + rotX: 0.02080842 + rotY: 269.9996 + rotZ: 0.0167694837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cd1bb9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bear Trap + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.7491035 + posY: 1.34739375 + posZ: -71.5669861 + rotX: 0.0208083782 + rotY: 269.9995 + rotZ: 0.016770063 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 965dd6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Alternate Art FIne Clothes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.9869366 + posY: 1.30871689 + posZ: -69.04508 + rotX: 0.02081558 + rotY: 269.975647 + rotZ: 0.0167623572 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e04c34 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Alternate Art FIne Clothes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.988184 + posY: 1.35122776 + posZ: -69.21163 + rotX: 0.252224356 + rotY: 269.9544 + rotZ: 0.0179650113 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '259552' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Conjuring Cube + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.0054741 + posY: 1.37560081 + posZ: -69.11762 + rotX: 0.020806808 + rotY: 270.00824 + rotZ: 0.0167961027 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d39499 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Conjuring Cube + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.0054932 + posY: 1.39666188 + posZ: -69.11763 + rotX: 0.020695297 + rotY: 270.008179 + rotZ: 0.0161968358 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 030bcb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Untamed Eevee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.9868679 + posY: 1.4132545 + posZ: -68.76779 + rotX: 0.308879524 + rotY: 269.98053 + rotZ: 0.0177180991 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267707 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b5c3bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Untamed Bulbasaur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.3643665 + posY: 1.41633654 + posZ: -69.1058044 + rotX: 0.02080884 + rotY: 270.004028 + rotZ: 0.016772436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 105dca + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Untamed Squirtle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.7029762 + posY: 2.37903237 + posZ: -69.39168 + rotX: 38.07916 + rotY: 269.978973 + rotZ: 0.0166208111 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '817384' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.6305962 + posY: 1.43181574 + posZ: -69.23539 + rotX: 0.0208103452 + rotY: 269.9969 + rotZ: 0.016771419 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 54ac52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.6305866 + posY: 1.43472481 + posZ: -69.2353745 + rotX: 0.022969814 + rotY: 269.996765 + rotZ: 0.0140430778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dd748c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.8204 + posY: 1.44767487 + posZ: -69.28857 + rotX: 0.0208106562 + rotY: 269.997345 + rotZ: 0.0167713147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4dbf48 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.35321 + posY: 1.45554972 + posZ: -69.2790756 + rotX: 0.0208102353 + rotY: 269.997345 + rotZ: 0.0167725384 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3688bd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.986063 + posY: 1.46478522 + posZ: -69.0646057 + rotX: 0.193186939 + rotY: 269.982635 + rotZ: 0.01788279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 17ff2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.24316 + posY: 1.480519 + posZ: -68.93126 + rotX: 0.0199640244 + rotY: 269.980469 + rotZ: 0.01608039 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cb2616 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.7895451 + posY: 1.49070048 + posZ: -69.46216 + rotX: 0.0005251108 + rotY: 270.021667 + rotZ: 0.320898354 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a64804 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.78968 + posY: 1.49336672 + posZ: -69.46072 + rotX: -0.00363080576 + rotY: 270.0271 + rotZ: 0.323021322 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 261523 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 483a15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hard Knocks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 40.9602165 + posY: 1.30019248 + posZ: 74.04869 + rotX: 0.0196882337 + rotY: 269.988464 + rotZ: 0.027125556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 261523 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2afa28 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hard Knocks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 40.9601936 + posY: 1.33584976 + posZ: 74.04868 + rotX: 359.962341 + rotY: 269.988525 + rotZ: 359.879547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 441010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4410': + 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: 8f56cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Intel Report + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.56286 + posY: 1.29994631 + posZ: 62.55276 + rotX: 0.01972404 + rotY: 269.976532 + rotZ: 0.02679507 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 441010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4410': + 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: 231cb4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Intel Report + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.5628357 + posY: 1.33573174 + posZ: 62.5527458 + rotX: 359.9644 + rotY: 269.976624 + rotZ: 359.8859 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 261700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2617': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cb1a38 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"Watch this!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.3838463 + posY: 1.30559325 + posZ: 71.69038 + rotX: 0.021502953 + rotY: 269.999817 + rotZ: 0.0121815037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 261700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2617': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 416f73 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"Watch this!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.3838272 + posY: 1.34563518 + posZ: 71.69035 + rotX: 0.0344469622 + rotY: 269.999817 + rotZ: 0.009204853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230414 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f9130f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Persuasion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.38588 + posY: 1.30186236 + posZ: 57.89011 + rotX: 0.01933927 + rotY: 269.98822 + rotZ: 0.03133654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4470': + 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: bb2ec4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Interrogate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.38375 + posY: 1.30119979 + posZ: 55.590332 + rotX: 0.019281 + rotY: 270.028931 + rotZ: 0.0320119821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 447008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4470': + 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: b4479d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Interrogate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.383728 + posY: 1.33524632 + posZ: 55.5903168 + rotX: 359.9178 + rotY: 270.029083 + rotZ: 359.776062 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 261528 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 58246e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: .41 Derringer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 41.68112 + posY: 2.33129334 + posZ: 47.47222 + rotX: 0.0208115615 + rotY: 269.988342 + rotZ: 0.01676345 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dfec63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gravedigger's Shovel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6183825 + posY: 1.2882998 + posZ: 69.45279 + rotX: 0.03194014 + rotY: 269.984344 + rotZ: 359.9396 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 37af69 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gravedigger's Shovel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6182289 + posY: 1.31561327 + posZ: 69.4528351 + rotX: 0.445795923 + rotY: 269.982544 + rotZ: 359.736359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 37bc38 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Survival Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6340761 + posY: 1.294101 + posZ: 85.5554047 + rotX: 0.0216206815 + rotY: 270.5108 + rotZ: 0.0106839249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1cc3fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Survival Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6183767 + posY: 1.33121383 + posZ: 85.55278 + rotX: 0.018708596 + rotY: 269.969177 + rotZ: 0.0229415148 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226330 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b84961 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: .45 Automatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.581091 + posY: 2.511111 + posZ: 34.9377 + rotX: 0.0208163783 + rotY: 269.96933 + rotZ: 0.0167609751 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2617': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + '4410': + 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 + '4470': + 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 +DeckIDs: +- 277408 +- 277405 +- 267802 +- 267802 +- 267712 +- 267712 +- 267706 +- 267707 +- 267711 +- 209608 +- 209608 +- 209602 +- 209602 +- 209604 +- 209604 +- 209609 +- 209609 +- 261523 +- 261523 +- 441010 +- 441010 +- 261700 +- 261700 +- 230414 +- 447008 +- 447008 +- 261528 +- 209729 +- 209729 +- 226322 +- 226322 +- 226330 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 9765d6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Reggie "Red" Hunter Starter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.3001842 + posY: 3.53051615 + posZ: -69.06058 + rotX: 0.0208924059 + rotY: 269.999817 + rotZ: 180.0167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 2a0151.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 2a0151.yaml new file mode 100644 index 000000000..3d1143b05 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 2a0151.yaml @@ -0,0 +1,65 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards 2a0151/Card Maxwell''s Hitmonchan + cbc240.yaml' +- !include 'Custom_Model_Bag starter deck & cards 2a0151/Card Maxwell''s Hitmonlee + 5cd49f.yaml' +- !include 'Custom_Model_Bag starter deck & cards 2a0151/Card Unruly Hitmonchan f694a3.yaml' +- !include 'Custom_Model_Bag starter deck & cards 2a0151/Card Unruly Hitmonlee 66a5ef.yaml' +- !include 'Custom_Model_Bag starter deck & cards 2a0151/Deck Maxwell Blue Starter + Deck ccb185.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: 2a0151 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +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.2996 + posY: 1.26650739 + posZ: -84.818 + rotX: 359.979156 + rotY: 90.0002441 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 2a0151/Card Maxwell's Hitmonchan cbc240.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 2a0151/Card Maxwell's Hitmonchan cbc240.yaml new file mode 100644 index 000000000..cec5bc133 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 2a0151/Card Maxwell's Hitmonchan cbc240.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277412 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: cbc240 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Maxwell's Hitmonchan +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.2995872 + posY: 3.364522 + posZ: -84.81799 + rotX: 0.0208231825 + rotY: 269.9997 + rotZ: 0.0167764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 2a0151/Card Maxwell's Hitmonlee 5cd49f.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 2a0151/Card Maxwell's Hitmonlee 5cd49f.yaml new file mode 100644 index 000000000..1d231bb5b --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 2a0151/Card Maxwell's Hitmonlee 5cd49f.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277413 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 5cd49f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Maxwell's Hitmonlee +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.2995872 + posY: 3.36454034 + posZ: -84.81799 + rotX: 0.0208232161 + rotY: 269.999634 + rotZ: 0.0167764165 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 2a0151/Card Unruly Hitmonchan f694a3.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 2a0151/Card Unruly Hitmonchan f694a3.yaml new file mode 100644 index 000000000..a9a2b4e47 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 2a0151/Card Unruly Hitmonchan f694a3.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277415 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: f694a3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Unruly Hitmonchan +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.2995872 + posY: 3.36452651 + posZ: -84.81799 + rotX: 0.0208233558 + rotY: 269.999634 + rotZ: 0.01677678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 2a0151/Card Unruly Hitmonlee 66a5ef.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 2a0151/Card Unruly Hitmonlee 66a5ef.yaml new file mode 100644 index 000000000..b7062f66a --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 2a0151/Card Unruly Hitmonlee 66a5ef.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277416 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 66a5ef +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Unruly Hitmonlee +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.2995872 + posY: 3.3645947 + posZ: -84.81799 + rotX: 0.020824017 + rotY: 269.9996 + rotZ: 0.0167784747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 2a0151/Deck Maxwell Blue Starter Deck ccb185.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 2a0151/Deck Maxwell Blue Starter Deck ccb185.yaml new file mode 100644 index 000000000..1bf394722 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards 2a0151/Deck Maxwell Blue Starter Deck ccb185.yaml @@ -0,0 +1,1566 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 277416 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 66a5ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unruly Hitmonlee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.3976364 + posY: 1.302541 + posZ: -79.7085648 + rotX: 0.02080863 + rotY: 269.999573 + rotZ: 0.0167695452 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277415 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f694a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unruly Hitmonchan + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.63404 + posY: 1.34435511 + posZ: -79.7421646 + rotX: 0.02080859 + rotY: 269.9996 + rotZ: 0.016769724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f1c7c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Alternate Art FIne Clothes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.9864635 + posY: 1.30419159 + posZ: -84.50529 + rotX: 0.0208169036 + rotY: 269.9718 + rotZ: 0.0167607814 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7f567a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Alternate Art FIne Clothes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.404047 + posY: 1.34415019 + posZ: -84.69686 + rotX: 0.020808626 + rotY: 270.0 + rotZ: 0.0167706516 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d8044d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Conjuring Cube + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.986557 + posY: 1.36155248 + posZ: -85.6972 + rotX: 0.0212163813 + rotY: 269.964844 + rotZ: 2.01275635 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2f459d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Conjuring Cube + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.98635 + posY: 1.42015111 + posZ: -85.6960144 + rotX: 0.292864352 + rotY: 269.992737 + rotZ: 1.12540567 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 501fe0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Untamed Eevee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.98666 + posY: 1.41065669 + posZ: -84.58176 + rotX: 0.402119368 + rotY: 269.971344 + rotZ: 0.0176651049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '382742' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Untamed Machop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.5138264 + posY: 1.411701 + posZ: -83.8363647 + rotX: 0.0208084155 + rotY: 270.00415 + rotZ: 0.0167724639 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b2209b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Untamed Charmander + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.1718445 + posY: 1.41839373 + posZ: -84.7228 + rotX: 0.02081534 + rotY: 269.9794 + rotZ: 0.0167652089 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5125b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.9866638 + posY: 1.429657 + posZ: -84.57224 + rotX: 0.241319731 + rotY: 269.9683 + rotZ: 0.0196365342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f6fc9b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.9864559 + posY: 1.43444407 + posZ: -84.57229 + rotX: 0.250520945 + rotY: 269.965271 + rotZ: 0.0198413562 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '899653' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.8992462 + posY: 1.44339466 + posZ: -83.8134155 + rotX: 0.0208085477 + rotY: 269.997345 + rotZ: 0.0167685263 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7967d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.8992271 + posY: 1.44871068 + posZ: -83.81339 + rotX: 0.0213161353 + rotY: 269.997131 + rotZ: 0.0155262295 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9e67ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.4136982 + posY: 1.4770689 + posZ: -85.0362549 + rotX: 0.0007300032 + rotY: 269.986633 + rotZ: 0.2405019 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 239f83 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.89817 + posY: 1.48644269 + posZ: -84.12211 + rotX: 0.0005191477 + rotY: 270.020966 + rotZ: 0.320896953 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 07b464 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.89817 + posY: 1.49967933 + posZ: -84.12211 + rotX: 0.0009300263 + rotY: 270.020966 + rotZ: 0.3205888 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 18f89e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Calling in Favors + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.9948921 + posY: 1.495331 + posZ: -84.71484 + rotX: 0.0166487768 + rotY: 269.995728 + rotZ: 0.0134247057 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5af2d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dig Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.5790176 + posY: 1.30042267 + posZ: 64.85536 + rotX: 0.0211313423 + rotY: 270.4062 + rotZ: 0.01414238 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0dd47f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dig Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.5628433 + posY: 1.33899093 + posZ: 64.85265 + rotX: 0.01400689 + rotY: 270.0346 + rotZ: 0.0133712087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4a559d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Resourceful + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.3838463 + posY: 1.3055867 + posZ: 71.69038 + rotX: 0.0215513837 + rotY: 270.056641 + rotZ: 0.0117706936 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b7f957 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Resourceful + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.3838234 + posY: 1.34511757 + posZ: 71.69035 + rotX: 0.0361258 + rotY: 270.056641 + rotZ: 0.008069924 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '359351' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Stunning Blow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.3838234 + posY: 1.34428382 + posZ: 71.69035 + rotX: 0.004942156 + rotY: 269.970581 + rotZ: 359.9822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 06d174 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lucky! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.56286 + posY: 1.300299 + posZ: 64.85268 + rotX: 0.0223795511 + rotY: 270.016663 + rotZ: 0.00628629234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d5a060 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lucky! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.5628357 + posY: 1.33638692 + posZ: 64.85265 + rotX: 0.0592700951 + rotY: 270.016632 + rotZ: 359.991638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cb23f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"Look what I found!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.56286 + posY: 1.29931271 + posZ: 60.2528 + rotX: 0.0195126981 + rotY: 270.002 + rotZ: 0.0291580278 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 494e53 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"Look what I found!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.5628357 + posY: 1.33426988 + posZ: 60.2527847 + rotX: 359.944916 + rotY: 270.002136 + rotZ: 359.838 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '137540' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fire Axe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.5628624 + posY: 1.30516994 + posZ: 80.95279 + rotX: 0.02080185 + rotY: 270.021576 + rotZ: 0.0167787056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6e01b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fire Axe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.5628433 + posY: 1.34510362 + posZ: 80.95278 + rotX: 0.0208019409 + rotY: 270.0216 + rotZ: 0.01677914 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230328 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7f5f6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shrivelling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6183834 + posY: 1.28474772 + posZ: 53.352787 + rotX: 0.0209628064 + rotY: 270.006042 + rotZ: 0.0157456882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230328 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0dad64 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shrivelling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6183853 + posY: 1.332871 + posZ: 53.352787 + rotX: 0.0235687066 + rotY: 270.006 + rotZ: 0.0153916078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 380126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3801': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: f9895c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Read the Signs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.4815426 + posY: 1.28981686 + posZ: 62.11542 + rotX: 0.020849647 + rotY: 270.0185 + rotZ: 0.0165129658 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 380126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3801': + 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: '' + DragSelectable: true + GMNotes: '' + GUID: c00a0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Read the Signs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.4815426 + posY: 1.33726048 + posZ: 62.11542 + rotX: 0.0202959087 + rotY: 270.0185 + rotZ: 0.01348392 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + '3801': + 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 +DeckIDs: +- 277416 +- 277415 +- 267800 +- 267804 +- 267712 +- 267712 +- 267706 +- 267710 +- 267708 +- 209608 +- 209608 +- 209602 +- 209602 +- 209600 +- 209609 +- 209609 +- 209610 +- 209731 +- 209731 +- 209702 +- 209702 +- 209705 +- 209710 +- 209710 +- 209716 +- 209716 +- 209725 +- 209725 +- 230328 +- 230328 +- 380126 +- 380126 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ccb185 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Maxwell Blue Starter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.299593 + posY: 3.54033113 + posZ: -84.81799 + rotX: 0.0245158821 + rotY: 270.0 + rotZ: 0.047029525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards bfb635.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards bfb635.yaml new file mode 100644 index 000000000..86120de8d --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards bfb635.yaml @@ -0,0 +1,61 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards bfb635/Card Ashley''s Pikachu 04f1c5.yaml' +- !include 'Custom_Model_Bag starter deck & cards bfb635/Card Direct Current 461a76.yaml' +- !include 'Custom_Model_Bag starter deck & cards bfb635/Deck Ashley Sumner Starter + Deck 5c104a.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: bfb635 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +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.3002 + posY: 1.26881123 + posZ: -76.9456 + rotX: 359.979156 + rotY: 90.0002441 + rotZ: 359.983246 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards bfb635/Card Ashley's Pikachu 04f1c5.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards bfb635/Card Ashley's Pikachu 04f1c5.yaml new file mode 100644 index 000000000..1c4858bbf --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards bfb635/Card Ashley's Pikachu 04f1c5.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277410 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 04f1c5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Ashley's Pikachu +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.6977921 + posY: 2.314452 + posZ: -89.2986145 + rotX: 0.0208084956 + rotY: 269.999542 + rotZ: 0.0167709123 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards bfb635/Card Direct Current 461a76.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards bfb635/Card Direct Current 461a76.yaml new file mode 100644 index 000000000..89a140b99 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards bfb635/Card Direct Current 461a76.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277417 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 461a76 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Direct Current +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.3001785 + posY: 3.36685658 + posZ: -76.94564 + rotX: 0.0208235811 + rotY: 269.9996 + rotZ: 0.0167782176 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards bfb635/Deck Ashley Sumner Starter Deck 5c104a.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards bfb635/Deck Ashley Sumner Starter Deck 5c104a.yaml new file mode 100644 index 000000000..0f3580a90 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards bfb635/Deck Ashley Sumner Starter Deck 5c104a.yaml @@ -0,0 +1,1566 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 277410 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 04f1c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ashley's Pikachu + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.429285 + posY: 1.30720341 + posZ: -71.1855 + rotX: 0.020808531 + rotY: 269.999725 + rotZ: 0.0167710632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277417 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 461a76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Direct Current + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.1782379 + posY: 1.3436178 + posZ: -71.15201 + rotX: 0.0208084658 + rotY: 269.999634 + rotZ: 0.0167709514 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9cb288 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Alternate Art FIne Clothes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.147686 + posY: 1.30611026 + posZ: -77.7505341 + rotX: 0.0208081156 + rotY: 270.0 + rotZ: 0.0167707447 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 959fbf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Alternate Art FIne Clothes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.2627354 + posY: 1.34639215 + posZ: -77.67341 + rotX: 0.02080818 + rotY: 270.0 + rotZ: 0.01677064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2ff1e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Conjuring Cube + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.00346 + posY: 1.37308323 + posZ: -77.72195 + rotX: 0.0207984932 + rotY: 270.008118 + rotZ: 0.01679791 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d06e02 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Conjuring Cube + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.0034866 + posY: 1.38858879 + posZ: -77.72197 + rotX: 0.0220521837 + rotY: 270.008179 + rotZ: 0.016119821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8621ab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Untamed Eevee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.9858036 + posY: 1.40814674 + posZ: -77.86842 + rotX: 0.218267053 + rotY: 270.000061 + rotZ: 0.0163460337 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 907a97 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Untamed Charmander + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.5201626 + posY: 1.41071749 + posZ: -77.61124 + rotX: 0.0208098833 + rotY: 269.999878 + rotZ: 0.0167723726 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267709 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5182b9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Untamed Gastly + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.0351677 + posY: 1.42041576 + posZ: -77.9199 + rotX: 0.02080819 + rotY: 270.004181 + rotZ: 0.0167740639 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 270a8a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.987133 + posY: 1.43101132 + posZ: -77.16814 + rotX: 0.16505301 + rotY: 269.9728 + rotZ: 359.922821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: da3a02 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.987421 + posY: 1.43901408 + posZ: -77.16823 + rotX: 0.223555118 + rotY: 269.969116 + rotZ: 0.015651945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 64fe22 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.985817 + posY: 1.44676864 + posZ: -77.951004 + rotX: 0.172242463 + rotY: 270.001251 + rotZ: 0.0187503211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2aaf41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.9858665 + posY: 1.46602 + posZ: -77.95099 + rotX: 0.223564565 + rotY: 270.001526 + rotZ: 0.0188777857 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 63e97b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.98646 + posY: 1.47306979 + posZ: -77.70928 + rotX: 0.149145141 + rotY: 270.0129 + rotZ: 0.240039021 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 31229f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.4263821 + posY: 2.39078641 + posZ: -77.30331 + rotX: 36.71685 + rotY: 270.0216 + rotZ: 0.0229142811 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4f8d59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 53.2285728 + posY: 1.30573618 + posZ: 78.6412354 + rotX: 0.0216964 + rotY: 269.9969 + rotZ: 0.0109002516 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6ae1e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 53.22855 + posY: 1.344437 + posZ: 78.64121 + rotX: 0.0393628441 + rotY: 269.9969 + rotZ: 0.005879962 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 13cd21 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.8623466 + posY: 1.48837042 + posZ: -77.57947 + rotX: 0.000518987654 + rotY: 270.020966 + rotZ: 0.320893764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a472ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.862339 + posY: 1.5050602 + posZ: -77.57946 + rotX: 359.981354 + rotY: 270.021 + rotZ: 0.276248366 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 18f89e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Calling in Favors + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.9101334 + posY: 1.497386 + posZ: -77.79991 + rotX: 0.0166505575 + rotY: 269.995728 + rotZ: 0.013419129 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0fee8d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Calling in Favors + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.9101219 + posY: 1.51443243 + posZ: -77.7999039 + rotX: 0.0149782933 + rotY: 269.995728 + rotZ: 0.0136300661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 54b069 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arcane Studies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 40.9602127 + posY: 1.29800713 + posZ: 67.14869 + rotX: 0.0208076071 + rotY: 270.030884 + rotZ: 0.0168847777 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ca86b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arcane Studies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 40.9601974 + posY: 1.33699334 + posZ: 67.148674 + rotX: 0.0179660954 + rotY: 270.030884 + rotZ: 0.007818865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0a394e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Drawn to the Flame + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.5628624 + posY: 1.30658245 + posZ: 85.5527954 + rotX: 0.0203360785 + rotY: 269.967926 + rotZ: 0.0208959728 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5d13c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Drawn to the Flame + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.56284 + posY: 1.34478617 + posZ: 85.55278 + rotX: 0.00118650694 + rotY: 269.967926 + rotZ: 359.975037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230329 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9f2b17 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rite of Seeking + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 40.9602165 + posY: 1.301461 + posZ: 78.64869 + rotX: 0.02016877 + rotY: 269.98645 + rotZ: 0.0223699212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230329 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 02780b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rite of Seeking + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 40.9601936 + posY: 1.33897269 + posZ: 78.64868 + rotX: 359.993347 + rotY: 269.98645 + rotZ: 359.9565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: de7c94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ward of Protection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.5628624 + posY: 1.30498278 + posZ: 80.9528 + rotX: 0.0226795729 + rotY: 269.9696 + rotZ: 0.004340729 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8131de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ward of Protection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.5628357 + posY: 1.34039688 + posZ: 80.952774 + rotX: 0.0677115 + rotY: 269.9696 + rotZ: 359.985718 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3790': + 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: a6bd29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Occult Lexicon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.298027 + posY: 2.524481 + posZ: 41.5517464 + rotX: 0.0208129827 + rotY: 269.978943 + rotZ: 0.0167629831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379928 + 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: Untranslated + DragSelectable: true + GMNotes: '' + GUID: a2ec90 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dream Diary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.01574564 + posY: 1.28900456 + posZ: 80.94869 + rotX: 0.0276980735 + rotY: 269.98996 + rotZ: 359.9699 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379928 + 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: Untranslated + DragSelectable: true + GMNotes: '' + GUID: 52b0aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dream Diary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.01559639 + posY: 1.31936574 + posZ: 80.94878 + rotX: 0.2398874 + rotY: 269.98877 + rotZ: 359.8746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + '3790': + 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 + '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 +DeckIDs: +- 277410 +- 277417 +- 267806 +- 267802 +- 267712 +- 267712 +- 267706 +- 267708 +- 267709 +- 209608 +- 209608 +- 209602 +- 209602 +- 209600 +- 209600 +- 209604 +- 209604 +- 209609 +- 209609 +- 209610 +- 209610 +- 230324 +- 230324 +- 230304 +- 230304 +- 230329 +- 230329 +- 230308 +- 230308 +- 379020 +- 379928 +- 379928 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 5c104a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Ashley Sumner Starter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.30018 + posY: 3.52818155 + posZ: -76.94563 + rotX: 0.0208836012 + rotY: 270.0 + rotZ: 180.0167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards cfcb92.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards cfcb92.yaml new file mode 100644 index 000000000..eabc55149 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards cfcb92.yaml @@ -0,0 +1,62 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards cfcb92/Card Scientific Curiosity + 719f1a.yaml' +- !include 'Custom_Model_Bag starter deck & cards cfcb92/Card Locate Specimen 28334e.yaml' +- !include 'Custom_Model_Bag starter deck & cards cfcb92/Deck Samantha Oak Starter + Deck 5e01a3.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: cfcb92 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +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.3001 + posY: 1.273409 + posZ: -61.241 + rotX: 359.979156 + rotY: 90.00018 + rotZ: 359.983246 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards cfcb92/Card Locate Specimen 28334e.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards cfcb92/Card Locate Specimen 28334e.yaml new file mode 100644 index 000000000..6386e1b9f --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards cfcb92/Card Locate Specimen 28334e.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277411 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 28334e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Locate Specimen +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.26564 + posY: 2.320108 + posZ: -73.89333 + rotX: 0.0208092183 + rotY: 270.000153 + rotZ: 0.0167718064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards cfcb92/Card Scientific Curiosity 719f1a.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards cfcb92/Card Scientific Curiosity 719f1a.yaml new file mode 100644 index 000000000..b9b321e5c --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards cfcb92/Card Scientific Curiosity 719f1a.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277414 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 719f1a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Scientific Curiosity +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.25274 + posY: 2.32089043 + posZ: -71.23584 + rotX: 0.0208085552 + rotY: 269.999542 + rotZ: 0.0167708453 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards cfcb92/Deck Samantha Oak Starter Deck 5e01a3.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards cfcb92/Deck Samantha Oak Starter Deck 5e01a3.yaml new file mode 100644 index 000000000..8b0c83c95 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Pokemon Investigators 05109d/Custom_Model_Bag starter deck & cards cfcb92/Deck Samantha Oak Starter Deck 5e01a3.yaml @@ -0,0 +1,1582 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 277411 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 28334e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Locate Specimen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.94731 + posY: 1.31018543 + posZ: -57.8734 + rotX: 0.0208090376 + rotY: 270.000061 + rotZ: 0.0167705528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277414 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 719f1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scientific Curiosity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.2685738 + posY: 1.3520757 + posZ: -57.51617 + rotX: 0.02080919 + rotY: 269.999542 + rotZ: 0.0167701058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4d876e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Alternate Art FIne Clothes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.9867134 + posY: 1.31110775 + posZ: -60.8775635 + rotX: 0.020816477 + rotY: 269.982117 + rotZ: 0.01676212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e11400 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Alternate Art FIne Clothes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.9864922 + posY: 1.3523494 + posZ: -61.18561 + rotX: 0.151168764 + rotY: 269.992767 + rotZ: 0.017724622 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bccf4d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Conjuring Cube + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.46652 + posY: 1.37779522 + posZ: -61.04899 + rotX: 0.0208036862 + rotY: 270.0082 + rotZ: 0.0167866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6634a7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Conjuring Cube + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.466547 + posY: 1.39330351 + posZ: -61.0490074 + rotX: 0.0215687789 + rotY: 270.008179 + rotZ: 0.0151357278 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fcf279 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Untamed Eevee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.9874821 + posY: 1.42022276 + posZ: -60.4551353 + rotX: 0.5148798 + rotY: 269.958862 + rotZ: 0.018206764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267709 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '620431' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Untamed Gastly + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.3407249 + posY: 1.41572487 + posZ: -60.6492653 + rotX: 0.0208136346 + rotY: 269.982117 + rotZ: 0.0167642944 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267707 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bc99b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Untamed Bulbasaur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.9058952 + posY: 2.30638576 + posZ: -61.44262 + rotX: 34.64953 + rotY: 269.995941 + rotZ: 0.0183406956 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ac6c70 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.3126545 + posY: 1.43439889 + posZ: -60.8058777 + rotX: 0.02080959 + rotY: 269.9969 + rotZ: 0.0167700835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '447637' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.31265 + posY: 1.449404 + posZ: -60.8058739 + rotX: 0.0216496047 + rotY: 269.9969 + rotZ: 0.0158482976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2ad0f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.4731464 + posY: 2.304031 + posZ: 68.18961 + rotX: 0.0208156314 + rotY: 269.983582 + rotZ: 0.0167675428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f33b1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.26021 + posY: 1.46368313 + posZ: -61.5280342 + rotX: 0.01734116 + rotY: 270.0 + rotZ: 0.01437406 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b04438 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.2695 + posY: 1.49320161 + posZ: -61.562603 + rotX: 0.0005254843 + rotY: 270.021667 + rotZ: 0.320897847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a2eb25 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.26949 + posY: 1.50363743 + posZ: -61.5628242 + rotX: -0.00173622882 + rotY: 270.021637 + rotZ: 0.319599152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 18f89e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Calling in Favors + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.01805 + posY: 1.50269926 + posZ: -60.7552376 + rotX: 0.0166489 + rotY: 269.995728 + rotZ: 0.0134137152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 719d67 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Deduction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.3838463 + posY: 1.3070358 + posZ: 76.2903748 + rotX: 0.0206252988 + rotY: 269.964783 + rotZ: 0.0184495263 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7b2f95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Deduction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.3838234 + posY: 1.34686148 + posZ: 76.29035 + rotX: 0.0125347665 + rotY: 269.964783 + rotZ: -0.00188662554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230421 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 14acb5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Magnifying Glass + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.5628624 + posY: 1.30640769 + posZ: 85.5527954 + rotX: 0.0219039228 + rotY: 269.9784 + rotZ: 0.009543431 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230421 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '329872' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Magnifying Glass + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.56284 + posY: 1.34412348 + posZ: 85.55278 + rotX: 0.04500599 + rotY: 269.978363 + rotZ: 0.00188238954 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 279510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2795': + 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: 80f8d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fingerprint Kit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 40.9602165 + posY: 1.30132675 + posZ: 78.6487 + rotX: 0.02126538 + rotY: 269.968384 + rotZ: 0.0138024651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 279510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2795': + 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: ae9911 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fingerprint Kit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 40.9601974 + posY: 1.34108078 + posZ: 78.64869 + rotX: 0.0289789289 + rotY: 269.968384 + rotZ: 0.0125591662 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230424 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7006b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hyperawareness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 40.9602165 + posY: 1.29982114 + posZ: 74.0487061 + rotX: 0.02283616 + rotY: 269.9784 + rotZ: 0.00326379156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230424 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9247de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hyperawareness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 40.9601936 + posY: 1.3349601 + posZ: 74.04868 + rotX: 0.0726162344 + rotY: 269.978363 + rotZ: 359.9823 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f76f2b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: True Understanding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.3838463 + posY: 1.307602 + posZ: 78.59038 + rotX: 0.0216204375 + rotY: 269.971 + rotZ: 0.0114466073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9df06b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: True Understanding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.3838234 + posY: 1.34680438 + posZ: 78.5903549 + rotX: 0.0373363458 + rotY: 269.971 + rotZ: 0.00722295837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4481': + 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: 63e024 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Crack the Case + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.5628624 + posY: 1.30521083 + posZ: 80.9528 + rotX: 0.0205136724 + rotY: 269.9882 + rotZ: 0.0193268061 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4481': + 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: 7efbd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Crack the Case + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.56284 + posY: 1.34439719 + posZ: 80.952774 + rotX: 0.00871523 + rotY: 269.9882 + rotZ: 359.990967 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cbb02f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Inspiring Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.4341373 + posY: 1.52054 + posZ: -61.0576019 + rotX: 0.020805303 + rotY: 270.0116 + rotZ: 0.0167747065 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c7df31 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Inspiring Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.4341278 + posY: 1.54602337 + posZ: -61.0575943 + rotX: 0.0208059587 + rotY: 270.0116 + rotZ: 0.0167755038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209703 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '830145' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '"Not without a fight!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.4393883 + posY: 1.29175639 + posZ: 67.0902557 + rotX: 0.0231113285 + rotY: 269.97052 + rotZ: 0.00141206721 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f6e68a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Survival Instinct + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.1283569 + posY: 2.328439 + posZ: 68.12043 + rotX: 0.0208050571 + rotY: 270.015442 + rotZ: 0.0167813133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2774': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421112661320/8E398C1D76C57F6B9413EC86DC46238ED23DB950/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2795': + 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 + '4481': + 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 +DeckIDs: +- 277411 +- 277414 +- 267800 +- 267804 +- 267712 +- 267712 +- 267706 +- 267709 +- 267707 +- 209608 +- 209608 +- 209600 +- 209604 +- 209609 +- 209609 +- 209610 +- 230402 +- 230402 +- 230421 +- 230421 +- 279510 +- 279510 +- 230424 +- 230424 +- 230403 +- 230403 +- 448112 +- 448112 +- 226301 +- 226301 +- 209703 +- 209700 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 5e01a3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Samantha Oak Starter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.30014 + posY: 3.532763 + posZ: -61.240963 + rotX: 0.02088408 + rotY: 270.000061 + rotZ: 180.0167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0.ttslua b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0.ttslua rename to unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1.ttslua diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1.yaml new file mode 100644 index 000000000..a1bf994e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1.yaml @@ -0,0 +1,51 @@ +Autoraise: true +ColorDiffuse: + b: 0.7019608 + g: 0.0 + r: 0.347064 +ContainedObjects: +- !include 'Bag Scenario 1 The Conjuring e1caf1/Custom_Tile 1a1506.yaml' +- !include 'Bag Scenario 1 The Conjuring e1caf1/Deck Rare Assets 352c84.yaml' +- !include 'Bag Scenario 1 The Conjuring e1caf1/Custom_Tile Pokemon Eldritch Edition + 3837a5.yaml' +- !include 'Bag Scenario 1 The Conjuring e1caf1/Custom_Model_Bag Set-aside 4c7f05.yaml' +- !include 'Bag Scenario 1 The Conjuring e1caf1/Deck Rare Encounter Set 7278fd.yaml' +- !include 'Bag Scenario 1 The Conjuring e1caf1/Card The Conjuring 8889fe.yaml' +- !include 'Bag Scenario 1 The Conjuring e1caf1/Deck Encounter Deck 89a74f.yaml' +- !include 'Bag Scenario 1 The Conjuring e1caf1/Deck Agenda Deck 9d0950.yaml' +- !include 'Bag Scenario 1 The Conjuring e1caf1/Deck A Lone Street a48620.yaml' +- !include 'Bag Scenario 1 The Conjuring e1caf1/Deck Town Encounter Set b191e7.yaml' +- !include 'Bag Scenario 1 The Conjuring e1caf1/Deck Town Assets d7a627.yaml' +- !include 'Bag Scenario 1 The Conjuring e1caf1/Deck Act Deck e69a18.yaml' +- !include 'Bag Scenario 1 The Conjuring e1caf1/Card f1287a.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e1caf1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Scenario 1 The Conjuring e1caf1.ttslua' +LuaScriptState: '{"ml":{"1a1506":{"lock":false,"pos":{"x":-3.9752,"y":1.582,"z":-17.2683},"rot":{"x":359.9198,"y":269.9731,"z":0.0169}},"352c84":{"lock":false,"pos":{"x":2.5109,"y":1.5961,"z":19.2127},"rot":{"x":359.9201,"y":269.9986,"z":0.0169}},"3837a5":{"lock":false,"pos":{"x":-3.6516,"y":1.5824,"z":-14.3337},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"4c7f05":{"lock":false,"pos":{"x":1.6965,"y":1.5583,"z":14.2789},"rot":{"x":359.9551,"y":225.0005,"z":0.0687}},"7278fd":{"lock":false,"pos":{"x":-10.1518,"y":1.711,"z":10.0656},"rot":{"x":359.9201,"y":269.9989,"z":180.0169}},"8889fe":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":270,"z":0.0168}},"89a74f":{"lock":false,"pos":{"x":-3.9277,"y":1.7011,"z":5.7572},"rot":{"x":359.9197,"y":269.9993,"z":180.0168}},"9d0950":{"lock":false,"pos":{"x":-2.7247,"y":1.6159,"z":0.3733},"rot":{"x":0.0168,"y":180,"z":0.0803}},"a48620":{"lock":false,"pos":{"x":-10.1296,"y":1.6426,"z":6.8356},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"b191e7":{"lock":false,"pos":{"x":-9.9485,"y":1.6493,"z":13.8188},"rot":{"x":359.9201,"y":270.0003,"z":180.0169}},"d7a627":{"lock":false,"pos":{"x":-1.7165,"y":1.5538,"z":19.2599},"rot":{"x":359.9201,"y":270.0023,"z":0.0169}},"e69a18":{"lock":false,"pos":{"x":-2.6886,"y":1.6239,"z":-5.0485},"rot":{"x":0.0168,"y":180,"z":0.0803}},"f1287a":{"lock":false,"pos":{"x":-30.2243,"y":1.6372,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":180.0169}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: 'Scenario 1: The Conjuring' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.1709223 + posY: 1.28772092 + posZ: 27.8930454 + rotX: 0.07995385 + rotY: 89.97096 + rotZ: 359.983063 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Card f1287a.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Card f1287a.yaml new file mode 100644 index 000000000..c2621445c --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Card f1287a.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 273007 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2730': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1475442973873305143/586B6E1D49CC1517A79E73DC44F3E0A4FE409A10/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1475442973873303356/2A2CC24265654B6731CBE06DC8B52C7E52BAF4DB/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: f1287a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.637197 + posZ: -0.0299996417 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Card The Conjuring 8889fe.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Card The Conjuring 8889fe.yaml new file mode 100644 index 000000000..3eeffb234 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Card The Conjuring 8889fe.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 273000 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2730': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1475442973873305143/586B6E1D49CC1517A79E73DC44F3E0A4FE409A10/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1475442973873303356/2A2CC24265654B6731CBE06DC8B52C7E52BAF4DB/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8889fe +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Conjuring +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600057 + posY: 1.59753942 + posZ: -10.4412041 + rotX: 359.919739 + rotY: 269.999969 + rotZ: 0.0168372523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Custom_Model_Bag Set-aside 4c7f05.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Custom_Model_Bag Set-aside 4c7f05.yaml new file mode 100644 index 000000000..f9564c9bb --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Custom_Model_Bag Set-aside 4c7f05.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 4c7f05/Card The Epicenter 41ab3e.yaml' +- !include 'Custom_Model_Bag Set-aside 4c7f05/Deck Legendary Sightings 92cd4c.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: The Conjuring +DragSelectable: true +GMNotes: '' +GUID: 4c7f05 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Set-aside +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: 1.69650126 + posY: 1.558317 + posZ: 14.278904 + rotX: 359.955139 + rotY: 225.000519 + rotZ: 0.06867234 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Custom_Model_Bag Set-aside 4c7f05/Card The Epicenter 41ab3e.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Custom_Model_Bag Set-aside 4c7f05/Card The Epicenter 41ab3e.yaml new file mode 100644 index 000000000..441fd3c94 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Custom_Model_Bag Set-aside 4c7f05/Card The Epicenter 41ab3e.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 273013 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2730': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1475442973873305143/586B6E1D49CC1517A79E73DC44F3E0A4FE409A10/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1475442973873303356/2A2CC24265654B6731CBE06DC8B52C7E52BAF4DB/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 41ab3e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Epicenter +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.5027723 + posY: 2.49402761 + posZ: 6.073767 + rotX: 359.920135 + rotY: 270.000336 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Custom_Model_Bag Set-aside 4c7f05/Deck Legendary Sightings 92cd4c.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Custom_Model_Bag Set-aside 4c7f05/Deck Legendary Sightings 92cd4c.yaml new file mode 100644 index 000000000..76ea657ec --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Custom_Model_Bag Set-aside 4c7f05/Deck Legendary Sightings 92cd4c.yaml @@ -0,0 +1,157 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 273014 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d5fada + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.212791 + posY: 1.62409437 + posZ: -2.755164 + rotX: 0.0168713145 + rotY: 179.999954 + rotZ: 180.07991 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273015 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1d059e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.212791 + posY: 1.62409437 + posZ: -2.755164 + rotX: 0.0168713145 + rotY: 179.999954 + rotZ: 180.07991 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273016 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3dad48 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.212791 + posY: 1.62409437 + posZ: -2.755164 + rotX: 0.0168713145 + rotY: 179.999954 + rotZ: 180.07991 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2730': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1475442973873305143/586B6E1D49CC1517A79E73DC44F3E0A4FE409A10/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1475442973873303356/2A2CC24265654B6731CBE06DC8B52C7E52BAF4DB/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +DeckIDs: +- 273014 +- 273015 +- 273016 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 92cd4c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Legendary Sightings +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69641232 + posY: 3.68958116 + posZ: 14.2788391 + rotX: 359.955139 + rotY: 225.000046 + rotZ: 0.0686709657 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 6e7a56.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Custom_Tile 1a1506.yaml similarity index 76% rename from unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 6e7a56.yaml rename to unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Custom_Tile 1a1506.yaml index 7668edbe3..dc52799bb 100644 --- a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 6e7a56.yaml +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Custom_Tile 1a1506.yaml @@ -11,12 +11,12 @@ CustomImage: Type: 2 ImageScalar: 1.0 ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/btEtVfd.png + ImageURL: https://i.imgur.com/1plY463.png WidthScale: 0.0 Description: '' DragSelectable: true GMNotes: '' -GUID: 6e7a56 +GUID: 1a1506 Grid: true GridProjection: false Hands: false @@ -32,12 +32,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 10.66319 - posY: 3.37121916 - posZ: -40.5727539 - rotX: 359.9243 - rotY: 270.094666 - rotZ: 0.0304899253 + posX: -3.97520065 + posY: 1.58195519 + posZ: -17.2683029 + rotX: 359.919769 + rotY: 269.973022 + rotZ: 0.0168778822 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Custom_Tile Pokemon Eldritch Edition 3837a5.ttslua b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Custom_Tile Pokemon Eldritch Edition 3837a5.ttslua new file mode 100644 index 000000000..71c417e00 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Custom_Tile Pokemon Eldritch Edition 3837a5.ttslua @@ -0,0 +1,21 @@ +name = 'Pokemon' + +function onLoad() + Global.call('createSetupButtons', {object=self, key=name}) +end + +function easyClick() + Global.call('fillContainer', {object=self, key=name, mode='easy'}) +end + +function normalClick() + Global.call('fillContainer', {object=self, key=name, mode='normal'}) +end + +function hardClick() + Global.call('fillContainer', {object=self, key=name, mode='hard'}) +end + +function expertClick() + Global.call('fillContainer', {object=self, key=name, mode='expert'}) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Custom_Tile Pokemon Eldritch Edition 3837a5.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Custom_Tile Pokemon Eldritch Edition 3837a5.yaml new file mode 100644 index 000000000..63ba3e6bd --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Custom_Tile Pokemon Eldritch Edition 3837a5.yaml @@ -0,0 +1,44 @@ +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: https://i.imgur.com/EcbhVuh.jpg/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/ + WidthScale: 0.0 +Description: click to set chaos token difficulty +DragSelectable: true +GMNotes: '' +GUID: 3837a5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Pokemon Eldritch Edition 3837a5.ttslua' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: 'Pokemon: Eldritch Edition' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.65160131 + posY: 1.58236468 + posZ: -14.33371 + rotX: 359.919739 + rotY: 269.999817 + rotZ: 0.01683816 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Deck A Lone Street a48620.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Deck A Lone Street a48620.yaml new file mode 100644 index 000000000..e2fe30bac --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Deck A Lone Street a48620.yaml @@ -0,0 +1,276 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 273008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2730': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1475442973873305143/586B6E1D49CC1517A79E73DC44F3E0A4FE409A10/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1475442973873303356/2A2CC24265654B6731CBE06DC8B52C7E52BAF4DB/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a09cfc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.04457045 + posY: 2.84358525 + posZ: 20.7277222 + rotX: 359.932434 + rotY: 269.999817 + rotZ: 180.014267 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2730': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1475442973873305143/586B6E1D49CC1517A79E73DC44F3E0A4FE409A10/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1475442973873303356/2A2CC24265654B6731CBE06DC8B52C7E52BAF4DB/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5e759c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.18788 + posY: 2.50621343 + posZ: -22.6127834 + rotX: 359.983643 + rotY: 269.999969 + rotZ: 180.003464 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2730': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1475442973873305143/586B6E1D49CC1517A79E73DC44F3E0A4FE409A10/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1475442973873303356/2A2CC24265654B6731CBE06DC8B52C7E52BAF4DB/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7b196d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.701711 + posY: 2.50344563 + posZ: -24.6393013 + rotX: 359.980133 + rotY: 269.999939 + rotZ: 180.0042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273011 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2730': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1475442973873305143/586B6E1D49CC1517A79E73DC44F3E0A4FE409A10/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1475442973873303356/2A2CC24265654B6731CBE06DC8B52C7E52BAF4DB/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 525ba8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.92676926 + posY: 2.61424351 + posZ: -16.84971 + rotX: 359.98056 + rotY: 269.999939 + rotZ: 180.00412 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273012 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2730': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1475442973873305143/586B6E1D49CC1517A79E73DC44F3E0A4FE409A10/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1475442973873303356/2A2CC24265654B6731CBE06DC8B52C7E52BAF4DB/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9c0754 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.92687559 + posY: 2.61432743 + posZ: -16.6221371 + rotX: 359.980255 + rotY: 269.999939 + rotZ: 180.004166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2730': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1475442973873305143/586B6E1D49CC1517A79E73DC44F3E0A4FE409A10/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1475442973873303356/2A2CC24265654B6731CBE06DC8B52C7E52BAF4DB/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +DeckIDs: +- 273008 +- 273009 +- 273010 +- 273011 +- 273012 +Description: Randomly pick 3 to put into play; set the others aside. +DragSelectable: true +GMNotes: '' +GUID: a48620 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: A Lone Street +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.1295986 + posY: 1.64259 + posZ: 6.83559942 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Deck Act Deck e69a18.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Deck Act Deck e69a18.yaml new file mode 100644 index 000000000..20dd7c75e --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Deck Act Deck e69a18.yaml @@ -0,0 +1,230 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 272903 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2729': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 93b71c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.68855739 + posY: 1.59734869 + posZ: -5.04852724 + rotX: 0.0168357659 + rotY: 180.0 + rotZ: 0.08025575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2729': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d33288 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.688534 + posY: 1.64156342 + posZ: -5.048532 + rotX: 0.016835371 + rotY: 180.0 + rotZ: 0.08025864 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2729': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7799c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.68853521 + posY: 1.67568445 + posZ: -5.04853153 + rotX: 0.0168351885 + rotY: 180.0 + rotZ: 0.0802585855 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2729': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7bffe4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.688534 + posY: 1.68511021 + posZ: -5.048532 + rotX: 0.01683505 + rotY: 180.0 + rotZ: 0.08025881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2729': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +DeckIDs: +- 272903 +- 272902 +- 272901 +- 272900 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e69a18 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68859982 + posY: 1.62393069 + posZ: -5.0485 + rotX: 0.0168355834 + rotY: 180.0 + rotZ: 0.08025613 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Deck Agenda Deck 9d0950.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Deck Agenda Deck 9d0950.yaml new file mode 100644 index 000000000..4cf897c82 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Deck Agenda Deck 9d0950.yaml @@ -0,0 +1,138 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 272905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2729': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '476455' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.72473979 + posY: 1.59899259 + posZ: 0.373327762 + rotX: 0.0168356746 + rotY: 180.0 + rotZ: 0.08025578 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2729': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 76a67f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.72474217 + posY: 1.6299684 + posZ: 0.373336881 + rotX: 0.0168520827 + rotY: 179.979 + rotZ: 0.08027208 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2729': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +DeckIDs: +- 272905 +- 272904 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 9d0950 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72469974 + posY: 1.61594629 + posZ: 0.373300642 + rotX: 0.0168357585 + rotY: 180.0 + rotZ: 0.08025581 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Deck Encounter Deck 89a74f.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Deck Encounter Deck 89a74f.yaml new file mode 100644 index 000000000..bbdc56bb0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Deck Encounter Deck 89a74f.yaml @@ -0,0 +1,936 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267837 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0303f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92769718 + posY: 1.83440208 + posZ: 5.757144 + rotX: 359.9198 + rotY: 270.000122 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 39c7c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.84542441 + posY: 1.69136667 + posZ: 10.3834524 + rotX: 359.919769 + rotY: 269.999878 + rotZ: 180.017151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d2230c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.84542465 + posY: 1.68181217 + posZ: 10.3834524 + rotX: 359.919769 + rotY: 269.999817 + rotZ: 180.017151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 733ca3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.8454237 + posY: 1.64767122 + posZ: 10.3834524 + rotX: 359.921661 + rotY: 269.999817 + rotZ: 180.017761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ca19d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.84544778 + posY: 1.60349357 + posZ: 10.383461 + rotX: 359.919861 + rotY: 269.9998 + rotZ: 180.017517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: f5c831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.7678118 + posY: 1.57397664 + posZ: 0.8176176 + rotX: 359.920715 + rotY: 270.4449 + rotZ: 0.0112993112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: 97416f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1407871 + posY: 1.73618925 + posZ: 0.4854573 + rotX: 359.929718 + rotY: 270.4449 + rotZ: 0.0168418 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: 0f4202 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1415644 + posY: 1.57619953 + posZ: 6.47173929 + rotX: 359.920532 + rotY: 269.9967 + rotZ: 0.0143175824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: c70601 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.2212734 + posY: 1.731801 + posZ: 6.48566675 + rotX: 359.914764 + rotY: 269.9969 + rotZ: 0.0135772834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.2488747 + posY: 1.5756532 + posZ: 3.99089 + rotX: 359.920166 + rotY: 270.0116 + rotZ: 0.0165983569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: 435a47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.04018 + posY: 1.73764646 + posZ: 4.12767363 + rotX: 359.917725 + rotY: 270.0117 + rotZ: 0.01055241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.4984474 + posY: 1.74187553 + posZ: 9.174725 + rotX: 359.943939 + rotY: 270.000732 + rotZ: 0.0177138373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Obstacle. + DragSelectable: true + GMNotes: '' + GUID: 4904d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0977612 + posY: 1.48390508 + posZ: 24.0386047 + rotX: 359.920441 + rotY: 269.999 + rotZ: 0.0149599239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Obstacle. + DragSelectable: true + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0856552 + posY: 1.5200088 + posZ: 24.3093739 + rotX: 359.94 + rotY: 269.999237 + rotZ: 359.980957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1de1fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.5903969 + posY: 1.47267032 + posZ: 16.5348225 + rotX: 359.920135 + rotY: 269.999634 + rotZ: 0.0167639125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d20d00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.7397461 + posY: 1.55539417 + posZ: 13.678442 + rotX: 0.235155329 + rotY: 269.98172 + rotZ: 356.211121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e79003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.7507153 + posY: 1.66107368 + posZ: 13.4977093 + rotX: 0.201154128 + rotY: 269.99884 + rotZ: 359.441925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d20d00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.7397461 + posY: 1.55539417 + posZ: 13.678442 + rotX: 0.235155329 + rotY: 269.98172 + rotZ: 356.211121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e79003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.7507153 + posY: 1.66107368 + posZ: 13.4977093 + rotX: 0.201154128 + rotY: 269.99884 + rotZ: 359.441925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267837 +- 267830 +- 267830 +- 267831 +- 267831 +- 231718 +- 231718 +- 231717 +- 231717 +- 231716 +- 231716 +- 231716 +- 231727 +- 231727 +- 267603 +- 267601 +- 267602 +- 267601 +- 267602 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 89a74f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9277 + posY: 1.70105231 + posZ: 5.75720167 + rotX: 359.919739 + rotY: 269.999268 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Deck Rare Assets 352c84.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Deck Rare Assets 352c84.yaml new file mode 100644 index 000000000..f6f7bee7b --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Deck Rare Assets 352c84.yaml @@ -0,0 +1,1008 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 270859 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2708': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f37da0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Wigglytuff (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.1643677 + posY: 2.29466033 + posZ: -92.286 + rotX: 0.0208087415 + rotY: 269.999939 + rotZ: 0.01677116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269541 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2695': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '290982' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Poliwhirl (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.49959326 + posY: 2.35844254 + posZ: -73.42042 + rotX: 0.020809222 + rotY: 269.998779 + rotZ: 0.0167715568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2704': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1bfcd3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Graveler (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.501009 + posY: 2.41560912 + posZ: -75.69878 + rotX: 0.0208076611 + rotY: 269.996979 + rotZ: 0.01676834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2720': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9ae052 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Raichu (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.4154949 + posY: 2.08696342 + posZ: -97.68598 + rotX: 359.332825 + rotY: 269.998322 + rotZ: 0.0167983361 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2688': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 056b24 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pidgeotto (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9011421 + posY: 1.985616 + posZ: -100.131729 + rotX: 0.02080906 + rotY: 269.998535 + rotZ: 0.0167711265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2685': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 215bb7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Exeggutor (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.5850182 + posY: 2.34497166 + posZ: -93.904686 + rotX: 359.332825 + rotY: 269.99646 + rotZ: 0.0168202147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268925 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2689': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '775582' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kingler (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9140272 + posY: 2.3305428 + posZ: -84.201416 + rotX: 0.0208111536 + rotY: 269.9973 + rotZ: 0.0167711135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2682': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 48a727 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gloom (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.5786 + posY: 2.32966423 + posZ: -67.9397659 + rotX: 0.0208100118 + rotY: 269.996643 + rotZ: 0.0167700313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272757 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2727': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a3cbef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Weepinbell (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.28058 + posY: 2.3290453 + posZ: -69.50996 + rotX: 0.0208090339 + rotY: 269.9997 + rotZ: 0.0167709049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2717': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f66d99 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Golbat (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.10876 + posY: 2.32665467 + posZ: -76.22074 + rotX: 0.0208082721 + rotY: 269.996857 + rotZ: 0.0167695377 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2692': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 68facf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Clefable (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.3180523 + posY: 2.29423618 + posZ: -96.46822 + rotX: 0.02081172 + rotY: 269.9958 + rotZ: 0.0167714711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267753 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 69cfd0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Snorlax + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.514061 + posY: 2.30767155 + posZ: -61.1594658 + rotX: 0.0208094958 + rotY: 269.9975 + rotZ: 0.01677081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267752 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dcb4c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lickitung + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.539299 + posY: 2.54712415 + posZ: -63.35171 + rotX: 0.0208097566 + rotY: 269.9975 + rotZ: 0.01677087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267751 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f49176 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lapras + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.71938 + posY: 2.41880083 + posZ: -64.34725 + rotX: 0.02080993 + rotY: 269.99762 + rotZ: 0.0167701133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267749 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bebe7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dratini + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.2413425 + posY: 2.419513 + posZ: -61.6512146 + rotX: 0.0208100267 + rotY: 269.997772 + rotZ: 0.0167699959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267750 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bcdb4e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kanaskhan + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.81132 + posY: 2.54641271 + posZ: -68.02298 + rotX: 0.0208092052 + rotY: 269.997742 + rotZ: 0.0167703629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267748 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b453d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ditto + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.44265 + posY: 2.41933084 + posZ: -62.3478355 + rotX: 0.0208092127 + rotY: 269.997864 + rotZ: 0.0167702921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267747 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 86c451 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Chansey + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.1278152 + posY: 2.41889048 + posZ: -63.9618454 + rotX: 0.0208098348 + rotY: 269.9979 + rotZ: 0.0167699363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267754 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c3190e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tauros + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1232424 + posY: 2.48485446 + posZ: -16.02921 + rotX: 359.920135 + rotY: 269.998535 + rotZ: 0.0168761462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2682': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2685': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2688': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2689': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2692': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2695': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2704': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2708': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2717': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2720': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2727': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 270859 +- 269541 +- 270419 +- 272044 +- 268840 +- 268514 +- 268925 +- 268216 +- 272757 +- 271717 +- 269205 +- 267753 +- 267752 +- 267751 +- 267749 +- 267750 +- 267748 +- 267747 +- 267754 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 352c84 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Rare Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.51090074 + posY: 1.59606385 + posZ: 19.2127075 + rotX: 359.920135 + rotY: 269.998657 + rotZ: 0.01688161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Deck Rare Encounter Set 7278fd.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Deck Rare Encounter Set 7278fd.yaml new file mode 100644 index 000000000..281444394 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Deck Rare Encounter Set 7278fd.yaml @@ -0,0 +1,921 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267854 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 04fbfc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4184074 + posY: 1.643317 + posZ: -4.56822348 + rotX: 359.933441 + rotY: 269.999878 + rotZ: 0.01348167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267863 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 527ce6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9577055 + posY: 1.55732691 + posZ: -3.599544 + rotX: 359.930878 + rotY: 269.999939 + rotZ: 359.9833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267855 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0d9018 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.53936 + posY: 1.63361788 + posZ: -4.06025 + rotX: 359.934235 + rotY: 269.999878 + rotZ: 0.01124593 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267866 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d10f76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7763824 + posY: 1.70056987 + posZ: -4.83039951 + rotX: 359.933 + rotY: 270.0 + rotZ: 180.014435 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267864 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a2b46e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.8294334 + posY: 1.54642951 + posZ: -4.882814 + rotX: 359.9331 + rotY: 269.999939 + rotZ: 0.01384164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267852 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f120d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9491539 + posY: 1.66192007 + posZ: -4.450786 + rotX: 359.933044 + rotY: 269.999878 + rotZ: 0.014011329 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267857 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2b360a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3249359 + posY: 1.61457539 + posZ: -4.38055563 + rotX: 359.933716 + rotY: 269.9999 + rotZ: 0.0130347963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267853 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e29a11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3690414 + posY: 1.653022 + posZ: -4.46332932 + rotX: 359.9335 + rotY: 269.999878 + rotZ: 0.013344436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267851 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9a90a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.8511982 + posY: 1.6716491 + posZ: -4.70562458 + rotX: 359.932465 + rotY: 269.999878 + rotZ: 0.0139912358 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267856 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c89b11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1950531 + posY: 1.62436426 + posZ: -4.22008848 + rotX: 359.934143 + rotY: 269.999878 + rotZ: 0.0122695034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267858 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6304b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3074913 + posY: 1.60498524 + posZ: -3.97525263 + rotX: 359.935181 + rotY: 269.999939 + rotZ: 0.0096496 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267862 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ab32cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.34694 + posY: 1.56640959 + posZ: -4.3452816 + rotX: 359.933868 + rotY: 269.999939 + rotZ: 0.0127378786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267850 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e743bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.5542374 + posY: 1.681409 + posZ: -5.39828348 + rotX: 359.933167 + rotY: 269.999878 + rotZ: 0.01335297 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267859 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: aeb7fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1070385 + posY: 1.59544921 + posZ: -4.78942537 + rotX: 359.934357 + rotY: 269.999939 + rotZ: 0.0141529925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267860 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 71aac2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.81522 + posY: 1.58503914 + posZ: -4.82249069 + rotX: 359.9325 + rotY: 269.999939 + rotZ: 0.01398095 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267848 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8275f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4778252 + posY: 1.70083308 + posZ: -5.110941 + rotX: 359.93396 + rotY: 269.999878 + rotZ: 0.0146708526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267861 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2f3e94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7288742 + posY: 1.57552576 + posZ: -4.707577 + rotX: 359.932617 + rotY: 269.999939 + rotZ: 0.0138330935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267849 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '126268' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3703651 + posY: 1.69154 + posZ: -4.437929 + rotX: 359.933441 + rotY: 269.999878 + rotZ: 0.0134003581 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267865 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4945ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7495613 + posY: 1.50693226 + posZ: -4.51910925 + rotX: 359.9121 + rotY: 269.999939 + rotZ: 0.0039470233 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267854 +- 267863 +- 267855 +- 267866 +- 267864 +- 267852 +- 267857 +- 267853 +- 267851 +- 267856 +- 267858 +- 267862 +- 267850 +- 267859 +- 267860 +- 267848 +- 267861 +- 267849 +- 267865 +Description: Randomly pick 2; Set one aside, shuffle the other into the encounter + deck. +DragSelectable: true +GMNotes: '' +GUID: 7278fd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Rare Encounter Set +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.1518 + posY: 1.71096683 + posZ: 10.0655994 + rotX: 359.9201 + rotY: 269.99884 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Deck Town Assets d7a627.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Deck Town Assets d7a627.yaml new file mode 100644 index 000000000..278c75392 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Deck Town Assets d7a627.yaml @@ -0,0 +1,468 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1b04db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Jigglypuff + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.5980854 + posY: 2.923997 + posZ: -11.6731243 + rotX: 359.920135 + rotY: 270.0027 + rotZ: 0.01686976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267531 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5992cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cubone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.2537537 + posY: 2.61031342 + posZ: -12.5758448 + rotX: 359.920135 + rotY: 270.002747 + rotZ: 0.0168688986 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267532 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '873452' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Grimer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.00922 + posY: 2.61011672 + posZ: -14.3550587 + rotX: 359.920135 + rotY: 270.002625 + rotZ: 0.0168693326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267533 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a4a96f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Growlithe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.02254 + posY: 3.24992967 + posZ: -17.840559 + rotX: 359.920135 + rotY: 270.0025 + rotZ: 0.0168695934 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267534 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 714c76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Koffing + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.50306 + posY: 2.614051 + posZ: -9.270244 + rotX: 359.920135 + rotY: 270.002472 + rotZ: 0.0168699771 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267535 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e6dbc4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Magnemite + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.7738113 + posY: 2.61166573 + posZ: -11.7794247 + rotX: 359.920135 + rotY: 270.002472 + rotZ: 0.0168705974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267536 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cabbdd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Farfetch'd + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.7219658 + posY: 2.67955565 + posZ: -13.7013521 + rotX: 2.572715 + rotY: 270.008057 + rotZ: 0.016536653 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267530 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1a17e3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pidgey + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.7222042 + posY: 2.61277223 + posZ: -14.1867771 + rotX: 359.920135 + rotY: 270.002319 + rotZ: 0.0168705154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267529 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f1aee6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rattata + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.8781033 + posY: 2.47851443 + posZ: -9.752915 + rotX: 359.920135 + rotY: 270.00238 + rotZ: 0.0168707855 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267115 +- 267531 +- 267532 +- 267533 +- 267534 +- 267535 +- 267536 +- 267530 +- 267529 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d7a627 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Town Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -1.71649957 + posY: 1.55383062 + posZ: 19.259903 + rotX: 359.920135 + rotY: 270.00238 + rotZ: 0.0168706663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Deck Town Encounter Set b191e7.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Deck Town Encounter Set b191e7.yaml new file mode 100644 index 000000000..ec2023850 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 1 The Conjuring e1caf1/Deck Town Encounter Set b191e7.yaml @@ -0,0 +1,322 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: aae1d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.935764 + posY: 1.719689 + posZ: 13.9945383 + rotX: 359.9201 + rotY: 269.999023 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267836 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '495121' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4387846 + posY: 1.51522315 + posZ: -1.61147654 + rotX: 359.937836 + rotY: 269.999817 + rotZ: 0.008324486 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267835 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0f413c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.29541 + posY: 1.549231 + posZ: -2.09604073 + rotX: 359.93396 + rotY: 269.999756 + rotZ: 0.0144235371 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267832 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 87cee0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.8214407 + posY: 1.5777036 + posZ: -1.51616192 + rotX: 359.932556 + rotY: 269.999756 + rotZ: 0.01392519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267833 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8ff1a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.3915787 + posY: 1.56830037 + posZ: -2.30903816 + rotX: 359.9344 + rotY: 269.999756 + rotZ: 0.015141746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267834 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4dfacd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.700798 + posY: 1.55857623 + posZ: -1.57905722 + rotX: 359.933655 + rotY: 269.9998 + rotZ: 0.0130110951 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267814 +- 267836 +- 267835 +- 267832 +- 267833 +- 267834 +Description: Randomly pick 4 and shuffle them into the encounter deck. +DragSelectable: true +GMNotes: '' +GUID: b191e7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Town Encounter Set +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.9485 + posY: 1.64920366 + posZ: 13.8188019 + rotX: 359.9201 + rotY: 270.0003 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9.ttslua b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9.ttslua rename to unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e.ttslua diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e.yaml new file mode 100644 index 000000000..eabc72869 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e.yaml @@ -0,0 +1,49 @@ +Autoraise: true +ColorDiffuse: + b: 0.7019608 + g: 0.0 + r: 0.347064 +ContainedObjects: +- !include 'Bag Scenario 2a The Winding Road 61801e/Deck Rare Assets d2f4d2.yaml' +- !include 'Bag Scenario 2a The Winding Road 61801e/Deck Field Assets 00a0af.yaml' +- !include 'Bag Scenario 2a The Winding Road 61801e/Custom_Model_Bag Set-aside 679dfe.yaml' +- !include 'Bag Scenario 2a The Winding Road 61801e/Deck Encounter Deck 11c7e0.yaml' +- !include 'Bag Scenario 2a The Winding Road 61801e/Deck Agenda Deck b125a2.yaml' +- !include 'Bag Scenario 2a The Winding Road 61801e/Card Act Deck 77955e.yaml' +- !include 'Bag Scenario 2a The Winding Road 61801e/Card The Winding Road 2d0bdb.yaml' +- !include 'Bag Scenario 2a The Winding Road 61801e/Deck End of the Roads 757811.yaml' +- !include 'Bag Scenario 2a The Winding Road 61801e/Deck Exploration Deck f22461.yaml' +- !include 'Bag Scenario 2a The Winding Road 61801e/Deck Rare Encounter Set c900ce.yaml' +- !include 'Bag Scenario 2a The Winding Road 61801e/Deck Field Encounter Set 56132b.yaml' +- !include 'Bag Scenario 2a The Winding Road 61801e/Card 5f6f71.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 61801e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Scenario 2a The Winding Road 61801e.ttslua' +LuaScriptState: '{"ml":{"00a0af":{"lock":false,"pos":{"x":-2.863,"y":1.5602,"z":19.0029},"rot":{"x":359.9201,"y":269.9858,"z":0.0169}},"11c7e0":{"lock":false,"pos":{"x":-3.9277,"y":1.7011,"z":5.7572},"rot":{"x":359.9197,"y":269.9989,"z":180.0168}},"2d0bdb":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9994,"z":0.0168}},"56132b":{"lock":false,"pos":{"x":-13.2084,"y":1.6638,"z":15.0561},"rot":{"x":359.9201,"y":269.9997,"z":180.0169}},"5f6f71":{"lock":false,"pos":{"x":-17.12,"y":1.619,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"679dfe":{"lock":false,"pos":{"x":1.6953,"y":1.5583,"z":14.2778},"rot":{"x":359.9551,"y":224.9976,"z":0.0687}},"757811":{"lock":false,"pos":{"x":-9.2618,"y":1.6264,"z":4.9417},"rot":{"x":359.9203,"y":270.0001,"z":180.0168}},"77955e":{"lock":false,"pos":{"x":-2.6886,"y":1.5973,"z":-5.0485},"rot":{"x":0.0168,"y":180,"z":0.0803}},"b125a2":{"lock":false,"pos":{"x":-2.7247,"y":1.6159,"z":0.3733},"rot":{"x":0.0168,"y":180.0002,"z":0.0803}},"c900ce":{"lock":false,"pos":{"x":-13.3539,"y":1.7162,"z":12.3528},"rot":{"x":359.9201,"y":269.9998,"z":180.0169}},"d2f4d2":{"lock":false,"pos":{"x":1.2964,"y":1.5977,"z":19.0686},"rot":{"x":359.9201,"y":269.9986,"z":0.0169}},"f22461":{"lock":false,"pos":{"x":-10.449,"y":1.6771,"z":7.7963},"rot":{"x":359.9201,"y":269.9998,"z":180.0169}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: 'Scenario 2a: The Winding Road' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.1700211 + posY: 1.28535843 + posZ: 19.8675365 + rotX: 0.07996145 + rotY: 89.99706 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Card 5f6f71.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Card 5f6f71.yaml new file mode 100644 index 000000000..99d69a22b --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Card 5f6f71.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277504 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2775': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782606243/2189BC3AC5AC69993C7E59005DA651AFF3450A5E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782604405/5B7A8E21D01286249036CEC1FACE139FDCDC1A3A/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 5f6f71 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.61896908 + posZ: -0.0299996268 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Card Act Deck 77955e.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Card Act Deck 77955e.yaml new file mode 100644 index 000000000..e0435136a --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Card Act Deck 77955e.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 266206 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 77955e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68859982 + posY: 1.59734881 + posZ: -5.0485 + rotX: 0.0168359242 + rotY: 180.000046 + rotZ: 0.08025514 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Card The Winding Road 2d0bdb.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Card The Winding Road 2d0bdb.yaml new file mode 100644 index 000000000..4bd3040fd --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Card The Winding Road 2d0bdb.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277400 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2774': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782606243/2189BC3AC5AC69993C7E59005DA651AFF3450A5E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782604405/5B7A8E21D01286249036CEC1FACE139FDCDC1A3A/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 2d0bdb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Winding Road +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600033 + posY: 1.59753942 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 269.99942 + rotZ: 0.01683805 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Custom_Model_Bag Set-aside 679dfe.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Custom_Model_Bag Set-aside 679dfe.yaml new file mode 100644 index 000000000..863bb0d33 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Custom_Model_Bag Set-aside 679dfe.yaml @@ -0,0 +1,57 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +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: The Winding Road +DragSelectable: true +GMNotes: '' +GUID: 679dfe +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Set-aside +Number: 0 +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: 1.69530058 + posY: 1.55831861 + posZ: 14.2778015 + rotX: 359.955139 + rotY: 224.9976 + rotZ: 0.0686715841 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Deck Agenda Deck b125a2.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Deck Agenda Deck b125a2.yaml new file mode 100644 index 000000000..bd80b8e6c --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Deck Agenda Deck b125a2.yaml @@ -0,0 +1,138 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2746': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bfd15a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.72473884 + posY: 1.59899 + posZ: 0.37332803 + rotX: 0.01686787 + rotY: 180.000153 + rotZ: 0.080070056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2746': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 718e6f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.724715 + posY: 1.64312267 + posZ: 0.373322338 + rotX: 0.0164833125 + rotY: 180.000153 + rotZ: 0.07796188 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2746': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +DeckIDs: +- 274608 +- 274607 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: b125a2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72469974 + posY: 1.61594641 + posZ: 0.373300284 + rotX: 0.0168355815 + rotY: 180.000153 + rotZ: 0.08025577 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Deck Encounter Deck 11c7e0.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Deck Encounter Deck 11c7e0.yaml new file mode 100644 index 000000000..55a173e7d --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Deck Encounter Deck 11c7e0.yaml @@ -0,0 +1,936 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 35a6ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.927698 + posY: 1.83454 + posZ: 5.757144 + rotX: 359.9198 + rotY: 269.999817 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 784ffd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.84542418 + posY: 1.68171358 + posZ: 10.3834524 + rotX: 359.919769 + rotY: 269.999939 + rotZ: 180.017151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d31608 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.845424 + posY: 1.64770722 + posZ: 10.3834524 + rotX: 359.921631 + rotY: 269.999939 + rotZ: 180.017746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d20d00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.7397461 + posY: 1.55539417 + posZ: 13.678442 + rotX: 0.235155329 + rotY: 269.98172 + rotZ: 356.211121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 90eddd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.00998 + posY: 1.54997945 + posZ: 22.5791912 + rotX: 359.934143 + rotY: 269.999939 + rotZ: 0.0142710032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1de1fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.5903969 + posY: 1.47267032 + posZ: 16.5348225 + rotX: 359.920135 + rotY: 269.999634 + rotZ: 0.0167639125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0c444e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.2681847 + posY: 1.47361088 + posZ: 22.96044 + rotX: 359.920227 + rotY: 269.999878 + rotZ: 0.01630674 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 90eddd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.00998 + posY: 1.54997945 + posZ: 22.5791912 + rotX: 359.934143 + rotY: 269.999939 + rotZ: 0.0142710032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8f4743 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.06272 + posY: 1.51604092 + posZ: 23.3607616 + rotX: 359.9386 + rotY: 270.0 + rotZ: 0.00347157218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0c444e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.2681847 + posY: 1.47361088 + posZ: 22.96044 + rotX: 359.920227 + rotY: 269.999878 + rotZ: 0.01630674 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e79003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.7507153 + posY: 1.66107368 + posZ: 13.4977093 + rotX: 0.201154128 + rotY: 269.99884 + rotZ: 359.441925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8f4743 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.06272 + posY: 1.51604092 + posZ: 23.3607616 + rotX: 359.9386 + rotY: 270.0 + rotZ: 0.00347157218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231721 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: c4ce76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.9735909 + posY: 1.73492968 + posZ: 1.969332 + rotX: 359.9267 + rotY: 270.0006 + rotZ: 0.0145301558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231721 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: 50e716 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.8034887 + posY: 1.57302034 + posZ: 1.99893022 + rotX: 359.920471 + rotY: 270.000641 + rotZ: 0.0145632224 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: 16d6d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.5491152 + posY: 1.73727059 + posZ: 5.64764357 + rotX: 359.924774 + rotY: 270.002625 + rotZ: 0.0113747623 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e08626 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.845449 + posY: 1.60349369 + posZ: 10.383462 + rotX: 359.919861 + rotY: 269.999969 + rotZ: 180.0175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d20d00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.7397461 + posY: 1.55539417 + posZ: 13.678442 + rotX: 0.235155329 + rotY: 269.98172 + rotZ: 356.211121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e79003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.7507153 + posY: 1.66107368 + posZ: 13.4977093 + rotX: 0.201154128 + rotY: 269.99884 + rotZ: 359.441925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.5550861 + posY: 1.57516873 + posZ: 5.69822454 + rotX: 359.92038 + rotY: 270.002563 + rotZ: 0.0152713312 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267819 +- 267809 +- 267809 +- 267601 +- 267604 +- 267603 +- 267606 +- 267604 +- 267605 +- 267606 +- 267602 +- 267605 +- 231721 +- 231721 +- 231720 +- 267809 +- 267601 +- 267602 +- 231720 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 11c7e0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92769361 + posY: 1.70105219 + posZ: 5.75719929 + rotX: 359.919739 + rotY: 269.9989 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Deck End of the Roads 757811.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Deck End of the Roads 757811.yaml new file mode 100644 index 000000000..09d10b344 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Deck End of the Roads 757811.yaml @@ -0,0 +1,138 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2748': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782604405/5B7A8E21D01286249036CEC1FACE139FDCDC1A3A/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7dbe98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.710555 + posY: 1.64576054 + posZ: 1.64913487 + rotX: 359.9201 + rotY: 269.999664 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2748': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782604405/5B7A8E21D01286249036CEC1FACE139FDCDC1A3A/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a8e004 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.663977 + posY: 1.60904324 + posZ: 1.56999087 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2748': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782604405/5B7A8E21D01286249036CEC1FACE139FDCDC1A3A/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 274808 +- 274807 +Description: Shuffle 1 at random into the encounter deck. +DragSelectable: true +GMNotes: '' +GUID: '757811' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: End of the Roads +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.261801 + posY: 1.62643111 + posZ: 4.94170046 + rotX: 359.920319 + rotY: 270.000061 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Deck Exploration Deck f22461.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Deck Exploration Deck f22461.yaml new file mode 100644 index 000000000..ed1b2575a --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Deck Exploration Deck f22461.yaml @@ -0,0 +1,490 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cc189f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.122462 + posY: 1.71107984 + posZ: -1.20862412 + rotX: 359.9204 + rotY: 269.999664 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: af96f3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.122462 + posY: 1.71107984 + posZ: -1.20862412 + rotX: 359.9204 + rotY: 269.999664 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3f2bc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.122462 + posY: 1.71107984 + posZ: -1.20862412 + rotX: 359.9204 + rotY: 269.999664 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: aa6e74 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.122462 + posY: 1.71107984 + posZ: -1.20862412 + rotX: 359.9204 + rotY: 269.999664 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bbf010 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.122462 + posY: 1.71107984 + posZ: -1.20862412 + rotX: 359.9204 + rotY: 269.999664 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 94d7be + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.122462 + posY: 1.71107984 + posZ: -1.20862412 + rotX: 359.9204 + rotY: 269.999664 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: be08fb + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.122462 + posY: 1.71107984 + posZ: -1.20862412 + rotX: 359.9204 + rotY: 269.999664 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fd5437 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.122462 + posY: 1.71107984 + posZ: -1.20862412 + rotX: 359.9204 + rotY: 269.999664 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9ec931 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.122462 + posY: 1.71107984 + posZ: -1.20862412 + rotX: 359.9204 + rotY: 269.999664 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 69078a + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.122462 + posY: 1.71107984 + posZ: -1.20862412 + rotX: 359.9204 + rotY: 269.999664 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 653bb9 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.122462 + posY: 1.71107984 + posZ: -1.20862412 + rotX: 359.9204 + rotY: 269.999664 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f0dce5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.122462 + posY: 1.71107984 + posZ: -1.20862412 + rotX: 359.9204 + rotY: 269.999664 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2748': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782604405/5B7A8E21D01286249036CEC1FACE139FDCDC1A3A/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 274805 +- 274806 +- 274809 +- 274810 +- 274811 +- 274812 +- 274813 +- 274814 +- 274815 +- 274816 +- 274817 +- 274818 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: f22461 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Exploration Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.4489985 + posY: 1.67706561 + posZ: 7.79630041 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Deck Field Assets 00a0af.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Deck Field Assets 00a0af.yaml new file mode 100644 index 000000000..5ded22d94 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Deck Field Assets 00a0af.yaml @@ -0,0 +1,506 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e90ce8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Abra + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.8231449 + posY: 3.334493 + posZ: -0.122313604 + rotX: 359.920135 + rotY: 269.98645 + rotZ: 0.0168930441 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1ee60a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bellsprout + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.5623131 + posY: 3.33399367 + posZ: -3.52830243 + rotX: 359.920135 + rotY: 269.98645 + rotZ: 0.0168919433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a9dc3f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Doduo + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.3840923 + posY: 2.46407485 + posZ: -5.99315643 + rotX: 359.920135 + rotY: 269.9863 + rotZ: 0.0168926176 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1efdcd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ekans + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.0839672 + posY: 2.46520615 + posZ: -8.093622 + rotX: 359.920135 + rotY: 269.986359 + rotZ: 0.0168926157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 343cd4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nidoran F + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.6191635 + posY: 2.629498 + posZ: 0.681380033 + rotX: 359.920135 + rotY: 269.987183 + rotZ: 0.0168904755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 500a5d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nidoran M + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.390501 + posY: 2.62785769 + posZ: -2.30231643 + rotX: 359.920135 + rotY: 269.986176 + rotZ: 0.0168934651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6d764b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Oddish + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.0155773 + posY: 2.69697285 + posZ: -4.513911 + rotX: 359.920135 + rotY: 269.986145 + rotZ: 0.01689301 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6e065b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tangela + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.31674 + posY: 2.470587 + posZ: -7.54046631 + rotX: 359.920135 + rotY: 269.985962 + rotZ: 0.0168925468 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7868a7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ponyta + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.366148 + posY: 2.62348557 + posZ: 1.05293834 + rotX: 359.920135 + rotY: 269.98587 + rotZ: 0.0168922767 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3ab700 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Spearow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6734047 + posY: 2.69943285 + posZ: -3.39988565 + rotX: 359.920135 + rotY: 269.9858 + rotZ: 0.0168950055 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267111 +- 267112 +- 267113 +- 267114 +- 267116 +- 267117 +- 267118 +- 267119 +- 267120 +- 267110 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 00a0af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Field Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.863009 + posY: 1.56016731 + posZ: 19.0029049 + rotX: 359.920135 + rotY: 269.985779 + rotZ: 0.0168962833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Deck Field Encounter Set 56132b.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Deck Field Encounter Set 56132b.yaml new file mode 100644 index 000000000..e29ab86db --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Deck Field Encounter Set 56132b.yaml @@ -0,0 +1,414 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8b2534 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.1433659 + posY: 1.60960484 + posZ: 5.629472 + rotX: 359.9336 + rotY: 269.9997 + rotZ: 0.0133823939 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '175081' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.5734129 + posY: 1.58989215 + posZ: 6.10362339 + rotX: 359.932922 + rotY: 269.9997 + rotZ: 0.0135182422 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6b2656 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.7548189 + posY: 1.57123911 + posZ: 4.91537237 + rotX: 359.936 + rotY: 269.9997 + rotZ: 0.0184148718 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b03c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2364569 + posY: 1.55164921 + posZ: 5.44123554 + rotX: 359.932739 + rotY: 269.9997 + rotZ: 0.0138072092 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 148a5c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4305687 + posY: 1.61886609 + posZ: 5.63184452 + rotX: 359.933228 + rotY: 269.999664 + rotZ: 0.0139843039 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4258bb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.1697912 + posY: 1.59997523 + posZ: 5.784685 + rotX: 359.933563 + rotY: 269.9997 + rotZ: 0.0130977156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f06b3f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.5190783 + posY: 1.51723635 + posZ: 5.155181 + rotX: 359.9343 + rotY: 269.9997 + rotZ: 0.0128307054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 79dc6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.1293 + posY: 1.56135058 + posZ: 5.235817 + rotX: 359.934021 + rotY: 269.9997 + rotZ: 0.0141922077 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267811 +- 267813 +- 267815 +- 267817 +- 267810 +- 267812 +- 267818 +- 267816 +Description: Randomly pick 5 and shuffle them into the encounter deck. +DragSelectable: true +GMNotes: '' +GUID: 56132b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Field Encounter Set +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.2084084 + posY: 1.663795 + posZ: 15.0561028 + rotX: 359.9201 + rotY: 269.999725 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Deck Rare Assets d2f4d2.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Deck Rare Assets d2f4d2.yaml new file mode 100644 index 000000000..75a3d00ae --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Deck Rare Assets d2f4d2.yaml @@ -0,0 +1,1008 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 270859 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2708': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f37da0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Wigglytuff (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.1643677 + posY: 2.29466033 + posZ: -92.286 + rotX: 0.0208087415 + rotY: 269.999939 + rotZ: 0.01677116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269541 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2695': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '290982' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Poliwhirl (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.49959326 + posY: 2.35844254 + posZ: -73.42042 + rotX: 0.020809222 + rotY: 269.998779 + rotZ: 0.0167715568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2704': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1bfcd3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Graveler (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.501009 + posY: 2.41560912 + posZ: -75.69878 + rotX: 0.0208076611 + rotY: 269.996979 + rotZ: 0.01676834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2720': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9ae052 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Raichu (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.4154949 + posY: 2.08696342 + posZ: -97.68598 + rotX: 359.332825 + rotY: 269.998322 + rotZ: 0.0167983361 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2688': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 056b24 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pidgeotto (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9011421 + posY: 1.985616 + posZ: -100.131729 + rotX: 0.02080906 + rotY: 269.998535 + rotZ: 0.0167711265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2685': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 215bb7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Exeggutor (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.5850182 + posY: 2.34497166 + posZ: -93.904686 + rotX: 359.332825 + rotY: 269.99646 + rotZ: 0.0168202147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268925 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2689': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '775582' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kingler (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9140272 + posY: 2.3305428 + posZ: -84.201416 + rotX: 0.0208111536 + rotY: 269.9973 + rotZ: 0.0167711135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2682': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 48a727 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gloom (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.5786 + posY: 2.32966423 + posZ: -67.9397659 + rotX: 0.0208100118 + rotY: 269.996643 + rotZ: 0.0167700313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272757 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2727': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a3cbef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Weepinbell (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.28058 + posY: 2.3290453 + posZ: -69.50996 + rotX: 0.0208090339 + rotY: 269.9997 + rotZ: 0.0167709049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2717': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f66d99 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Golbat (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.10876 + posY: 2.32665467 + posZ: -76.22074 + rotX: 0.0208082721 + rotY: 269.996857 + rotZ: 0.0167695377 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2692': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 68facf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Clefable (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.3180523 + posY: 2.29423618 + posZ: -96.46822 + rotX: 0.02081172 + rotY: 269.9958 + rotZ: 0.0167714711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267753 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 69cfd0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Snorlax + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.514061 + posY: 2.30767155 + posZ: -61.1594658 + rotX: 0.0208094958 + rotY: 269.9975 + rotZ: 0.01677081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267752 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dcb4c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lickitung + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.539299 + posY: 2.54712415 + posZ: -63.35171 + rotX: 0.0208097566 + rotY: 269.9975 + rotZ: 0.01677087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267751 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f49176 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lapras + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.71938 + posY: 2.41880083 + posZ: -64.34725 + rotX: 0.02080993 + rotY: 269.99762 + rotZ: 0.0167701133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267749 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bebe7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dratini + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.2413425 + posY: 2.419513 + posZ: -61.6512146 + rotX: 0.0208100267 + rotY: 269.997772 + rotZ: 0.0167699959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267750 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bcdb4e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kanaskhan + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.81132 + posY: 2.54641271 + posZ: -68.02298 + rotX: 0.0208092052 + rotY: 269.997742 + rotZ: 0.0167703629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267748 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b453d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ditto + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.44265 + posY: 2.41933084 + posZ: -62.3478355 + rotX: 0.0208092127 + rotY: 269.997864 + rotZ: 0.0167702921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267747 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 86c451 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Chansey + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.1278152 + posY: 2.41889048 + posZ: -63.9618454 + rotX: 0.0208098348 + rotY: 269.9979 + rotZ: 0.0167699363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267754 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c3190e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tauros + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1232424 + posY: 2.48485446 + posZ: -16.02921 + rotX: 359.920135 + rotY: 269.998535 + rotZ: 0.0168761462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2682': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2685': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2688': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2689': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2692': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2695': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2704': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2708': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2717': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2720': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2727': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 270859 +- 269541 +- 270419 +- 272044 +- 268840 +- 268514 +- 268925 +- 268216 +- 272757 +- 271717 +- 269205 +- 267753 +- 267752 +- 267751 +- 267749 +- 267750 +- 267748 +- 267747 +- 267754 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d2f4d2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Rare Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.29643714 + posY: 1.59771442 + posZ: 19.0685577 + rotX: 359.920135 + rotY: 269.998566 + rotZ: 0.0168814082 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Deck Rare Encounter Set c900ce.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Deck Rare Encounter Set c900ce.yaml new file mode 100644 index 000000000..a08bd2c8d --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2a The Winding Road 61801e/Deck Rare Encounter Set c900ce.yaml @@ -0,0 +1,920 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267848 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8275f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4778252 + posY: 1.70083308 + posZ: -5.110941 + rotX: 359.93396 + rotY: 269.999878 + rotZ: 0.0146708526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267851 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9a90a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.8511982 + posY: 1.6716491 + posZ: -4.70562458 + rotX: 359.932465 + rotY: 269.999878 + rotZ: 0.0139912358 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267862 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ab32cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.34694 + posY: 1.56640959 + posZ: -4.3452816 + rotX: 359.933868 + rotY: 269.999939 + rotZ: 0.0127378786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267863 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 527ce6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9577055 + posY: 1.55732691 + posZ: -3.599544 + rotX: 359.930878 + rotY: 269.999939 + rotZ: 359.9833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267854 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 04fbfc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4184074 + posY: 1.643317 + posZ: -4.56822348 + rotX: 359.933441 + rotY: 269.999878 + rotZ: 0.01348167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267864 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a2b46e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.8294334 + posY: 1.54642951 + posZ: -4.882814 + rotX: 359.9331 + rotY: 269.999939 + rotZ: 0.01384164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267857 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2b360a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3249359 + posY: 1.61457539 + posZ: -4.38055563 + rotX: 359.933716 + rotY: 269.9999 + rotZ: 0.0130347963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267850 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e743bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.5542374 + posY: 1.681409 + posZ: -5.39828348 + rotX: 359.933167 + rotY: 269.999878 + rotZ: 0.01335297 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267849 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '126268' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3703651 + posY: 1.69154 + posZ: -4.437929 + rotX: 359.933441 + rotY: 269.999878 + rotZ: 0.0134003581 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267853 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e29a11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3690414 + posY: 1.653022 + posZ: -4.46332932 + rotX: 359.9335 + rotY: 269.999878 + rotZ: 0.013344436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267859 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: aeb7fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1070385 + posY: 1.59544921 + posZ: -4.78942537 + rotX: 359.934357 + rotY: 269.999939 + rotZ: 0.0141529925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267861 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2f3e94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7288742 + posY: 1.57552576 + posZ: -4.707577 + rotX: 359.932617 + rotY: 269.999939 + rotZ: 0.0138330935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267860 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 71aac2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.81522 + posY: 1.58503914 + posZ: -4.82249069 + rotX: 359.9325 + rotY: 269.999939 + rotZ: 0.01398095 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267855 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0d9018 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.53936 + posY: 1.63361788 + posZ: -4.06025 + rotX: 359.934235 + rotY: 269.999878 + rotZ: 0.01124593 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267852 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f120d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9491539 + posY: 1.66192007 + posZ: -4.450786 + rotX: 359.933044 + rotY: 269.999878 + rotZ: 0.014011329 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267865 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4945ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7495613 + posY: 1.50693226 + posZ: -4.51910925 + rotX: 359.9121 + rotY: 269.999939 + rotZ: 0.0039470233 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267866 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d10f76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7763824 + posY: 1.70056987 + posZ: -4.83039951 + rotX: 359.933 + rotY: 270.0 + rotZ: 180.014435 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267856 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c89b11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1950531 + posY: 1.62436426 + posZ: -4.22008848 + rotX: 359.934143 + rotY: 269.999878 + rotZ: 0.0122695034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267858 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6304b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3074913 + posY: 1.60498524 + posZ: -3.97525263 + rotX: 359.935181 + rotY: 269.999939 + rotZ: 0.0096496 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267848 +- 267851 +- 267862 +- 267863 +- 267854 +- 267864 +- 267857 +- 267850 +- 267849 +- 267853 +- 267859 +- 267861 +- 267860 +- 267855 +- 267852 +- 267865 +- 267866 +- 267856 +- 267858 +Description: Randomly pick 1 and shuffle it into the encounter deck. +DragSelectable: true +GMNotes: '' +GUID: c900ce +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Rare Encounter Set +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.3539 + posY: 1.71615636 + posZ: 12.3528013 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea.ttslua b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea.ttslua rename to unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d.ttslua diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d.yaml new file mode 100644 index 000000000..612351f91 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d.yaml @@ -0,0 +1,62 @@ +Autoraise: true +ColorDiffuse: + b: 0.7019608 + g: 0.0 + r: 0.347063959 +ContainedObjects: +- !include 'Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Rare Assets 4a2372.yaml' +- !include 'Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Water Assets 847a6c.yaml' +- !include 'Bag Scenario 2b Shipments From The Unknown 13ed7d/Custom_Model_Bag Set-aside + a94ec9.yaml' +- !include 'Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Encounter Deck + 9ea55c.yaml' +- !include 'Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Agenda Deck defd3d.yaml' +- !include 'Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Act Deck efa6d9.yaml' +- !include 'Bag Scenario 2b Shipments From The Unknown 13ed7d/Card Shipments From + The Unknown 07a327.yaml' +- !include 'Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Water Encounter + Set f56def.yaml' +- !include 'Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Rare Encounter + Set 8319a6.yaml' +- !include 'Bag Scenario 2b Shipments From The Unknown 13ed7d/Card 4521f3.yaml' +- !include 'Bag Scenario 2b Shipments From The Unknown 13ed7d/Card aeb56d.yaml' +- !include 'Bag Scenario 2b Shipments From The Unknown 13ed7d/Custom_Tile 61911d.yaml' +- !include 'Bag Scenario 2b Shipments From The Unknown 13ed7d/Custom_Tile 731ada.yaml' +- !include 'Bag Scenario 2b Shipments From The Unknown 13ed7d/Card 1f39de.yaml' +- !include 'Bag Scenario 2b Shipments From The Unknown 13ed7d/Custom_Tile 6d4d1e.yaml' +- !include 'Bag Scenario 2b Shipments From The Unknown 13ed7d/Card a185f6.yaml' +- !include 'Bag Scenario 2b Shipments From The Unknown 13ed7d/Custom_Tile 7234af.yaml' +- !include 'Bag Scenario 2b Shipments From The Unknown 13ed7d/Card 4ad63c.yaml' +- !include 'Bag Scenario 2b Shipments From The Unknown 13ed7d/Card 0f38f0.yaml' +- !include 'Bag Scenario 2b Shipments From The Unknown 13ed7d/Custom_Tile e776d9.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 13ed7d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Scenario 2b Shipments From The Unknown 13ed7d.ttslua' +LuaScriptState: '{"ml":{"07a327":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"0f38f0":{"lock":false,"pos":{"x":-30.2244,"y":1.635,"z":-7.7},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"1f39de":{"lock":false,"pos":{"x":-30.2243,"y":1.6372,"z":-0.03},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"4521f3":{"lock":false,"pos":{"x":-23.6766,"y":1.6281,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":180.0169}},"4a2372":{"lock":false,"pos":{"x":0.0853,"y":1.5993,"z":18.865},"rot":{"x":359.9201,"y":269.9985,"z":0.0169}},"4ad63c":{"lock":false,"pos":{"x":-36.7733,"y":1.6441,"z":-7.7},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"61911d":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":359.9831,"y":0.0003,"z":359.9201}},"6d4d1e":{"lock":false,"pos":{"x":-33.5281,"y":1.6282,"z":-0.0714},"rot":{"x":359.9201,"y":270.0107,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-36.7733,"y":1.6317,"z":-3.83},"rot":{"x":359.9831,"y":0,"z":359.9201}},"731ada":{"lock":false,"pos":{"x":-27.2274,"y":1.6195,"z":0.0608},"rot":{"x":359.9201,"y":270.0107,"z":0.0169}},"8319a6":{"lock":false,"pos":{"x":-9.9454,"y":1.7106,"z":9.785},"rot":{"x":359.9201,"y":269.9995,"z":180.0169}},"847a6c":{"lock":false,"pos":{"x":-3.8531,"y":1.5615,"z":18.9298},"rot":{"x":359.9201,"y":270.0012,"z":0.0169}},"9ea55c":{"lock":false,"pos":{"x":-3.9277,"y":1.7155,"z":5.7572},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"a185f6":{"lock":false,"pos":{"x":-36.7732,"y":1.6464,"z":-0.03},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"a94ec9":{"lock":false,"pos":{"x":1.6953,"y":1.5583,"z":14.2778},"rot":{"x":359.9551,"y":224.9977,"z":0.0687}},"aeb56d":{"lock":false,"pos":{"x":-30.2243,"y":1.6395,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"defd3d":{"lock":false,"pos":{"x":-2.7247,"y":1.6159,"z":0.3733},"rot":{"x":0.0168,"y":179.9996,"z":0.0803}},"e776d9":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":359.9831,"y":0.0004,"z":359.9201}},"efa6d9":{"lock":false,"pos":{"x":-2.6885,"y":1.6191,"z":-5.0485},"rot":{"x":0.0168,"y":179.9996,"z":0.0803}},"f56def":{"lock":false,"pos":{"x":-9.8865,"y":1.6585,"z":12.8502},"rot":{"x":359.9201,"y":269.9997,"z":180.0169}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: 'Scenario 2b: Shipments From The Unknown' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.251214 + posY: 1.28292513 + posZ: 11.9866123 + rotX: 0.0799581856 + rotY: 89.99385 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Card 0f38f0.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Card 0f38f0.yaml new file mode 100644 index 000000000..6c902d468 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Card 0f38f0.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277507 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2775': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478821859778798367/77934A67946CCF3BC43A7C65E35D72E8AACCA33B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300927428715022394/3578FFAB9DF27930722348FF57E89198A41B2404/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 0f38f0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2244 + posY: 1.63498378 + posZ: -7.7 + rotX: 359.9201 + rotY: 270.000061 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Card 1f39de.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Card 1f39de.yaml new file mode 100644 index 000000000..29901db14 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Card 1f39de.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277610 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2776': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478821859778798367/77934A67946CCF3BC43A7C65E35D72E8AACCA33B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300927428715022394/3578FFAB9DF27930722348FF57E89198A41B2404/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 1f39de +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.63724208 + posZ: -0.0299997535 + rotX: 359.9201 + rotY: 270.000122 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Card 4521f3.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Card 4521f3.yaml new file mode 100644 index 000000000..593d1f39d --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Card 4521f3.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277706 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2777': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478821859778798367/77934A67946CCF3BC43A7C65E35D72E8AACCA33B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300927428715022394/3578FFAB9DF27930722348FF57E89198A41B2404/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 4521f3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.62811172 + posZ: -0.0299997386 + rotX: 359.9201 + rotY: 270.000031 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Card 4ad63c.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Card 4ad63c.yaml new file mode 100644 index 000000000..e099d36d4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Card 4ad63c.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277811 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2778': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478821859778798367/77934A67946CCF3BC43A7C65E35D72E8AACCA33B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300927428715022394/3578FFAB9DF27930722348FF57E89198A41B2404/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 4ad63c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7733 + posY: 1.64411569 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 270.000122 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Card a185f6.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Card a185f6.yaml new file mode 100644 index 000000000..64e338ae9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Card a185f6.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277909 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2779': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478821859778798367/77934A67946CCF3BC43A7C65E35D72E8AACCA33B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300927428715022394/3578FFAB9DF27930722348FF57E89198A41B2404/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: a185f6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7732 + posY: 1.64637411 + posZ: -0.0299996827 + rotX: 359.9201 + rotY: 270.000122 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Card aeb56d.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Card aeb56d.yaml new file mode 100644 index 000000000..3f13b8fc7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Card aeb56d.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 278008 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2780': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478821859778798367/77934A67946CCF3BC43A7C65E35D72E8AACCA33B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300927428715022394/3578FFAB9DF27930722348FF57E89198A41B2404/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: aeb56d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.63948 + posZ: 7.57000065 + rotX: 359.9201 + rotY: 270.000061 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Card Shipments From The Unknown 07a327.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Card Shipments From The Unknown 07a327.yaml new file mode 100644 index 000000000..2cb3c3637 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Card Shipments From The Unknown 07a327.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277400 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2774': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478821859778798367/77934A67946CCF3BC43A7C65E35D72E8AACCA33B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300927428715022394/3578FFAB9DF27930722348FF57E89198A41B2404/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 07a327 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Shipments From The Unknown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.956 + posY: 1.59753942 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 269.999939 + rotZ: 0.01683724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Custom_Model_Bag Set-aside a94ec9.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Custom_Model_Bag Set-aside a94ec9.yaml new file mode 100644 index 000000000..8c6ea54f6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Custom_Model_Bag Set-aside a94ec9.yaml @@ -0,0 +1,102 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- Autoraise: true + CardID: 275312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300927428715022394/3578FFAB9DF27930722348FF57E89198A41B2404/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fc2407 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rowboat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.69639885 + posY: 3.656517 + posZ: 14.2788429 + rotX: 359.9551 + rotY: 224.999588 + rotZ: 0.06866612 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +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: Shipments From The Unknown +DragSelectable: true +GMNotes: '' +GUID: a94ec9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Set-aside +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: 1.69530046 + posY: 1.55831838 + posZ: 14.2778025 + rotX: 359.955139 + rotY: 224.997665 + rotZ: 0.06867318 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Custom_Tile 61911d.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Custom_Tile 61911d.yaml index 6b9853602..bb9991dd6 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 7234af.yaml +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Custom_Tile 61911d.yaml @@ -16,7 +16,7 @@ CustomImage: Description: '' DragSelectable: true GMNotes: '' -GUID: 7234af +GUID: 61911d Grid: true GridProjection: false Hands: false @@ -124,10 +124,10 @@ Sticky: true Tooltip: true Transform: posX: -30.2242 - posY: 1.6247828 + posY: 1.62478268 posZ: 3.86000037 rotX: 359.983124 - rotY: 0.00176093343 + rotY: 0.0003167334 rotZ: 359.920074 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Custom_Tile 6d4d1e.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Custom_Tile 6d4d1e.yaml new file mode 100644 index 000000000..4400f1bdc --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Custom_Tile 6d4d1e.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 6d4d1e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -33.5281 + posY: 1.62823188 + posZ: -0.07140025 + rotX: 359.9201 + rotY: 270.010681 + rotZ: 0.01688482 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..f74aa94c0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Custom_Tile 7234af.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -36.7733 + posY: 1.63165057 + posZ: -3.83000064 + rotX: 359.983124 + rotY: 2.29972034e-06 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Custom_Tile 731ada.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Custom_Tile 731ada.yaml new file mode 100644 index 000000000..4834747cb --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Custom_Tile 731ada.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 731ada +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -27.2274 + posY: 1.619485 + posZ: 0.06079978 + rotX: 359.9201 + rotY: 270.010681 + rotZ: 0.0168852024 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Custom_Tile e776d9.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Custom_Tile e776d9.yaml new file mode 100644 index 000000000..4b1d49eef --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Custom_Tile e776d9.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e776d9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.6225183 + posZ: -3.83 + rotX: 359.983124 + rotY: 0.000363370054 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Act Deck efa6d9.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Act Deck efa6d9.yaml new file mode 100644 index 000000000..327bc03c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Act Deck efa6d9.yaml @@ -0,0 +1,192 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274911 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2747': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4b6422 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.68855882 + posY: 1.59734619 + posZ: -5.04852629 + rotX: 0.016866589 + rotY: 179.999542 + rotZ: 0.08008193 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274910 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2747': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '534046' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.68853474 + posY: 1.64166057 + posZ: -5.048532 + rotX: 0.0165080354 + rotY: 179.999542 + rotZ: 0.07811587 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b0f98f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.68856072 + posY: 1.66220653 + posZ: -5.0485177 + rotX: 0.0168268941 + rotY: 179.999756 + rotZ: 0.08027957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2749': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + '2752': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +DeckIDs: +- 274911 +- 274910 +- 275209 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: efa6d9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68849969 + posY: 1.61911654 + posZ: -5.04850054 + rotX: 0.0168362353 + rotY: 179.999557 + rotZ: 0.08025592 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Agenda Deck defd3d.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Agenda Deck defd3d.yaml new file mode 100644 index 000000000..d7ec248ea --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Agenda Deck defd3d.yaml @@ -0,0 +1,138 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2748': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2d629f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.72474027 + posY: 1.59898257 + posZ: 0.373328239 + rotX: 0.016937986 + rotY: 179.999588 + rotZ: 0.07958519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2748': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d56f18 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.72471547 + posY: 1.64321589 + posZ: 0.3733225 + rotX: 0.01863648 + rotY: 179.999573 + rotZ: 0.07935689 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2748': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +DeckIDs: +- 274813 +- 274812 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: defd3d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72469974 + posY: 1.61594629 + posZ: 0.3733003 + rotX: 0.0168363117 + rotY: 179.9996 + rotZ: 0.08025567 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Encounter Deck 9ea55c.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Encounter Deck 9ea55c.yaml new file mode 100644 index 000000000..f1638ccc4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Encounter Deck 9ea55c.yaml @@ -0,0 +1,1082 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267841 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ce01d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.84545636 + posY: 1.603504 + posZ: 10.383461 + rotX: 359.919739 + rotY: 269.999969 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300927428715022394/3578FFAB9DF27930722348FF57E89198A41B2404/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 42b56d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6137495 + posY: 1.61170328 + posZ: 1.37028313 + rotX: 359.9201 + rotY: 269.997284 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300927428715022394/3578FFAB9DF27930722348FF57E89198A41B2404/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e34031 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.2537622 + posY: 1.71831965 + posZ: 1.49360764 + rotX: 359.920044 + rotY: 269.997253 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 90eddd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.00998 + posY: 1.54997945 + posZ: 22.5791912 + rotX: 359.934143 + rotY: 269.999939 + rotZ: 0.0142710032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0c444e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.84542871 + posY: 1.716723 + posZ: 10.3834467 + rotX: 359.932526 + rotY: 269.999939 + rotZ: 180.014191 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267838 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dd980a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.9276967 + posY: 1.83429432 + posZ: 5.757144 + rotX: 359.919769 + rotY: 270.000031 + rotZ: 180.017044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.84543467 + posY: 1.71260715 + posZ: 10.3834543 + rotX: 359.937836 + rotY: 270.0 + rotZ: 180.014587 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0c444e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.84543467 + posY: 1.69326639 + posZ: 10.3834543 + rotX: 359.93512 + rotY: 270.0 + rotZ: 180.014267 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300927428715022394/3578FFAB9DF27930722348FF57E89198A41B2404/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4b2e79 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.7071056 + posY: 1.69960356 + posZ: 1.1809727 + rotX: 359.920044 + rotY: 269.997253 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231721 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: c4ce76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.845412 + posY: 1.68774223 + posZ: 10.38345 + rotX: 359.931946 + rotY: 270.0 + rotZ: 180.014267 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8f4743 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.84555578 + posY: 1.74996364 + posZ: 10.3875256 + rotX: 359.920441 + rotY: 270.013 + rotZ: 182.261719 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267838 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 189ff6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.84541178 + posY: 1.66852534 + posZ: 10.3834486 + rotX: 359.931915 + rotY: 269.999969 + rotZ: 180.014282 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267838 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dd980a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.84543443 + posY: 1.64920115 + posZ: 10.3834534 + rotX: 359.92276 + rotY: 270.0 + rotZ: 180.022491 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Obstacle. + DragSelectable: true + GMNotes: '' + GUID: 4904d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0977612 + posY: 1.48390508 + posZ: 24.0386047 + rotX: 359.920441 + rotY: 269.999 + rotZ: 0.0149599239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300927428715022394/3578FFAB9DF27930722348FF57E89198A41B2404/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ef9c34 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.8327932 + posY: 1.65642452 + posZ: 1.79698837 + rotX: 359.920044 + rotY: 269.997253 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Obstacle. + DragSelectable: true + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0856552 + posY: 1.5200088 + posZ: 24.3093739 + rotX: 359.94 + rotY: 269.999237 + rotZ: 359.980957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 90eddd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.00998 + posY: 1.54997945 + posZ: 22.5791912 + rotX: 359.934143 + rotY: 269.999939 + rotZ: 0.0142710032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231721 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: 50e716 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.8034887 + posY: 1.57302034 + posZ: 1.99893022 + rotX: 359.920471 + rotY: 270.000641 + rotZ: 0.0145632224 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8f4743 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.06272 + posY: 1.51604092 + posZ: 23.3607616 + rotX: 359.9386 + rotY: 270.0 + rotZ: 0.00347157218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300927428715022394/3578FFAB9DF27930722348FF57E89198A41B2404/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6c1521 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.8435 + posY: 1.70802879 + posZ: 1.18528593 + rotX: 359.920044 + rotY: 269.997253 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300927428715022394/3578FFAB9DF27930722348FF57E89198A41B2404/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 954e2c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.0850887 + posY: 1.68921781 + posZ: 1.55341971 + rotX: 359.920044 + rotY: 269.997253 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: 16d6d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.5491152 + posY: 1.73727059 + posZ: 5.64764357 + rotX: 359.924774 + rotY: 270.002625 + rotZ: 0.0113747623 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2753': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300927428715022394/3578FFAB9DF27930722348FF57E89198A41B2404/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267841 +- 275313 +- 275318 +- 267604 +- 267606 +- 267838 +- 231720 +- 267606 +- 275316 +- 231721 +- 267605 +- 267838 +- 267838 +- 231727 +- 275314 +- 231727 +- 267604 +- 231721 +- 267605 +- 275317 +- 275315 +- 231720 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 9ea55c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92769361 + posY: 1.71549428 + posZ: 5.75719929 + rotX: 359.919739 + rotY: 270.000122 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Rare Assets 4a2372.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Rare Assets 4a2372.yaml new file mode 100644 index 000000000..379d2126e --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Rare Assets 4a2372.yaml @@ -0,0 +1,1008 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 270859 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2708': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f37da0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Wigglytuff (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.1643677 + posY: 2.29466033 + posZ: -92.286 + rotX: 0.0208087415 + rotY: 269.999939 + rotZ: 0.01677116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269541 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2695': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '290982' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Poliwhirl (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.49959326 + posY: 2.35844254 + posZ: -73.42042 + rotX: 0.020809222 + rotY: 269.998779 + rotZ: 0.0167715568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2704': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1bfcd3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Graveler (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.501009 + posY: 2.41560912 + posZ: -75.69878 + rotX: 0.0208076611 + rotY: 269.996979 + rotZ: 0.01676834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2720': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9ae052 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Raichu (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.4154949 + posY: 2.08696342 + posZ: -97.68598 + rotX: 359.332825 + rotY: 269.998322 + rotZ: 0.0167983361 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2688': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 056b24 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pidgeotto (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9011421 + posY: 1.985616 + posZ: -100.131729 + rotX: 0.02080906 + rotY: 269.998535 + rotZ: 0.0167711265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2685': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 215bb7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Exeggutor (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.5850182 + posY: 2.34497166 + posZ: -93.904686 + rotX: 359.332825 + rotY: 269.99646 + rotZ: 0.0168202147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268925 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2689': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '775582' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kingler (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9140272 + posY: 2.3305428 + posZ: -84.201416 + rotX: 0.0208111536 + rotY: 269.9973 + rotZ: 0.0167711135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2682': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 48a727 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gloom (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.5786 + posY: 2.32966423 + posZ: -67.9397659 + rotX: 0.0208100118 + rotY: 269.996643 + rotZ: 0.0167700313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272757 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2727': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a3cbef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Weepinbell (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.28058 + posY: 2.3290453 + posZ: -69.50996 + rotX: 0.0208090339 + rotY: 269.9997 + rotZ: 0.0167709049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2717': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f66d99 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Golbat (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.10876 + posY: 2.32665467 + posZ: -76.22074 + rotX: 0.0208082721 + rotY: 269.996857 + rotZ: 0.0167695377 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2692': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 68facf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Clefable (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.3180523 + posY: 2.29423618 + posZ: -96.46822 + rotX: 0.02081172 + rotY: 269.9958 + rotZ: 0.0167714711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267753 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 69cfd0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Snorlax + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.514061 + posY: 2.30767155 + posZ: -61.1594658 + rotX: 0.0208094958 + rotY: 269.9975 + rotZ: 0.01677081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267752 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dcb4c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lickitung + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.539299 + posY: 2.54712415 + posZ: -63.35171 + rotX: 0.0208097566 + rotY: 269.9975 + rotZ: 0.01677087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267751 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f49176 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lapras + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.71938 + posY: 2.41880083 + posZ: -64.34725 + rotX: 0.02080993 + rotY: 269.99762 + rotZ: 0.0167701133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267749 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bebe7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dratini + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.2413425 + posY: 2.419513 + posZ: -61.6512146 + rotX: 0.0208100267 + rotY: 269.997772 + rotZ: 0.0167699959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267750 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bcdb4e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kanaskhan + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.81132 + posY: 2.54641271 + posZ: -68.02298 + rotX: 0.0208092052 + rotY: 269.997742 + rotZ: 0.0167703629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267748 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b453d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ditto + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.44265 + posY: 2.41933084 + posZ: -62.3478355 + rotX: 0.0208092127 + rotY: 269.997864 + rotZ: 0.0167702921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267747 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 86c451 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Chansey + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.1278152 + posY: 2.41889048 + posZ: -63.9618454 + rotX: 0.0208098348 + rotY: 269.9979 + rotZ: 0.0167699363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267754 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c3190e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tauros + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1232424 + posY: 2.48485446 + posZ: -16.02921 + rotX: 359.920135 + rotY: 269.998535 + rotZ: 0.0168761462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2682': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2685': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2688': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2689': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2692': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2695': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2704': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2708': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2717': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2720': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2727': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 270859 +- 269541 +- 270419 +- 272044 +- 268840 +- 268514 +- 268925 +- 268216 +- 272757 +- 271717 +- 269205 +- 267753 +- 267752 +- 267751 +- 267749 +- 267750 +- 267748 +- 267747 +- 267754 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 4a2372 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Rare Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.08527999 + posY: 1.599343 + posZ: 18.8650055 + rotX: 359.920135 + rotY: 269.998535 + rotZ: 0.0168815386 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Rare Encounter Set 8319a6.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Rare Encounter Set 8319a6.yaml new file mode 100644 index 000000000..20db703fc --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Rare Encounter Set 8319a6.yaml @@ -0,0 +1,920 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267855 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0d9018 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.53936 + posY: 1.63361788 + posZ: -4.06025 + rotX: 359.934235 + rotY: 269.999878 + rotZ: 0.01124593 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267853 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e29a11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3690414 + posY: 1.653022 + posZ: -4.46332932 + rotX: 359.9335 + rotY: 269.999878 + rotZ: 0.013344436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267863 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 527ce6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9577055 + posY: 1.55732691 + posZ: -3.599544 + rotX: 359.930878 + rotY: 269.999939 + rotZ: 359.9833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267861 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2f3e94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7288742 + posY: 1.57552576 + posZ: -4.707577 + rotX: 359.932617 + rotY: 269.999939 + rotZ: 0.0138330935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267866 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d10f76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7763824 + posY: 1.70056987 + posZ: -4.83039951 + rotX: 359.933 + rotY: 270.0 + rotZ: 180.014435 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267862 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ab32cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.34694 + posY: 1.56640959 + posZ: -4.3452816 + rotX: 359.933868 + rotY: 269.999939 + rotZ: 0.0127378786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267856 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c89b11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1950531 + posY: 1.62436426 + posZ: -4.22008848 + rotX: 359.934143 + rotY: 269.999878 + rotZ: 0.0122695034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267850 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e743bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.5542374 + posY: 1.681409 + posZ: -5.39828348 + rotX: 359.933167 + rotY: 269.999878 + rotZ: 0.01335297 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267860 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 71aac2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.81522 + posY: 1.58503914 + posZ: -4.82249069 + rotX: 359.9325 + rotY: 269.999939 + rotZ: 0.01398095 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267859 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: aeb7fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1070385 + posY: 1.59544921 + posZ: -4.78942537 + rotX: 359.934357 + rotY: 269.999939 + rotZ: 0.0141529925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267857 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2b360a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3249359 + posY: 1.61457539 + posZ: -4.38055563 + rotX: 359.933716 + rotY: 269.9999 + rotZ: 0.0130347963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267854 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 04fbfc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4184074 + posY: 1.643317 + posZ: -4.56822348 + rotX: 359.933441 + rotY: 269.999878 + rotZ: 0.01348167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267865 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4945ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7495613 + posY: 1.50693226 + posZ: -4.51910925 + rotX: 359.9121 + rotY: 269.999939 + rotZ: 0.0039470233 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267848 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8275f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4778252 + posY: 1.70083308 + posZ: -5.110941 + rotX: 359.93396 + rotY: 269.999878 + rotZ: 0.0146708526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267851 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9a90a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.8511982 + posY: 1.6716491 + posZ: -4.70562458 + rotX: 359.932465 + rotY: 269.999878 + rotZ: 0.0139912358 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267852 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f120d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9491539 + posY: 1.66192007 + posZ: -4.450786 + rotX: 359.933044 + rotY: 269.999878 + rotZ: 0.014011329 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267858 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6304b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3074913 + posY: 1.60498524 + posZ: -3.97525263 + rotX: 359.935181 + rotY: 269.999939 + rotZ: 0.0096496 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267849 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '126268' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3703651 + posY: 1.69154 + posZ: -4.437929 + rotX: 359.933441 + rotY: 269.999878 + rotZ: 0.0134003581 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267864 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a2b46e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.8294334 + posY: 1.54642951 + posZ: -4.882814 + rotX: 359.9331 + rotY: 269.999939 + rotZ: 0.01384164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267855 +- 267853 +- 267863 +- 267861 +- 267866 +- 267862 +- 267856 +- 267850 +- 267860 +- 267859 +- 267857 +- 267854 +- 267865 +- 267848 +- 267851 +- 267852 +- 267858 +- 267849 +- 267864 +Description: Randomly pick 1 and shuffle it into the encounter deck. +DragSelectable: true +GMNotes: '' +GUID: 8319a6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Rare Encounter Set +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.945399 + posY: 1.71064723 + posZ: 9.785 + rotX: 359.9201 + rotY: 269.999542 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Water Assets 847a6c.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Water Assets 847a6c.yaml new file mode 100644 index 000000000..e9c9c6eb4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Water Assets 847a6c.yaml @@ -0,0 +1,506 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267538 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e812cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Goldeen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.1195831 + posY: 2.6113286 + posZ: -12.0132265 + rotX: 359.920135 + rotY: 270.0018 + rotZ: 0.0168716423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267539 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 84202f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Horsea + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.4325714 + posY: 2.610624 + posZ: -14.1556587 + rotX: 359.920135 + rotY: 270.003082 + rotZ: 0.01686815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267540 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3f57d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Krabby + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9629478 + posY: 2.59854484 + posZ: -16.8979359 + rotX: 359.920135 + rotY: 270.001678 + rotZ: 0.0168715138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267541 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5fec8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Poliwag + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.7416744 + posY: 6.240125 + posZ: -19.7415218 + rotX: 359.920135 + rotY: 270.001648 + rotZ: 0.01687008 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267542 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 335a0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Seel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.8016167 + posY: 2.61319327 + posZ: -12.0105333 + rotX: 359.920135 + rotY: 270.0016 + rotZ: 0.0168711115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267543 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4d6002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shellder + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.2026653 + posY: 2.61073422 + posZ: -12.2918587 + rotX: 359.920135 + rotY: 270.0014 + rotZ: 0.0168711152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267544 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 280e7e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Slowpoke + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.8173656 + posY: 2.47487068 + posZ: -15.2104483 + rotX: 359.920135 + rotY: 270.0017 + rotZ: 0.0168694053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267545 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 83e95c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Staryu + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.7759075 + posY: 2.61198616 + posZ: -17.5338173 + rotX: 359.920135 + rotY: 270.000458 + rotZ: 0.016870698 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267546 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 878a16 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Magikarp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.2997437 + posY: 2.479081 + posZ: -10.5870619 + rotX: 359.920135 + rotY: 270.000916 + rotZ: 0.0168716032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267537 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e03708 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tentacool + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.1746159 + posY: 2.54044 + posZ: -12.226141 + rotX: 2.354295 + rotY: 269.998383 + rotZ: 0.0167677552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267538 +- 267539 +- 267540 +- 267541 +- 267542 +- 267543 +- 267544 +- 267545 +- 267546 +- 267537 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 847a6c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Water Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.85306382 + posY: 1.561526 + posZ: 18.92979 + rotX: 359.920135 + rotY: 270.001221 + rotZ: 0.0168756358 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Water Encounter Set f56def.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Water Encounter Set f56def.yaml new file mode 100644 index 000000000..362270f38 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 2b Shipments From The Unknown 13ed7d/Deck Water Encounter Set f56def.yaml @@ -0,0 +1,414 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267844 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d7b478 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.16893 + posY: 1.55770254 + posZ: -2.07580566 + rotX: 359.934052 + rotY: 269.999847 + rotZ: 0.0139717571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267839 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 913ca8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9234705 + posY: 1.6061666 + posZ: -1.65239608 + rotX: 359.934875 + rotY: 269.999817 + rotZ: 0.01145146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267843 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0d2fc4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4077568 + posY: 1.62674642 + posZ: -2.01337242 + rotX: 359.920166 + rotY: 269.993347 + rotZ: 3.15558839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 506d86 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6808147 + posY: 1.59673488 + posZ: -2.124152 + rotX: 359.9364 + rotY: 269.9998 + rotZ: 0.01766552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267847 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ccf26e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.5250912 + posY: 1.47145438 + posZ: -2.03748727 + rotX: 359.920349 + rotY: 269.999878 + rotZ: 0.0154142529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267842 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 656e1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.42537 + posY: 1.57669008 + posZ: -1.954552 + rotX: 359.933563 + rotY: 269.999817 + rotZ: 0.0132578835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267846 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 31419f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1075459 + posY: 1.51413083 + posZ: -2.02123046 + rotX: 359.93927 + rotY: 269.999878 + rotZ: 0.008084392 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267845 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2024c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7598133 + posY: 1.5471884 + posZ: -2.51725245 + rotX: 359.933533 + rotY: 269.999847 + rotZ: 0.0138228955 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267844 +- 267839 +- 267843 +- 267840 +- 267847 +- 267842 +- 267846 +- 267845 +Description: Randomly pick 5 and shuffle them into the encounter deck. +DragSelectable: true +GMNotes: '' +GUID: f56def +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Water Encounter Set +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.886501 + posY: 1.65851319 + posZ: 12.8502016 + rotX: 359.9201 + rotY: 269.999725 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d.ttslua b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d.ttslua rename to unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6.ttslua diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6.yaml new file mode 100644 index 000000000..d720955ef --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6.yaml @@ -0,0 +1,50 @@ +Autoraise: true +ColorDiffuse: + b: 0.7019608 + g: 0.0 + r: 0.347064 +ContainedObjects: +- !include 'Bag Scenario 3a Viridian f040a6/Deck Rare Assets 1d11d2.yaml' +- !include 'Bag Scenario 3a Viridian f040a6/Deck Forest Assets 2cd219.yaml' +- !include 'Bag Scenario 3a Viridian f040a6/Custom_Model_Bag Set-aside a09707.yaml' +- !include 'Bag Scenario 3a Viridian f040a6/Deck Encounter Deck 81b23c.yaml' +- !include 'Bag Scenario 3a Viridian f040a6/Deck Agenda Deck cc49c0.yaml' +- !include 'Bag Scenario 3a Viridian f040a6/Deck Act Deck 269c8b.yaml' +- !include 'Bag Scenario 3a Viridian f040a6/Card Viridian 49fb45.yaml' +- !include 'Bag Scenario 3a Viridian f040a6/Card 1ee4cd.yaml' +- !include 'Bag Scenario 3a Viridian f040a6/Custom_Tile 7234af.yaml' +- !include 'Bag Scenario 3a Viridian f040a6/Card ee3e8a.yaml' +- !include 'Bag Scenario 3a Viridian f040a6/Deck Rare Encounter Set 2683f5.yaml' +- !include 'Bag Scenario 3a Viridian f040a6/Deck Forest Encounter Set 3d9c83.yaml' +- !include 'Bag Scenario 3a Viridian f040a6/Deck Arkham Woods Locations f4094d.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: f040a6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Scenario 3a Viridian f040a6.ttslua' +LuaScriptState: '{"ml":{"1d11d2":{"lock":false,"pos":{"x":1.1355,"y":1.5979,"z":19.0248},"rot":{"x":359.9201,"y":269.9986,"z":0.0169}},"1ee4cd":{"lock":false,"pos":{"x":-30.2243,"y":1.6372,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":180.0169}},"2683f5":{"lock":false,"pos":{"x":-10.3008,"y":1.7109,"z":8.791},"rot":{"x":359.9201,"y":269.9902,"z":180.0169}},"269c8b":{"lock":false,"pos":{"x":-2.6886,"y":1.6191,"z":-5.0485},"rot":{"x":0.0168,"y":180.0002,"z":0.0803}},"2cd219":{"lock":false,"pos":{"x":-3.132,"y":1.5509,"z":18.9607},"rot":{"x":359.9201,"y":270.01,"z":0.0169}},"3d9c83":{"lock":false,"pos":{"x":-10.3318,"y":1.654,"z":11.7227},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"49fb45":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4413},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"7234af":{"lock":false,"pos":{"x":-33.5238,"y":1.6283,"z":0.0142},"rot":{"x":359.9201,"y":270.0091,"z":0.0169}},"81b23c":{"lock":false,"pos":{"x":-3.9278,"y":1.7107,"z":5.7572},"rot":{"x":359.9197,"y":269.9996,"z":180.0168}},"a09707":{"lock":false,"pos":{"x":1.6953,"y":1.5583,"z":14.2778},"rot":{"x":359.9551,"y":224.9976,"z":0.0687}},"cc49c0":{"lock":false,"pos":{"x":-2.7248,"y":1.6159,"z":0.3733},"rot":{"x":0.0168,"y":180.0003,"z":0.0803}},"ee3e8a":{"lock":false,"pos":{"x":-36.7732,"y":1.6464,"z":-0.03},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"f4094d":{"lock":false,"pos":{"x":-10.4481,"y":1.6694,"z":14.6348},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: 'Scenario 3a: Viridian' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.140729 + posY: 1.28064227 + posZ: 3.70839524 + rotX: 0.0799624547 + rotY: 89.99753 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Card 1ee4cd.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Card 1ee4cd.yaml new file mode 100644 index 000000000..8ba6ce7c6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Card 1ee4cd.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277408 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2774': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782609784/AAFB1D184B52F3AA35333C41F90703B929B262DB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782608843/68722BA5E69C194EA82CE3A37E4EA46D67051DD0/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 1ee4cd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.63724208 + posZ: -0.02999973 + rotX: 359.9201 + rotY: 270.0 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Card ee3e8a.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Card ee3e8a.yaml new file mode 100644 index 000000000..99a5c9a5d --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Card ee3e8a.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277607 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2776': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782609784/AAFB1D184B52F3AA35333C41F90703B929B262DB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782608843/68722BA5E69C194EA82CE3A37E4EA46D67051DD0/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ee3e8a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7732 + posY: 1.64637411 + posZ: -0.0299996827 + rotX: 359.9201 + rotY: 270.000122 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Card Viridian 49fb45.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Card Viridian 49fb45.yaml new file mode 100644 index 000000000..c39d6426e --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Card Viridian 49fb45.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277500 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2775': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782609784/AAFB1D184B52F3AA35333C41F90703B929B262DB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782608843/68722BA5E69C194EA82CE3A37E4EA46D67051DD0/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 49fb45 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Viridian +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600033 + posY: 1.59753942 + posZ: -10.4413013 + rotX: 359.919739 + rotY: 269.999939 + rotZ: 0.0168372244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Custom_Model_Bag Set-aside a09707.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Custom_Model_Bag Set-aside a09707.yaml new file mode 100644 index 000000000..cf2231ea7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Custom_Model_Bag Set-aside a09707.yaml @@ -0,0 +1,102 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- Autoraise: true + CardID: 275206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782608843/68722BA5E69C194EA82CE3A37E4EA46D67051DD0/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4f57d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Horde of Creatures + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.69642115 + posY: 3.67033148 + posZ: 14.2788363 + rotX: 359.948059 + rotY: 224.998062 + rotZ: 0.05830579 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +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: Viridian +DragSelectable: true +GMNotes: '' +GUID: a09707 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Set-aside +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: 1.69530058 + posY: 1.55831814 + posZ: 14.2778025 + rotX: 359.955139 + rotY: 224.997589 + rotZ: 0.0686713159 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Custom_Tile 7234af.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Custom_Tile 7234af.yaml index 7485a61c5..7b58ede4b 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile 7234af.yaml +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Custom_Tile 7234af.yaml @@ -123,12 +123,12 @@ States: Sticky: true Tooltip: true Transform: - posX: -20.311 - posY: 1.60981917 - posZ: -0.0120000737 + posX: -33.5238 + posY: 1.62825131 + posZ: 0.01419981 rotX: 359.9201 - rotY: 270.00946 - rotZ: 0.016885126 + rotY: 270.009125 + rotZ: 0.0168877654 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Deck Act Deck 269c8b.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Deck Act Deck 269c8b.yaml new file mode 100644 index 000000000..27824f1c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Deck Act Deck 269c8b.yaml @@ -0,0 +1,184 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d4739c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.719063 + posY: 1.58959782 + posZ: -5.627365 + rotX: 0.0169019513 + rotY: 180.000275 + rotZ: 0.07982871 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '178402' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.07116914 + posY: 1.63326323 + posZ: -5.68076563 + rotX: 0.0166444685 + rotY: 180.00029 + rotZ: 0.07840182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cb659c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.64489055 + posY: 1.66779411 + posZ: -5.63048553 + rotX: 0.0172657315 + rotY: 180.00032 + rotZ: 0.07963097 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +DeckIDs: +- 266216 +- 266215 +- 266214 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 269c8b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68859982 + posY: 1.61911666 + posZ: -5.0485 + rotX: 0.01683524 + rotY: 180.000244 + rotZ: 0.08025601 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Deck Agenda Deck cc49c0.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Deck Agenda Deck cc49c0.yaml new file mode 100644 index 000000000..bc932675e --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Deck Agenda Deck cc49c0.yaml @@ -0,0 +1,138 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8393e3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.24753 + posY: 1.59168291 + posZ: -0.7847947 + rotX: 0.0168840978 + rotY: 180.0003 + rotZ: 0.0799418241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7ee971 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.42370248 + posY: 1.63553977 + posZ: -1.02401447 + rotX: 0.0170825571 + rotY: 180.000351 + rotZ: 0.07844873 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +DeckIDs: +- 266218 +- 266217 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: cc49c0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72479987 + posY: 1.61594653 + posZ: 0.373300135 + rotX: 0.01683533 + rotY: 180.00029 + rotZ: 0.08025585 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Deck Arkham Woods Locations f4094d.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Deck Arkham Woods Locations f4094d.yaml new file mode 100644 index 000000000..a3b0fc55b --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Deck Arkham Woods Locations f4094d.yaml @@ -0,0 +1,514 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 277719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2729': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Woods. + DragSelectable: true + GMNotes: '' + GUID: 861e20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.2499037 + posY: 1.51167417 + posZ: 19.98616 + rotX: 0.833259165 + rotY: 270.016 + rotZ: 359.841431 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273739 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2737': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Woods. + DragSelectable: true + GMNotes: '' + GUID: 3b4a5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.2501059 + posY: 1.619878 + posZ: 19.9863586 + rotX: 359.920074 + rotY: 269.989868 + rotZ: 0.01663969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2729': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Woods. + DragSelectable: true + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.2492008 + posY: 1.58351755 + posZ: 19.986536 + rotX: 0.763206 + rotY: 269.993164 + rotZ: 359.72876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2729': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Woods. + DragSelectable: true + GMNotes: '' + GUID: e90029 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.2501049 + posY: 1.55553317 + posZ: 19.9863586 + rotX: 0.6481739 + rotY: 269.999023 + rotZ: 359.8659 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277722 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2729': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Woods. + DragSelectable: true + GMNotes: '' + GUID: e8e04b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.2500982 + posY: 1.577733 + posZ: 19.9863682 + rotX: 359.9197 + rotY: 270.000946 + rotZ: 0.0149688069 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273737 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2737': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Woods. + DragSelectable: true + GMNotes: '' + GUID: 9fa651 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.2501068 + posY: 1.600546 + posZ: 19.9863586 + rotX: 359.91983 + rotY: 269.9899 + rotZ: 0.0167659987 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277721 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2729': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Woods. + DragSelectable: true + GMNotes: '' + GUID: 09c961 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.2500935 + posY: 1.62656176 + posZ: 19.98636 + rotX: 1.53378749 + rotY: 270.034027 + rotZ: 359.9899 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2737': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Woods. + DragSelectable: true + GMNotes: '' + GUID: 0223a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.2501059 + posY: 1.61030316 + posZ: 19.9863586 + rotX: 359.920349 + rotY: 269.9899 + rotZ: 0.0171511918 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273738 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2737': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Woods. + DragSelectable: true + GMNotes: '' + GUID: 9b6b06 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.1890373 + posY: 1.48442864 + posZ: 21.4071846 + rotX: 359.920166 + rotY: 269.98465 + rotZ: 0.0170161035 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2729': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: Woods. + DragSelectable: true + GMNotes: '' + GUID: 47ac26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.2500954 + posY: 1.66457915 + posZ: 19.9863682 + rotX: 359.91394 + rotY: 269.9956 + rotZ: 358.065125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2737': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + '2777': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +DeckIDs: +- 277719 +- 273739 +- 277717 +- 277718 +- 277722 +- 273737 +- 277721 +- 273736 +- 273738 +- 277720 +Description: Set 5 at random aside. Remove the rest. +DragSelectable: true +GMNotes: '' +GUID: f4094d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Arkham Woods Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.4481 + posY: 1.66944993 + posZ: 14.6348019 + rotX: 359.9201 + rotY: 269.9996 + rotZ: 0.0168698449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Deck Encounter Deck 81b23c.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Deck Encounter Deck 81b23c.yaml new file mode 100644 index 000000000..41001bfa6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Deck Encounter Deck 81b23c.yaml @@ -0,0 +1,1028 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ec761d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92769623 + posY: 1.8534745 + posZ: 5.757144 + rotX: 359.9198 + rotY: 269.999939 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 90eddd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.00998 + posY: 1.54997945 + posZ: 22.5791912 + rotX: 359.934143 + rotY: 269.999939 + rotZ: 0.0142710032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: 97416f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1407871 + posY: 1.73618925 + posZ: 0.4854573 + rotX: 359.929718 + rotY: 270.4449 + rotZ: 0.0168418 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0c444e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.2681847 + posY: 1.47361088 + posZ: 22.96044 + rotX: 359.920227 + rotY: 269.999878 + rotZ: 0.01630674 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: f5c831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.7678118 + posY: 1.57397664 + posZ: 0.8176176 + rotX: 359.920715 + rotY: 270.4449 + rotZ: 0.0112993112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b5d5a0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92769885 + posY: 1.84430766 + posZ: 5.75714445 + rotX: 359.919769 + rotY: 269.999939 + rotZ: 180.017014 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8f4743 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.06272 + posY: 1.51604092 + posZ: 23.3607616 + rotX: 359.9386 + rotY: 270.0 + rotZ: 0.00347157218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.2488747 + posY: 1.5756532 + posZ: 3.99089 + rotX: 359.920166 + rotY: 270.0116 + rotZ: 0.0165983569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0aad31 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92769718 + posY: 1.81515062 + posZ: 5.757144 + rotX: 359.919769 + rotY: 269.999878 + rotZ: 180.017059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: feb44d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.9806881 + posY: 1.51071775 + posZ: 19.8807468 + rotX: 0.0009870824 + rotY: 270.000183 + rotZ: 359.9113 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0c444e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92770934 + posY: 1.72500551 + posZ: 5.75713444 + rotX: 359.919342 + rotY: 269.999847 + rotZ: 180.018356 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: c70601 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.2212734 + posY: 1.731801 + posZ: 6.48566675 + rotX: 359.914764 + rotY: 269.9969 + rotZ: 0.0135772834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8f4743 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.06272 + posY: 1.51604092 + posZ: 23.3607616 + rotX: 359.9386 + rotY: 270.0 + rotZ: 0.00347157218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 59fc7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.752924 + posY: 1.549553 + posZ: 19.5850677 + rotX: 359.933167 + rotY: 270.000061 + rotZ: 0.0136046614 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 59fc7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.3825378 + posY: 1.47381163 + posZ: 19.62275 + rotX: 359.920715 + rotY: 270.000244 + rotZ: 0.0129251489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '817763' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92769575 + posY: 1.82453048 + posZ: 5.7571435 + rotX: 359.919769 + rotY: 269.9999 + rotZ: 180.017059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: 435a47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.04018 + posY: 1.73764646 + posZ: 4.12767363 + rotX: 359.917725 + rotY: 270.0117 + rotZ: 0.01055241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 95b213 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.927697 + posY: 1.83433485 + posZ: 5.757144 + rotX: 359.919769 + rotY: 269.999939 + rotZ: 180.017044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 90eddd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.00998 + posY: 1.54997945 + posZ: 22.5791912 + rotX: 359.934143 + rotY: 269.999939 + rotZ: 0.0142710032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.4984474 + posY: 1.74187553 + posZ: 9.174725 + rotX: 359.943939 + rotY: 270.000732 + rotZ: 0.0177138373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: 0f4202 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1415644 + posY: 1.57619953 + posZ: 6.47173929 + rotX: 359.920532 + rotY: 269.9967 + rotZ: 0.0143175824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267826 +- 267604 +- 231718 +- 267606 +- 231718 +- 267821 +- 267605 +- 231716 +- 267820 +- 267600 +- 267606 +- 231717 +- 267605 +- 267600 +- 267600 +- 267820 +- 231716 +- 267821 +- 267604 +- 231716 +- 231717 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 81b23c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9277997 + posY: 1.71068037 + posZ: 5.75720072 + rotX: 359.919739 + rotY: 269.999573 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Deck Forest Assets 2cd219.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Deck Forest Assets 2cd219.yaml new file mode 100644 index 000000000..9034a97d2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Deck Forest Assets 2cd219.yaml @@ -0,0 +1,522 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '758550' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mankey + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.8041649 + posY: 3.33958864 + posZ: -5.61646461 + rotX: 359.9201 + rotY: 270.009247 + rotZ: 0.01686123 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9d6b1d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pikachu + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.9746418 + posY: 2.46499729 + posZ: -8.568453 + rotX: 359.920135 + rotY: 270.009369 + rotZ: 0.0168602429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d7ece7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Venonat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.79514 + posY: 2.92251754 + posZ: -11.5775766 + rotX: 359.920135 + rotY: 270.009369 + rotZ: 0.0168604981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 384ac6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vulpix + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.2543049 + posY: 2.92140484 + posZ: -14.5726986 + rotX: 359.920135 + rotY: 270.00946 + rotZ: 0.0168606173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b1beac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scyther + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.3251476 + posY: 2.69740725 + posZ: -4.66743565 + rotX: 359.920135 + rotY: 270.009644 + rotZ: 0.01685975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 570df0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Exeggcute + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.8016453 + posY: 2.47026658 + posZ: -7.358378 + rotX: 359.920135 + rotY: 270.0097 + rotZ: 0.0168606974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271929 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2719': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bbe4d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Metapod (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.47855246 + posY: 2.60437369 + posZ: -3.64933085 + rotX: 359.920135 + rotY: 269.997162 + rotZ: 0.0168782156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2690': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 340a11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kakuna (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.82181168 + posY: 2.8005867 + posZ: -8.383409 + rotX: 359.9153 + rotY: 269.996124 + rotZ: 0.00531186443 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3e28de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Weedle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.7035522 + posY: 2.611235 + posZ: -10.4724226 + rotX: 359.920135 + rotY: 270.0098 + rotZ: 0.0168600138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5862bb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Caterpie + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.3306561 + posY: 2.611096 + posZ: -12.36759 + rotX: 359.9201 + rotY: 270.009979 + rotZ: 0.0168603268 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2690': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2719': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267223 +- 267224 +- 267225 +- 267226 +- 267227 +- 267228 +- 271929 +- 269024 +- 267222 +- 267221 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 2cd219 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Forest Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.132025 + posY: 1.56052983 + posZ: 18.9607124 + rotX: 359.9201 + rotY: 270.009979 + rotZ: 0.01686298 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Deck Forest Encounter Set 3d9c83.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Deck Forest Encounter Set 3d9c83.yaml new file mode 100644 index 000000000..0cdcd4e85 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Deck Forest Encounter Set 3d9c83.yaml @@ -0,0 +1,368 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 30c002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9022007 + posY: 1.59849739 + posZ: 4.84357834 + rotX: 359.921 + rotY: 270.005157 + rotZ: 0.01582711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e0fc2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.55809 + posY: 1.4726795 + posZ: 4.9362216 + rotX: 359.927 + rotY: 270.034546 + rotZ: 359.9593 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7fc688 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.8186016 + posY: 1.54918277 + posZ: 4.41500759 + rotX: 359.9331 + rotY: 269.999756 + rotZ: 0.0139340349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 688f9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.842989 + posY: 1.57823849 + posZ: 5.03023434 + rotX: 359.933228 + rotY: 269.999725 + rotZ: 0.0139535209 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0bda8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.43559 + posY: 1.56892383 + posZ: 4.616964 + rotX: 359.933746 + rotY: 269.999725 + rotZ: 0.0141278161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6bc2d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.2322025 + posY: 1.50317276 + posZ: 4.56675339 + rotX: 0.02361183 + rotY: 270.100281 + rotZ: 0.0265604481 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6d1b9b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.2421932 + posY: 1.58840823 + posZ: 4.525725 + rotX: 359.9342 + rotY: 269.999725 + rotZ: 0.0143275689 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267822 +- 267829 +- 267827 +- 267824 +- 267825 +- 267828 +- 267823 +Description: Randonly pick 4 and shuffle them into the encounter deck. +DragSelectable: true +GMNotes: '' +GUID: 3d9c83 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Forest Encounter Set +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.3318 + posY: 1.65398812 + posZ: 11.7226992 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Deck Rare Assets 1d11d2.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Deck Rare Assets 1d11d2.yaml new file mode 100644 index 000000000..5fcbc72b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Deck Rare Assets 1d11d2.yaml @@ -0,0 +1,1008 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 270859 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2708': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f37da0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Wigglytuff (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.1643677 + posY: 2.29466033 + posZ: -92.286 + rotX: 0.0208087415 + rotY: 269.999939 + rotZ: 0.01677116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269541 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2695': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '290982' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Poliwhirl (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.49959326 + posY: 2.35844254 + posZ: -73.42042 + rotX: 0.020809222 + rotY: 269.998779 + rotZ: 0.0167715568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2704': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1bfcd3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Graveler (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.501009 + posY: 2.41560912 + posZ: -75.69878 + rotX: 0.0208076611 + rotY: 269.996979 + rotZ: 0.01676834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2720': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9ae052 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Raichu (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.4154949 + posY: 2.08696342 + posZ: -97.68598 + rotX: 359.332825 + rotY: 269.998322 + rotZ: 0.0167983361 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2688': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 056b24 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pidgeotto (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9011421 + posY: 1.985616 + posZ: -100.131729 + rotX: 0.02080906 + rotY: 269.998535 + rotZ: 0.0167711265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2685': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 215bb7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Exeggutor (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.5850182 + posY: 2.34497166 + posZ: -93.904686 + rotX: 359.332825 + rotY: 269.99646 + rotZ: 0.0168202147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268925 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2689': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '775582' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kingler (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9140272 + posY: 2.3305428 + posZ: -84.201416 + rotX: 0.0208111536 + rotY: 269.9973 + rotZ: 0.0167711135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2682': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 48a727 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gloom (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.5786 + posY: 2.32966423 + posZ: -67.9397659 + rotX: 0.0208100118 + rotY: 269.996643 + rotZ: 0.0167700313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272757 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2727': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a3cbef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Weepinbell (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.28058 + posY: 2.3290453 + posZ: -69.50996 + rotX: 0.0208090339 + rotY: 269.9997 + rotZ: 0.0167709049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2717': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f66d99 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Golbat (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.10876 + posY: 2.32665467 + posZ: -76.22074 + rotX: 0.0208082721 + rotY: 269.996857 + rotZ: 0.0167695377 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2692': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 68facf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Clefable (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.3180523 + posY: 2.29423618 + posZ: -96.46822 + rotX: 0.02081172 + rotY: 269.9958 + rotZ: 0.0167714711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267753 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 69cfd0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Snorlax + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.514061 + posY: 2.30767155 + posZ: -61.1594658 + rotX: 0.0208094958 + rotY: 269.9975 + rotZ: 0.01677081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267752 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dcb4c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lickitung + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.539299 + posY: 2.54712415 + posZ: -63.35171 + rotX: 0.0208097566 + rotY: 269.9975 + rotZ: 0.01677087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267751 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f49176 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lapras + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.71938 + posY: 2.41880083 + posZ: -64.34725 + rotX: 0.02080993 + rotY: 269.99762 + rotZ: 0.0167701133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267749 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bebe7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dratini + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.2413425 + posY: 2.419513 + posZ: -61.6512146 + rotX: 0.0208100267 + rotY: 269.997772 + rotZ: 0.0167699959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267750 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bcdb4e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kanaskhan + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.81132 + posY: 2.54641271 + posZ: -68.02298 + rotX: 0.0208092052 + rotY: 269.997742 + rotZ: 0.0167703629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267748 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b453d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ditto + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.44265 + posY: 2.41933084 + posZ: -62.3478355 + rotX: 0.0208092127 + rotY: 269.997864 + rotZ: 0.0167702921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267747 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 86c451 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Chansey + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.1278152 + posY: 2.41889048 + posZ: -63.9618454 + rotX: 0.0208098348 + rotY: 269.9979 + rotZ: 0.0167699363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267754 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c3190e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tauros + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1232424 + posY: 2.48485446 + posZ: -16.02921 + rotX: 359.920135 + rotY: 269.998535 + rotZ: 0.0168761462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2682': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2685': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2688': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2689': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2692': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2695': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2704': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2708': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2717': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2720': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2727': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 270859 +- 269541 +- 270419 +- 272044 +- 268840 +- 268514 +- 268925 +- 268216 +- 272757 +- 271717 +- 269205 +- 267753 +- 267752 +- 267751 +- 267749 +- 267750 +- 267748 +- 267747 +- 267754 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 1d11d2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Rare Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.13549972 + posY: 1.5979259 + posZ: 19.0248013 + rotX: 359.920135 + rotY: 269.9985 + rotZ: 0.0168824177 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Deck Rare Encounter Set 2683f5.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Deck Rare Encounter Set 2683f5.yaml new file mode 100644 index 000000000..7e2cff86c --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3a Viridian f040a6/Deck Rare Encounter Set 2683f5.yaml @@ -0,0 +1,920 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267862 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ab32cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.34694 + posY: 1.56640959 + posZ: -4.3452816 + rotX: 359.933868 + rotY: 269.999939 + rotZ: 0.0127378786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267865 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4945ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7495613 + posY: 1.50693226 + posZ: -4.51910925 + rotX: 359.9121 + rotY: 269.999939 + rotZ: 0.0039470233 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267857 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2b360a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3249359 + posY: 1.61457539 + posZ: -4.38055563 + rotX: 359.933716 + rotY: 269.9999 + rotZ: 0.0130347963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267852 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f120d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9491539 + posY: 1.66192007 + posZ: -4.450786 + rotX: 359.933044 + rotY: 269.999878 + rotZ: 0.014011329 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267849 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '126268' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3703651 + posY: 1.69154 + posZ: -4.437929 + rotX: 359.933441 + rotY: 269.999878 + rotZ: 0.0134003581 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267858 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6304b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3074913 + posY: 1.60498524 + posZ: -3.97525263 + rotX: 359.935181 + rotY: 269.999939 + rotZ: 0.0096496 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267864 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a2b46e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.8294334 + posY: 1.54642951 + posZ: -4.882814 + rotX: 359.9331 + rotY: 269.999939 + rotZ: 0.01384164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267853 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e29a11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3690414 + posY: 1.653022 + posZ: -4.46332932 + rotX: 359.9335 + rotY: 269.999878 + rotZ: 0.013344436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267866 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d10f76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7763824 + posY: 1.70056987 + posZ: -4.83039951 + rotX: 359.933 + rotY: 270.0 + rotZ: 180.014435 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267850 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e743bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.5542374 + posY: 1.681409 + posZ: -5.39828348 + rotX: 359.933167 + rotY: 269.999878 + rotZ: 0.01335297 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267855 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0d9018 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.53936 + posY: 1.63361788 + posZ: -4.06025 + rotX: 359.934235 + rotY: 269.999878 + rotZ: 0.01124593 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267860 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 71aac2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.81522 + posY: 1.58503914 + posZ: -4.82249069 + rotX: 359.9325 + rotY: 269.999939 + rotZ: 0.01398095 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267861 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2f3e94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7288742 + posY: 1.57552576 + posZ: -4.707577 + rotX: 359.932617 + rotY: 269.999939 + rotZ: 0.0138330935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267863 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 527ce6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9577055 + posY: 1.55732691 + posZ: -3.599544 + rotX: 359.930878 + rotY: 269.999939 + rotZ: 359.9833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267856 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c89b11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1950531 + posY: 1.62436426 + posZ: -4.22008848 + rotX: 359.934143 + rotY: 269.999878 + rotZ: 0.0122695034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267848 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8275f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4778252 + posY: 1.70083308 + posZ: -5.110941 + rotX: 359.93396 + rotY: 269.999878 + rotZ: 0.0146708526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267859 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: aeb7fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1070385 + posY: 1.59544921 + posZ: -4.78942537 + rotX: 359.934357 + rotY: 269.999939 + rotZ: 0.0141529925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267854 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 04fbfc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4184074 + posY: 1.643317 + posZ: -4.56822348 + rotX: 359.933441 + rotY: 269.999878 + rotZ: 0.01348167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267851 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9a90a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.8511982 + posY: 1.6716491 + posZ: -4.70562458 + rotX: 359.932465 + rotY: 269.999878 + rotZ: 0.0139912358 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267862 +- 267865 +- 267857 +- 267852 +- 267849 +- 267858 +- 267864 +- 267853 +- 267866 +- 267850 +- 267855 +- 267860 +- 267861 +- 267863 +- 267856 +- 267848 +- 267859 +- 267854 +- 267851 +Description: Randonly pick 2 and shuffle them into the encounter deck. +DragSelectable: true +GMNotes: '' +GUID: 2683f5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Rare Encounter Set +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.3008 + posY: 1.71085012 + posZ: 8.791 + rotX: 359.9201 + rotY: 269.9902 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156.ttslua b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156.ttslua rename to unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd.ttslua diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd.yaml new file mode 100644 index 000000000..9a4d86d09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd.yaml @@ -0,0 +1,48 @@ +Autoraise: true +ColorDiffuse: + b: 0.7019608 + g: 0.0 + r: 0.347064018 +ContainedObjects: +- !include 'Bag Scenario 3b Deep Secrets 3da6dd/Custom_Model_Bag Set-aside e7deb8.yaml' +- !include 'Bag Scenario 3b Deep Secrets 3da6dd/Deck Rare Assets 3586bd.yaml' +- !include 'Bag Scenario 3b Deep Secrets 3da6dd/Deck Cave Assets b001d0.yaml' +- !include 'Bag Scenario 3b Deep Secrets 3da6dd/DeckCustom Cave Encounter Set 1982cb.yaml' +- !include 'Bag Scenario 3b Deep Secrets 3da6dd/Deck Rare Encounter Set 102040.yaml' +- !include 'Bag Scenario 3b Deep Secrets 3da6dd/DeckCustom Exploration Deck a7c9d8.yaml' +- !include 'Bag Scenario 3b Deep Secrets 3da6dd/Deck Encounter Deck 12c43a.yaml' +- !include 'Bag Scenario 3b Deep Secrets 3da6dd/Deck Agenda Deck d29556.yaml' +- !include 'Bag Scenario 3b Deep Secrets 3da6dd/Deck Act Deck 8a37eb.yaml' +- !include 'Bag Scenario 3b Deep Secrets 3da6dd/Card Deep Secrets 990c33.yaml' +- !include 'Bag Scenario 3b Deep Secrets 3da6dd/Card c7b63c.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 3da6dd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Scenario 3b Deep Secrets 3da6dd.ttslua' +LuaScriptState: '{"ml":{"102040":{"lock":false,"pos":{"x":-11.043,"y":1.7124,"z":10.6412},"rot":{"x":359.9201,"y":269.9997,"z":180.0169}},"12c43a":{"lock":false,"pos":{"x":-3.9278,"y":1.7203,"z":5.7572},"rot":{"x":359.9197,"y":269.9998,"z":180.0168}},"1982cb":{"lock":false,"pos":{"x":-11.0732,"y":1.6555,"z":13.4358},"rot":{"x":359.9201,"y":269.9995,"z":180.0169}},"3586bd":{"lock":false,"pos":{"x":0.5097,"y":1.5988,"z":18.9812},"rot":{"x":359.9201,"y":269.9984,"z":0.0169}},"8a37eb":{"lock":false,"pos":{"x":-2.6886,"y":1.6191,"z":-5.0485},"rot":{"x":0.0168,"y":180.0003,"z":0.0803}},"990c33":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"a7c9d8":{"lock":false,"pos":{"x":-9.6186,"y":1.6418,"z":6.2904},"rot":{"x":359.9201,"y":270.0006,"z":180.0169}},"b001d0":{"lock":false,"pos":{"x":-3.4185,"y":1.5609,"z":18.9899},"rot":{"x":359.9201,"y":269.9995,"z":0.0169}},"c7b63c":{"lock":false,"pos":{"x":-30.2243,"y":1.6372,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":180.0169}},"d29556":{"lock":false,"pos":{"x":-2.7248,"y":1.6159,"z":0.3733},"rot":{"x":0.0168,"y":180.0004,"z":0.0803}},"e7deb8":{"lock":false,"pos":{"x":1.6953,"y":1.5583,"z":14.2778},"rot":{"x":359.9551,"y":224.9977,"z":0.0687}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: 'Scenario 3b: Deep Secrets' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.26213 + posY: 1.2781992 + posZ: -4.00931263 + rotX: 0.0799598545 + rotY: 89.9979 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Card c7b63c.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Card c7b63c.yaml new file mode 100644 index 000000000..344709ee6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Card c7b63c.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277606 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2776': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1495712136742900592/70D730831BAFEEC7AA8146808FC004A2CE10AE87/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782611033/9B1CFF754EA08D0D695EB4B2DEA28017AF454D25/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c7b63c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.63724208 + posZ: -0.0299998987 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Card Deep Secrets 990c33.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Card Deep Secrets 990c33.yaml new file mode 100644 index 000000000..24dc2cc6c --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Card Deep Secrets 990c33.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277400 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2774': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1495712136742900592/70D730831BAFEEC7AA8146808FC004A2CE10AE87/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782611033/9B1CFF754EA08D0D695EB4B2DEA28017AF454D25/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 990c33 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Deep Secrets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600057 + posY: 1.59753942 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 269.999756 + rotZ: 0.01683761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Custom_Model_Bag Set-aside e7deb8.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Custom_Model_Bag Set-aside e7deb8.yaml new file mode 100644 index 000000000..27f87b671 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Custom_Model_Bag Set-aside e7deb8.yaml @@ -0,0 +1,57 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +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: Deep Secrets +DragSelectable: true +GMNotes: '' +GUID: e7deb8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Set-aside +Number: 0 +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: 1.69530046 + posY: 1.55831838 + posZ: 14.2778015 + rotX: 359.955139 + rotY: 224.997665 + rotZ: 0.06867226 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Deck Act Deck 8a37eb.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Deck Act Deck 8a37eb.yaml new file mode 100644 index 000000000..21825447d --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Deck Act Deck 8a37eb.yaml @@ -0,0 +1,184 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3d96bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.65023589 + posY: 1.59135747 + posZ: -4.75740147 + rotX: 0.0168425515 + rotY: 180.000351 + rotZ: 0.08027758 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 086ddb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29927969 + posY: 1.63608086 + posZ: -4.431626 + rotX: 0.0152067179 + rotY: 180.000381 + rotZ: 0.0767356455 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c5ed9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.384483 + posY: 1.66992259 + posZ: -4.408577 + rotX: 0.01657756 + rotY: 180.0004 + rotZ: 0.0796527341 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +DeckIDs: +- 266221 +- 266220 +- 266219 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8a37eb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68859982 + posY: 1.61911666 + posZ: -5.0485 + rotX: 0.0168351922 + rotY: 180.00032 + rotZ: 0.08025601 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Deck Agenda Deck d29556.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Deck Agenda Deck d29556.yaml new file mode 100644 index 000000000..3b8424f2c --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Deck Agenda Deck d29556.yaml @@ -0,0 +1,138 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4ed829 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.99832749 + posY: 1.59071875 + posZ: -0.522687435 + rotX: 0.01680732 + rotY: 180.0004 + rotZ: 0.08059645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9e7fbf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.091623 + posY: 1.62710989 + posZ: -0.525755167 + rotX: 0.0137981875 + rotY: 180.000366 + rotZ: 0.07258568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +DeckIDs: +- 266223 +- 266222 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d29556 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72479987 + posY: 1.61594653 + posZ: 0.373300165 + rotX: 0.0168351661 + rotY: 180.000351 + rotZ: 0.0802558362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Deck Cave Assets b001d0.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Deck Cave Assets b001d0.yaml new file mode 100644 index 000000000..1303e9650 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Deck Cave Assets b001d0.yaml @@ -0,0 +1,506 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 276000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 28ad19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dome Fossil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.43021 + posY: 3.33734965 + posZ: 1.117001 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2d3f57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Helix Fossil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.480196 + posY: 3.33802247 + posZ: -0.3717696 + rotX: 359.920135 + rotY: 270.000183 + rotZ: 0.01687269 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2497cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Clefairy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.2599373 + posY: 3.33678246 + posZ: -1.96771 + rotX: 359.920135 + rotY: 269.9997 + rotZ: 0.0168736074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c2a365 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Diglett + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.5718117 + posY: 3.33679867 + posZ: -4.944156 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168743674 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276005 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bf95cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Electabuzz + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.3659534 + posY: 2.63316679 + posZ: 3.024432 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.01687498 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276006 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c68f6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Geodude + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.0426083 + posY: 2.63131785 + posZ: 0.1585164 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.0168749578 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4c1091 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Magmar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.3674431 + posY: 2.63160038 + posZ: -1.18842065 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.0168737378 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 30c0ed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Paras + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.01258 + posY: 2.69782448 + posZ: -3.52421618 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168742836 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e85f66 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rhyhorn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.2396679 + posY: 2.69764948 + posZ: -3.85343742 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168733541 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fe9c8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Zubat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.312952 + posY: 2.60885954 + posZ: 0.362745047 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168739017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 276000 +- 276001 +- 276003 +- 276004 +- 276005 +- 276006 +- 276007 +- 276008 +- 276009 +- 276002 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: b001d0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Cave Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.41850019 + posY: 1.56093788 + posZ: 18.9899025 + rotX: 359.920135 + rotY: 269.999542 + rotZ: 0.0168775488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Deck Encounter Deck 12c43a.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Deck Encounter Deck 12c43a.yaml new file mode 100644 index 000000000..777c85529 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Deck Encounter Deck 12c43a.yaml @@ -0,0 +1,1120 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4fd680 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92769718 + posY: 1.87292159 + posZ: 5.757144 + rotX: 359.9198 + rotY: 269.9995 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7d6826 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92769814 + posY: 1.86346436 + posZ: 5.757144 + rotX: 359.919769 + rotY: 269.999664 + rotZ: 180.017014 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d4f223 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92769742 + posY: 1.8536967 + posZ: 5.757144 + rotX: 359.919769 + rotY: 269.9997 + rotZ: 180.017014 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 636d82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.927699 + posY: 1.844378 + posZ: 5.75714445 + rotX: 359.919769 + rotY: 269.999725 + rotZ: 180.017014 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Omen. + DragSelectable: true + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.6701107 + posY: 1.57669926 + posZ: 5.718232 + rotX: 359.920654 + rotY: 270.001251 + rotZ: 0.0133364461 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Omen. + DragSelectable: true + GMNotes: '' + GUID: 8af879 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.808506 + posY: 1.73237514 + posZ: 5.64793253 + rotX: 359.9293 + rotY: 270.001251 + rotZ: 0.01372296 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Omen. + DragSelectable: true + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.7747707 + posY: 1.753205 + posZ: 5.66288233 + rotX: 359.921753 + rotY: 270.001221 + rotZ: 0.0162846111 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: f5c831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.7678118 + posY: 1.57397664 + posZ: 0.8176176 + rotX: 359.920715 + rotY: 270.4449 + rotZ: 0.0112993112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: 97416f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1407871 + posY: 1.73618925 + posZ: 0.4854573 + rotX: 359.929718 + rotY: 270.4449 + rotZ: 0.0168418 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: 0f4202 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1415644 + posY: 1.57619953 + posZ: 6.47173929 + rotX: 359.920532 + rotY: 269.9967 + rotZ: 0.0143175824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: c70601 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.2212734 + posY: 1.731801 + posZ: 6.48566675 + rotX: 359.914764 + rotY: 269.9969 + rotZ: 0.0135772834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.2488747 + posY: 1.5756532 + posZ: 3.99089 + rotX: 359.920166 + rotY: 270.0116 + rotZ: 0.0165983569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: 435a47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.04018 + posY: 1.73764646 + posZ: 4.12767363 + rotX: 359.917725 + rotY: 270.0117 + rotZ: 0.01055241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.4984474 + posY: 1.74187553 + posZ: 9.174725 + rotX: 359.943939 + rotY: 270.000732 + rotZ: 0.0177138373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 59fc7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.3825378 + posY: 1.47381163 + posZ: 19.62275 + rotX: 359.920715 + rotY: 270.000244 + rotZ: 0.0129251489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: feb44d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.9806881 + posY: 1.51071775 + posZ: 19.8807468 + rotX: 0.0009870824 + rotY: 270.000183 + rotZ: 359.9113 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 59fc7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.752924 + posY: 1.549553 + posZ: 19.5850677 + rotX: 359.933167 + rotY: 270.000061 + rotZ: 0.0136046614 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0c444e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.2681847 + posY: 1.47361088 + posZ: 22.96044 + rotX: 359.920227 + rotY: 269.999878 + rotZ: 0.01630674 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8f4743 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.06272 + posY: 1.51604092 + posZ: 23.3607616 + rotX: 359.9386 + rotY: 270.0 + rotZ: 0.00347157218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 90eddd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.00998 + posY: 1.54997945 + posZ: 22.5791912 + rotX: 359.934143 + rotY: 269.999939 + rotZ: 0.0142710032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0c444e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.2681847 + posY: 1.47361088 + posZ: 22.96044 + rotX: 359.920227 + rotY: 269.999878 + rotZ: 0.01630674 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8f4743 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.06272 + posY: 1.51604092 + posZ: 23.3607616 + rotX: 359.9386 + rotY: 270.0 + rotZ: 0.00347157218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 90eddd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.00998 + posY: 1.54997945 + posZ: 22.5791912 + rotX: 359.934143 + rotY: 269.999939 + rotZ: 0.0142710032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267808 +- 267800 +- 267800 +- 267800 +- 231719 +- 231719 +- 231719 +- 231718 +- 231718 +- 231717 +- 231717 +- 231716 +- 231716 +- 231716 +- 267600 +- 267600 +- 267600 +- 267606 +- 267605 +- 267604 +- 267606 +- 267605 +- 267604 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 12c43a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92780018 + posY: 1.72030854 + posZ: 5.75720072 + rotX: 359.919739 + rotY: 269.999817 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Deck Rare Assets 3586bd.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Deck Rare Assets 3586bd.yaml new file mode 100644 index 000000000..ccca58b37 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Deck Rare Assets 3586bd.yaml @@ -0,0 +1,1008 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 270859 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2708': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f37da0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Wigglytuff (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.1643677 + posY: 2.29466033 + posZ: -92.286 + rotX: 0.0208087415 + rotY: 269.999939 + rotZ: 0.01677116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269541 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2695': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '290982' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Poliwhirl (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.49959326 + posY: 2.35844254 + posZ: -73.42042 + rotX: 0.020809222 + rotY: 269.998779 + rotZ: 0.0167715568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2704': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1bfcd3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Graveler (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.501009 + posY: 2.41560912 + posZ: -75.69878 + rotX: 0.0208076611 + rotY: 269.996979 + rotZ: 0.01676834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2720': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9ae052 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Raichu (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.4154949 + posY: 2.08696342 + posZ: -97.68598 + rotX: 359.332825 + rotY: 269.998322 + rotZ: 0.0167983361 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2688': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 056b24 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pidgeotto (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9011421 + posY: 1.985616 + posZ: -100.131729 + rotX: 0.02080906 + rotY: 269.998535 + rotZ: 0.0167711265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2685': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 215bb7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Exeggutor (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.5850182 + posY: 2.34497166 + posZ: -93.904686 + rotX: 359.332825 + rotY: 269.99646 + rotZ: 0.0168202147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268925 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2689': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '775582' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kingler (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9140272 + posY: 2.3305428 + posZ: -84.201416 + rotX: 0.0208111536 + rotY: 269.9973 + rotZ: 0.0167711135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2682': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 48a727 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gloom (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.5786 + posY: 2.32966423 + posZ: -67.9397659 + rotX: 0.0208100118 + rotY: 269.996643 + rotZ: 0.0167700313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272757 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2727': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a3cbef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Weepinbell (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.28058 + posY: 2.3290453 + posZ: -69.50996 + rotX: 0.0208090339 + rotY: 269.9997 + rotZ: 0.0167709049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2717': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f66d99 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Golbat (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.10876 + posY: 2.32665467 + posZ: -76.22074 + rotX: 0.0208082721 + rotY: 269.996857 + rotZ: 0.0167695377 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2692': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 68facf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Clefable (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.3180523 + posY: 2.29423618 + posZ: -96.46822 + rotX: 0.02081172 + rotY: 269.9958 + rotZ: 0.0167714711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267753 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 69cfd0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Snorlax + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.514061 + posY: 2.30767155 + posZ: -61.1594658 + rotX: 0.0208094958 + rotY: 269.9975 + rotZ: 0.01677081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267752 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dcb4c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lickitung + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.539299 + posY: 2.54712415 + posZ: -63.35171 + rotX: 0.0208097566 + rotY: 269.9975 + rotZ: 0.01677087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267751 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f49176 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lapras + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.71938 + posY: 2.41880083 + posZ: -64.34725 + rotX: 0.02080993 + rotY: 269.99762 + rotZ: 0.0167701133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267749 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bebe7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dratini + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.2413425 + posY: 2.419513 + posZ: -61.6512146 + rotX: 0.0208100267 + rotY: 269.997772 + rotZ: 0.0167699959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267750 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bcdb4e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kanaskhan + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.81132 + posY: 2.54641271 + posZ: -68.02298 + rotX: 0.0208092052 + rotY: 269.997742 + rotZ: 0.0167703629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267748 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b453d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ditto + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.44265 + posY: 2.41933084 + posZ: -62.3478355 + rotX: 0.0208092127 + rotY: 269.997864 + rotZ: 0.0167702921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267747 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 86c451 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Chansey + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.1278152 + posY: 2.41889048 + posZ: -63.9618454 + rotX: 0.0208098348 + rotY: 269.9979 + rotZ: 0.0167699363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267754 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c3190e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tauros + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1232424 + posY: 2.48485446 + posZ: -16.02921 + rotX: 359.920135 + rotY: 269.998535 + rotZ: 0.0168761462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2682': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2685': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2688': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2689': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2692': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2695': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2704': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2708': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2717': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2720': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2727': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 270859 +- 269541 +- 270419 +- 272044 +- 268840 +- 268514 +- 268925 +- 268216 +- 272757 +- 271717 +- 269205 +- 267753 +- 267752 +- 267751 +- 267749 +- 267750 +- 267748 +- 267747 +- 267754 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 3586bd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Rare Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.5097003 + posY: 1.59878552 + posZ: 18.9812 + rotX: 359.920135 + rotY: 269.998352 + rotZ: 0.0168819465 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Deck Rare Encounter Set 102040.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Deck Rare Encounter Set 102040.yaml new file mode 100644 index 000000000..619d732e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/Deck Rare Encounter Set 102040.yaml @@ -0,0 +1,920 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267866 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d10f76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7763824 + posY: 1.70056987 + posZ: -4.83039951 + rotX: 359.933 + rotY: 270.0 + rotZ: 180.014435 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267855 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0d9018 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.53936 + posY: 1.63361788 + posZ: -4.06025 + rotX: 359.934235 + rotY: 269.999878 + rotZ: 0.01124593 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267861 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2f3e94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7288742 + posY: 1.57552576 + posZ: -4.707577 + rotX: 359.932617 + rotY: 269.999939 + rotZ: 0.0138330935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267850 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e743bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.5542374 + posY: 1.681409 + posZ: -5.39828348 + rotX: 359.933167 + rotY: 269.999878 + rotZ: 0.01335297 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267848 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8275f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4778252 + posY: 1.70083308 + posZ: -5.110941 + rotX: 359.93396 + rotY: 269.999878 + rotZ: 0.0146708526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267863 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 527ce6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9577055 + posY: 1.55732691 + posZ: -3.599544 + rotX: 359.930878 + rotY: 269.999939 + rotZ: 359.9833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267853 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e29a11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3690414 + posY: 1.653022 + posZ: -4.46332932 + rotX: 359.9335 + rotY: 269.999878 + rotZ: 0.013344436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267857 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2b360a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3249359 + posY: 1.61457539 + posZ: -4.38055563 + rotX: 359.933716 + rotY: 269.9999 + rotZ: 0.0130347963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267860 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 71aac2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.81522 + posY: 1.58503914 + posZ: -4.82249069 + rotX: 359.9325 + rotY: 269.999939 + rotZ: 0.01398095 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267852 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f120d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9491539 + posY: 1.66192007 + posZ: -4.450786 + rotX: 359.933044 + rotY: 269.999878 + rotZ: 0.014011329 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267862 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ab32cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.34694 + posY: 1.56640959 + posZ: -4.3452816 + rotX: 359.933868 + rotY: 269.999939 + rotZ: 0.0127378786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267854 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 04fbfc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4184074 + posY: 1.643317 + posZ: -4.56822348 + rotX: 359.933441 + rotY: 269.999878 + rotZ: 0.01348167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267864 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a2b46e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.8294334 + posY: 1.54642951 + posZ: -4.882814 + rotX: 359.9331 + rotY: 269.999939 + rotZ: 0.01384164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267859 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: aeb7fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1070385 + posY: 1.59544921 + posZ: -4.78942537 + rotX: 359.934357 + rotY: 269.999939 + rotZ: 0.0141529925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267856 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c89b11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1950531 + posY: 1.62436426 + posZ: -4.22008848 + rotX: 359.934143 + rotY: 269.999878 + rotZ: 0.0122695034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267851 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9a90a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.8511982 + posY: 1.6716491 + posZ: -4.70562458 + rotX: 359.932465 + rotY: 269.999878 + rotZ: 0.0139912358 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267858 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6304b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3074913 + posY: 1.60498524 + posZ: -3.97525263 + rotX: 359.935181 + rotY: 269.999939 + rotZ: 0.0096496 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267849 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '126268' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3703651 + posY: 1.69154 + posZ: -4.437929 + rotX: 359.933441 + rotY: 269.999878 + rotZ: 0.0134003581 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267865 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4945ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7495613 + posY: 1.50693226 + posZ: -4.51910925 + rotX: 359.9121 + rotY: 269.999939 + rotZ: 0.0039470233 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267866 +- 267855 +- 267861 +- 267850 +- 267848 +- 267863 +- 267853 +- 267857 +- 267860 +- 267852 +- 267862 +- 267854 +- 267864 +- 267859 +- 267856 +- 267851 +- 267858 +- 267849 +- 267865 +Description: Randomly pick 2 and shuffle them into the encounter deck. +DragSelectable: true +GMNotes: '' +GUID: '102040' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Rare Encounter Set +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.0429993 + posY: 1.71243 + posZ: 10.641202 + rotX: 359.9201 + rotY: 269.999725 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/DeckCustom Cave Encounter Set 1982cb.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/DeckCustom Cave Encounter Set 1982cb.yaml new file mode 100644 index 000000000..f4652fddd --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/DeckCustom Cave Encounter Set 1982cb.yaml @@ -0,0 +1,305 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c8a0ee + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1b92ac + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e32ba3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1ab38a + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f5d7c8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9b882f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7ab4ad + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267805 +- 267802 +- 267801 +- 267804 +- 267806 +- 267803 +- 267807 +Description: Randomly pick 5 and shuffle them into the encounter deck. +DragSelectable: true +GMNotes: '' +GUID: 1982cb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: DeckCustom +Nickname: Cave Encounter Set +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.0731983 + posY: 1.6555264 + posZ: 13.4358015 + rotX: 359.9201 + rotY: 269.999542 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/DeckCustom Exploration Deck a7c9d8.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/DeckCustom Exploration Deck a7c9d8.yaml new file mode 100644 index 000000000..a81aa3159 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 3b Deep Secrets 3da6dd/DeckCustom Exploration Deck a7c9d8.yaml @@ -0,0 +1,231 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 277507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 00c8e4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.618601 + posY: 1.641766 + posZ: 6.2904 + rotX: 359.9201 + rotY: 270.000061 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277508 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ec95ba + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.618601 + posY: 1.641766 + posZ: 6.2904 + rotX: 359.9201 + rotY: 270.000061 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a4788e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.618601 + posY: 1.641766 + posZ: 6.2904 + rotX: 359.9201 + rotY: 270.000061 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8ecd86 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.618601 + posY: 1.641766 + posZ: 6.2904 + rotX: 359.9201 + rotY: 270.000061 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 158a3f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.618601 + posY: 1.641766 + posZ: 6.2904 + rotX: 359.9201 + rotY: 270.000061 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2775': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782611033/9B1CFF754EA08D0D695EB4B2DEA28017AF454D25/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 277507 +- 277508 +- 277509 +- 277510 +- 277511 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: a7c9d8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: DeckCustom +Nickname: Exploration Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.6186 + posY: 1.641766 + posZ: 6.29039955 + rotX: 359.9201 + rotY: 270.000641 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e.ttslua b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e.ttslua rename to unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102.ttslua diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102.yaml new file mode 100644 index 000000000..9882b5e49 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102.yaml @@ -0,0 +1,65 @@ +Autoraise: true +ColorDiffuse: + b: 0.7019608 + g: 0.0 + r: 0.347064 +ContainedObjects: +- !include 'Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 15260b.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 1cd119.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/DeckCustom Wild Summons Deck 21f22b.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 340b8b.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Deck Agenda Deck 39c6b6.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 3a32ba.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Deck Pokemon Assets 49b3a1.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Deck Act Deck 4a1b71.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 4cd73a.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Card 525ba8.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Card The Epicenter 54300b.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 56f552.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 5aab6a.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Card 5d5a1e.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Card 5e759c.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Deck Encounter Deck 62abb5.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 6defd5.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 78e402.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Deck Rare Encounter Set 79798f.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Card 7b196d.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Custom_Model_Bag Set-aside 91f21a.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 984ffd.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Card 9c0754.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Card a09cfc.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Custom_Tile b50ab5.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Custom_Tile cdcd5b.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Custom_Tile ded317.yaml' +- !include 'Bag Scenario 4 The Unconjuring 52d102/Card The Unconjuring f9e20f.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 52d102 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Scenario 4 The Unconjuring 52d102.ttslua' +LuaScriptState: '{"ml":{"15260b":{"lock":false,"pos":{"x":-33.2189,"y":1.6301,"z":7.5936},"rot":{"x":359.9201,"y":270.0091,"z":0.0169}},"1cd119":{"lock":false,"pos":{"x":-26.7454,"y":1.6176,"z":-3.9109},"rot":{"x":0.0446,"y":44.9999,"z":359.9316}},"21f22b":{"lock":false,"pos":{"x":-9.6403,"y":1.8974,"z":7.8554},"rot":{"x":359.9201,"y":269.999,"z":180.0169}},"340b8b":{"lock":false,"pos":{"x":-33.6206,"y":1.6272,"z":-3.8705},"rot":{"x":0.0684,"y":135.0001,"z":0.0446}},"39c6b6":{"lock":false,"pos":{"x":-2.7248,"y":1.6159,"z":0.3733},"rot":{"x":0.0168,"y":180.0116,"z":0.0803}},"3a32ba":{"lock":false,"pos":{"x":-46.6249,"y":1.6465,"z":-0.1413},"rot":{"x":359.9201,"y":270.0105,"z":0.0169}},"49b3a1":{"lock":false,"pos":{"x":-2.8247,"y":1.8394,"z":19.2862},"rot":{"x":359.9201,"y":269.9983,"z":0.0169}},"4a1b71":{"lock":false,"pos":{"x":-2.6886,"y":1.6191,"z":-5.0485},"rot":{"x":0.0168,"y":179.9962,"z":0.0803}},"4cd73a":{"lock":false,"pos":{"x":-40.111,"y":1.6363,"z":-3.7393},"rot":{"x":0.0684,"y":135,"z":0.0446}},"525ba8":{"lock":false,"pos":{"x":-43.3701,"y":1.6556,"z":-0.03},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"54300b":{"lock":false,"pos":{"x":-23.6765,"y":1.6281,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"56f552":{"lock":false,"pos":{"x":-20.6285,"y":1.6103,"z":-0.0497},"rot":{"x":359.9201,"y":270.0096,"z":0.0169}},"5aab6a":{"lock":false,"pos":{"x":-40.4113,"y":1.639,"z":3.895},"rot":{"x":0.0446,"y":45.0011,"z":359.9316}},"5d5a1e":{"lock":false,"pos":{"x":-36.7732,"y":1.6464,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"5e759c":{"lock":false,"pos":{"x":-30.2242,"y":1.6395,"z":7.57},"rot":{"x":359.9201,"y":270,"z":0.0169}},"62abb5":{"lock":false,"pos":{"x":-3.9279,"y":1.6914,"z":5.757},"rot":{"x":359.9197,"y":269.9965,"z":180.0168}},"6defd5":{"lock":false,"pos":{"x":-36.7732,"y":1.6339,"z":3.86},"rot":{"x":359.9831,"y":0.0011,"z":359.9201}},"78e402":{"lock":false,"pos":{"x":-27.265,"y":1.6208,"z":4.2132},"rot":{"x":0.0684,"y":134.9998,"z":0.0446}},"79798f":{"lock":false,"pos":{"x":-12.127,"y":1.7147,"z":13.1247},"rot":{"x":359.9201,"y":269.9998,"z":180.0169}},"7b196d":{"lock":false,"pos":{"x":-36.7732,"y":1.6486,"z":7.57},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"91f21a":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.2788},"rot":{"x":359.9553,"y":224.8442,"z":0.0688}},"984ffd":{"lock":false,"pos":{"x":-33.3711,"y":1.6291,"z":3.761},"rot":{"x":0.0446,"y":44.9999,"z":359.9316}},"9c0754":{"lock":false,"pos":{"x":-36.7733,"y":1.6441,"z":-7.7},"rot":{"x":359.9201,"y":270.0076,"z":0.0169}},"a09cfc":{"lock":false,"pos":{"x":-30.2243,"y":1.635,"z":-7.7},"rot":{"x":359.9201,"y":270,"z":0.0169}},"b50ab5":{"lock":false,"pos":{"x":-36.7731,"y":1.6317,"z":-3.83},"rot":{"x":359.9831,"y":0.0003,"z":359.92}},"cdcd5b":{"lock":false,"pos":{"x":-33.2155,"y":1.6255,"z":-7.7976},"rot":{"x":359.9201,"y":270.0099,"z":0.0169}},"ded317":{"lock":false,"pos":{"x":-30.2242,"y":1.6236,"z":-0.0301},"rot":{"x":359.9831,"y":0.0004,"z":359.9201}},"f9e20f":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4467},"rot":{"x":359.9197,"y":269.9996,"z":0.0168}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: 'Scenario 4: The Unconjuring' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2132149 + posY: 1.27584684 + posZ: -12.2319288 + rotX: 0.07996395 + rotY: 89.99458 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Card 525ba8.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Card 525ba8.yaml new file mode 100644 index 000000000..2e625814b --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Card 525ba8.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 273011 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2730': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1475442973873305143/586B6E1D49CC1517A79E73DC44F3E0A4FE409A10/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1475442973873303356/2A2CC24265654B6731CBE06DC8B52C7E52BAF4DB/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 525ba8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -43.3701019 + posY: 1.655573 + posZ: -0.0299998354 + rotX: 359.9201 + rotY: 270.0002 + rotZ: 0.0168716758 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Card 5d5a1e.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Card 5d5a1e.yaml new file mode 100644 index 000000000..da3173cc1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Card 5d5a1e.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 273007 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2730': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1475442973873305143/586B6E1D49CC1517A79E73DC44F3E0A4FE409A10/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1475442973873303356/2A2CC24265654B6731CBE06DC8B52C7E52BAF4DB/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 5d5a1e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7732 + posY: 1.64637411 + posZ: -0.0300003514 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.01687253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Card 5e759c.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Card 5e759c.yaml new file mode 100644 index 000000000..ce8ed1ded --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Card 5e759c.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 273009 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2730': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1475442973873305143/586B6E1D49CC1517A79E73DC44F3E0A4FE409A10/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1475442973873303356/2A2CC24265654B6731CBE06DC8B52C7E52BAF4DB/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 5e759c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.63947988 + posZ: 7.56999969 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168722533 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Card 7b196d.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Card 7b196d.yaml new file mode 100644 index 000000000..0870ef115 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Card 7b196d.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 273010 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2730': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1475442973873305143/586B6E1D49CC1517A79E73DC44F3E0A4FE409A10/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1475442973873303356/2A2CC24265654B6731CBE06DC8B52C7E52BAF4DB/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 7b196d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7732 + posY: 1.648612 + posZ: 7.56999969 + rotX: 359.9201 + rotY: 269.9997 + rotZ: 0.0168725774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Card 9c0754.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Card 9c0754.yaml new file mode 100644 index 000000000..5de52b7b6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Card 9c0754.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 273012 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2730': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1475442973873305143/586B6E1D49CC1517A79E73DC44F3E0A4FE409A10/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1475442973873303356/2A2CC24265654B6731CBE06DC8B52C7E52BAF4DB/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 9c0754 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7733 + posY: 1.64411569 + posZ: -7.700001 + rotX: 359.9201 + rotY: 270.007568 + rotZ: 0.0168616716 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Card a09cfc.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Card a09cfc.yaml new file mode 100644 index 000000000..172058daa --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Card a09cfc.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 273008 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2730': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1475442973873305143/586B6E1D49CC1517A79E73DC44F3E0A4FE409A10/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1475442973873303356/2A2CC24265654B6731CBE06DC8B52C7E52BAF4DB/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: a09cfc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.63498366 + posZ: -7.700001 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.01687222 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Card The Epicenter 54300b.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Card The Epicenter 54300b.yaml new file mode 100644 index 000000000..da62e28dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Card The Epicenter 54300b.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 273013 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2730': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1475442973873305143/586B6E1D49CC1517A79E73DC44F3E0A4FE409A10/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1475442973873303356/2A2CC24265654B6731CBE06DC8B52C7E52BAF4DB/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 54300b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Epicenter +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.6281116 + posZ: -0.0300003365 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168722626 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Card The Unconjuring f9e20f.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Card The Unconjuring f9e20f.yaml new file mode 100644 index 000000000..69f286b7d --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Card The Unconjuring f9e20f.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277400 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2774': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1300927428715038091/9006F35A57B707680BB5B911ABFB9EAB8CCEA249/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421113798918/9BAC3EFB749005321374B80905FC9077AEAE9DAE/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: f9e20f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: The Unconjuring +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600057 + posY: 1.59753776 + posZ: -10.446702 + rotX: 359.919739 + rotY: 269.999542 + rotZ: 0.0168378521 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Model_Bag Set-aside 91f21a.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Model_Bag Set-aside 91f21a.yaml new file mode 100644 index 000000000..6b422bb3a --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Model_Bag Set-aside 91f21a.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 91f21a/Deck Legendary Bird Enemies 60963f.yaml' +- !include 'Custom_Model_Bag Set-aside 91f21a/Deck Legendary Bird Assets 0e9c8d.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: The Unconjuring +DragSelectable: true +GMNotes: '' +GUID: 91f21a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Set-aside +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: 1.69640136 + posY: 1.55831671 + posZ: 14.278801 + rotX: 359.955322 + rotY: 224.8442 + rotZ: 0.06879214 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Model_Bag Set-aside 91f21a/Deck Legendary Bird Assets 0e9c8d.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Model_Bag Set-aside 91f21a/Deck Legendary Bird Assets 0e9c8d.yaml new file mode 100644 index 000000000..7582ff385 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Model_Bag Set-aside 91f21a/Deck Legendary Bird Assets 0e9c8d.yaml @@ -0,0 +1,157 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 276209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f3c0b5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.7981377 + posY: 1.63226879 + posZ: 1.14931071 + rotX: 359.955444 + rotY: 224.999649 + rotZ: 0.06842523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: db2663 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.7981377 + posY: 1.63226879 + posZ: 1.14931071 + rotX: 359.955444 + rotY: 224.999649 + rotZ: 0.06842523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9b49dd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.7981377 + posY: 1.63226879 + posZ: 1.14931071 + rotX: 359.955444 + rotY: 224.999649 + rotZ: 0.06842523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2762': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421113798918/9BAC3EFB749005321374B80905FC9077AEAE9DAE/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 276209 +- 276210 +- 276211 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 0e9c8d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Legendary Bird Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69639778 + posY: 3.67851329 + posZ: 14.2788429 + rotX: 359.955139 + rotY: 225.000168 + rotZ: 0.0686166957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Model_Bag Set-aside 91f21a/Deck Legendary Bird Enemies 60963f.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Model_Bag Set-aside 91f21a/Deck Legendary Bird Enemies 60963f.yaml new file mode 100644 index 000000000..cc38cb523 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Model_Bag Set-aside 91f21a/Deck Legendary Bird Enemies 60963f.yaml @@ -0,0 +1,184 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 276206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2762': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421113798918/9BAC3EFB749005321374B80905FC9077AEAE9DAE/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 350c61 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.74772167 + posY: 1.6071136 + posZ: 4.080795 + rotX: 359.955383 + rotY: 224.996841 + rotZ: 0.0682239458 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2762': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421113798918/9BAC3EFB749005321374B80905FC9077AEAE9DAE/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a54a8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.41456842 + posY: 1.6508801 + posZ: 3.85500717 + rotX: 359.9554 + rotY: 224.996841 + rotZ: 0.06826385 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276208 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2762': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421113798918/9BAC3EFB749005321374B80905FC9077AEAE9DAE/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ed388e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.05107 + posY: 1.68572843 + posZ: 4.04087543 + rotX: 359.9554 + rotY: 224.996857 + rotZ: 0.06826475 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2762': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200421113798918/9BAC3EFB749005321374B80905FC9077AEAE9DAE/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 276206 +- 276207 +- 276208 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 60963f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Legendary Bird Enemies +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69639862 + posY: 3.67835569 + posZ: 14.2788429 + rotX: 359.9551 + rotY: 224.996948 + rotZ: 0.068622224 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile e044bd.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 15260b.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile e044bd.yaml rename to unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 15260b.yaml index 907dc4905..e60f180cf 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile e044bd.yaml +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 15260b.yaml @@ -16,7 +16,7 @@ CustomImage: Description: '' DragSelectable: true GMNotes: '' -GUID: e044bd +GUID: 15260b Grid: true GridProjection: false Hands: false @@ -123,12 +123,12 @@ States: Sticky: true Tooltip: true Transform: - posX: -26.9117 - posY: 1.62128723 - posZ: 7.6765 + posX: -33.2189 + posY: 1.63005781 + posZ: 7.5936 rotX: 359.9201 - rotY: 270.002258 - rotZ: 0.016895175 + rotY: 270.009033 + rotZ: 0.0168895982 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 1cd119.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 1cd119.yaml new file mode 100644 index 000000000..a86622042 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 1cd119.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 1cd119 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -26.7454 + posY: 1.61764348 + posZ: -3.91089988 + rotX: 0.04456542 + rotY: 44.9998627 + rotZ: 359.9316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 340b8b.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 340b8b.yaml new file mode 100644 index 000000000..f1bdd8b15 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 340b8b.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 340b8b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -33.6206 + posY: 1.62724221 + posZ: -3.87050033 + rotX: 0.06843093 + rotY: 135.0001 + rotZ: 0.0445622168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 3a32ba.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 3a32ba.yaml new file mode 100644 index 000000000..86c0d8cb1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 3a32ba.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 3a32ba +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -46.6249 + posY: 1.646474 + posZ: -0.141300052 + rotX: 359.9201 + rotY: 270.0105 + rotZ: 0.0168802552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 4cd73a.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 4cd73a.yaml new file mode 100644 index 000000000..4524a92cd --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 4cd73a.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 4cd73a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -40.111 + posY: 1.6363312 + posZ: -3.73930049 + rotX: 0.06843101 + rotY: 134.999969 + rotZ: 0.04456209 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 56f552.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 56f552.yaml new file mode 100644 index 000000000..e2ebbe627 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 56f552.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 56f552 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -20.6285 + posY: 1.61025071 + posZ: -0.0497002155 + rotX: 359.9201 + rotY: 270.009644 + rotZ: 0.0168868471 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 5aab6a.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 5aab6a.yaml new file mode 100644 index 000000000..6cfeda360 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 5aab6a.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 5aab6a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -40.4113045 + posY: 1.63899827 + posZ: 3.89500022 + rotX: 0.0445669964 + rotY: 45.00113 + rotZ: 359.9316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 6defd5.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 6defd5.yaml new file mode 100644 index 000000000..5694b48c4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 6defd5.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 6defd5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -36.7732 + posY: 1.633915 + posZ: 3.86000013 + rotX: 359.983124 + rotY: 0.00120076817 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 78e402.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 78e402.yaml new file mode 100644 index 000000000..d9be927a9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 78e402.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 78e402 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -27.265 + posY: 1.62076008 + posZ: 4.2132 + rotX: 0.06843144 + rotY: 134.999817 + rotZ: 0.04456168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile eed276.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 984ffd.yaml similarity index 95% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile eed276.yaml rename to unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 984ffd.yaml index c0995eb79..7bfed8f52 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile eed276.yaml +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile 984ffd.yaml @@ -16,7 +16,7 @@ CustomImage: Description: '' DragSelectable: true GMNotes: '' -GUID: eed276 +GUID: 984ffd Grid: true GridProjection: false Hands: false @@ -123,12 +123,12 @@ States: Sticky: true Tooltip: true Transform: - posX: -27.1383572 - posY: 1.61631036 - posZ: -9.667356 - rotX: 359.9392 - rotY: 240.015335 - rotZ: 0.05449682 + posX: -33.3711 + posY: 1.62914169 + posZ: 3.76100039 + rotX: 0.0445654243 + rotY: 44.9998741 + rotZ: 359.9316 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile b50ab5.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile b50ab5.yaml new file mode 100644 index 000000000..15355241e --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile b50ab5.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: b50ab5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -36.7731 + posY: 1.63165033 + posZ: -3.83000064 + rotX: 359.983124 + rotY: 0.0003920018 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile cdcd5b.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile cdcd5b.yaml new file mode 100644 index 000000000..7343ceffb --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile cdcd5b.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: cdcd5b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -33.2155 + posY: 1.62552106 + posZ: -7.7976017 + rotX: 359.9201 + rotY: 270.009949 + rotZ: 0.0168859437 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile ded317.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile ded317.yaml new file mode 100644 index 000000000..75e33bdf5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Custom_Tile ded317.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ded317 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.6236372 + posZ: -0.03009992 + rotX: 359.983124 + rotY: 0.000471663574 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Deck Act Deck 4a1b71.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Deck Act Deck 4a1b71.yaml new file mode 100644 index 000000000..fc917bc8f --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Deck Act Deck 4a1b71.yaml @@ -0,0 +1,184 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d33b89 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.68855834 + posY: 1.5973388 + posZ: -5.048528 + rotX: 0.0169358216 + rotY: 180.0005 + rotZ: 0.0795908049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4a8065 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.6885345 + posY: 1.64159191 + posZ: -5.048532 + rotX: 0.0186281167 + rotY: 180.000519 + rotZ: 0.0792873353 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b209ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.68820858 + posY: 1.71130443 + posZ: -5.04851437 + rotX: 358.513123 + rotY: 269.998138 + rotZ: 0.0139489006 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +DeckIDs: +- 266226 +- 266225 +- 266224 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 4a1b71 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6886 + posY: 1.61911666 + posZ: -5.0485 + rotX: 0.0168408435 + rotY: 179.996246 + rotZ: 0.0802547261 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Deck Agenda Deck 39c6b6.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Deck Agenda Deck 39c6b6.yaml new file mode 100644 index 000000000..b93d9c0e7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Deck Agenda Deck 39c6b6.yaml @@ -0,0 +1,138 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ef3b00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.72473884 + posY: 1.598982 + posZ: 0.37332806 + rotX: 0.0169429556 + rotY: 180.000458 + rotZ: 0.07954437 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b10893 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.72471476 + posY: 1.64306092 + posZ: 0.3733223 + rotX: 0.0187528729 + rotY: 180.000488 + rotZ: 0.07922448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +DeckIDs: +- 266228 +- 266227 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 39c6b6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7248 + posY: 1.61594653 + posZ: 0.373300165 + rotX: 0.0168194957 + rotY: 180.0116 + rotZ: 0.0802591443 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Deck Encounter Deck 62abb5.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Deck Encounter Deck 62abb5.yaml new file mode 100644 index 000000000..db6bcf7bc --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Deck Encounter Deck 62abb5.yaml @@ -0,0 +1,836 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d20d00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.7397461 + posY: 1.55539417 + posZ: 13.678442 + rotX: 0.235155329 + rotY: 269.98172 + rotZ: 356.211121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Omen. + DragSelectable: true + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92769766 + posY: 1.68044364 + posZ: 5.757144 + rotX: 359.919769 + rotY: 269.999817 + rotZ: 180.017151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e79003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.7507153 + posY: 1.66107368 + posZ: 13.4977093 + rotX: 0.201154128 + rotY: 269.99884 + rotZ: 359.441925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Obstacle. + DragSelectable: true + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0856552 + posY: 1.5200088 + posZ: 24.3093739 + rotX: 359.94 + rotY: 269.999237 + rotZ: 359.980957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Obstacle. + DragSelectable: true + GMNotes: '' + GUID: 4904d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0977612 + posY: 1.48390508 + posZ: 24.0386047 + rotX: 359.920441 + rotY: 269.999 + rotZ: 0.0149599239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: f5c831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.7678118 + posY: 1.57397664 + posZ: 0.8176176 + rotX: 359.920715 + rotY: 270.4449 + rotZ: 0.0112993112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1de1fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.5903969 + posY: 1.47267032 + posZ: 16.5348225 + rotX: 359.920135 + rotY: 269.999634 + rotZ: 0.0167639125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d20d00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.7397461 + posY: 1.55539417 + posZ: 13.678442 + rotX: 0.235155329 + rotY: 269.98172 + rotZ: 356.211121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: 0f4202 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1415644 + posY: 1.57619953 + posZ: 6.47173929 + rotX: 359.920532 + rotY: 269.9967 + rotZ: 0.0143175824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: 97416f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1407871 + posY: 1.73618925 + posZ: 0.4854573 + rotX: 359.929718 + rotY: 270.4449 + rotZ: 0.0168418 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.4984474 + posY: 1.74187553 + posZ: 9.174725 + rotX: 359.943939 + rotY: 270.000732 + rotZ: 0.0177138373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.2488747 + posY: 1.5756532 + posZ: 3.99089 + rotX: 359.920166 + rotY: 270.0116 + rotZ: 0.0165983569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: c70601 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.2212734 + posY: 1.731801 + posZ: 6.48566675 + rotX: 359.914764 + rotY: 269.9969 + rotZ: 0.0135772834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e79003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.7507153 + posY: 1.66107368 + posZ: 13.4977093 + rotX: 0.201154128 + rotY: 269.99884 + rotZ: 359.441925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: 435a47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.04018 + posY: 1.73764646 + posZ: 4.12767363 + rotX: 359.917725 + rotY: 270.0117 + rotZ: 0.01055241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Omen. + DragSelectable: true + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92769718 + posY: 1.64639342 + posZ: 5.757144 + rotX: 359.919464 + rotY: 269.9998 + rotZ: 180.019135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Omen. + DragSelectable: true + GMNotes: '' + GUID: 8af879 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.927721 + posY: 1.602257 + posZ: 5.75715065 + rotX: 359.919769 + rotY: 269.999756 + rotZ: 180.017014 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267601 +- 231719 +- 267602 +- 231727 +- 231727 +- 231718 +- 267603 +- 267601 +- 231717 +- 231718 +- 231716 +- 231716 +- 231717 +- 267602 +- 231716 +- 231719 +- 231719 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 62abb5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92790031 + posY: 1.69142437 + posZ: 5.757001 + rotX: 359.919739 + rotY: 269.996429 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Deck Pokemon Assets 49b3a1.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Deck Pokemon Assets 49b3a1.yaml new file mode 100644 index 000000000..f555787c0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Deck Pokemon Assets 49b3a1.yaml @@ -0,0 +1,3310 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 276000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 28ad19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dome Fossil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.43021 + posY: 3.33734965 + posZ: 1.117001 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2d3f57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Helix Fossil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.480196 + posY: 3.33802247 + posZ: -0.3717696 + rotX: 359.920135 + rotY: 270.000183 + rotZ: 0.01687269 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2497cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Clefairy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.2599373 + posY: 3.33678246 + posZ: -1.96771 + rotX: 359.920135 + rotY: 269.9997 + rotZ: 0.0168736074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c2a365 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Diglett + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.5718117 + posY: 3.33679867 + posZ: -4.944156 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168743674 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276005 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bf95cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Electabuzz + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.3659534 + posY: 2.63316679 + posZ: 3.024432 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.01687498 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276006 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c68f6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Geodude + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.0426083 + posY: 2.63131785 + posZ: 0.1585164 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.0168749578 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4c1091 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Magmar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.3674431 + posY: 2.63160038 + posZ: -1.18842065 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.0168737378 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 30c0ed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Paras + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.01258 + posY: 2.69782448 + posZ: -3.52421618 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168742836 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e85f66 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rhyhorn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.2396679 + posY: 2.69764948 + posZ: -3.85343742 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168733541 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fe9c8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Zubat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.312952 + posY: 2.60885954 + posZ: 0.362745047 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168739017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e90ce8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Abra + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.8231449 + posY: 3.334493 + posZ: -0.122313604 + rotX: 359.920135 + rotY: 269.98645 + rotZ: 0.0168930441 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1ee60a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bellsprout + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.5623131 + posY: 3.33399367 + posZ: -3.52830243 + rotX: 359.920135 + rotY: 269.98645 + rotZ: 0.0168919433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a9dc3f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Doduo + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.3840923 + posY: 2.46407485 + posZ: -5.99315643 + rotX: 359.920135 + rotY: 269.9863 + rotZ: 0.0168926176 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1efdcd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ekans + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.0839672 + posY: 2.46520615 + posZ: -8.093622 + rotX: 359.920135 + rotY: 269.986359 + rotZ: 0.0168926157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 343cd4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nidoran F + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.6191635 + posY: 2.629498 + posZ: 0.681380033 + rotX: 359.920135 + rotY: 269.987183 + rotZ: 0.0168904755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 500a5d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Nidoran M + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.390501 + posY: 2.62785769 + posZ: -2.30231643 + rotX: 359.920135 + rotY: 269.986176 + rotZ: 0.0168934651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6d764b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Oddish + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.0155773 + posY: 2.69697285 + posZ: -4.513911 + rotX: 359.920135 + rotY: 269.986145 + rotZ: 0.01689301 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6e065b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tangela + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.31674 + posY: 2.470587 + posZ: -7.54046631 + rotX: 359.920135 + rotY: 269.985962 + rotZ: 0.0168925468 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7868a7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ponyta + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.366148 + posY: 2.62348557 + posZ: 1.05293834 + rotX: 359.920135 + rotY: 269.98587 + rotZ: 0.0168922767 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3ab700 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Spearow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6734047 + posY: 2.69943285 + posZ: -3.39988565 + rotX: 359.920135 + rotY: 269.9858 + rotZ: 0.0168950055 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '758550' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mankey + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.8041649 + posY: 3.33958864 + posZ: -5.61646461 + rotX: 359.9201 + rotY: 270.009247 + rotZ: 0.01686123 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9d6b1d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pikachu + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.9746418 + posY: 2.46499729 + posZ: -8.568453 + rotX: 359.920135 + rotY: 270.009369 + rotZ: 0.0168602429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d7ece7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Venonat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.79514 + posY: 2.92251754 + posZ: -11.5775766 + rotX: 359.920135 + rotY: 270.009369 + rotZ: 0.0168604981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 384ac6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Vulpix + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.2543049 + posY: 2.92140484 + posZ: -14.5726986 + rotX: 359.920135 + rotY: 270.00946 + rotZ: 0.0168606173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b1beac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Scyther + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.3251476 + posY: 2.69740725 + posZ: -4.66743565 + rotX: 359.920135 + rotY: 270.009644 + rotZ: 0.01685975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 570df0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Exeggcute + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.8016453 + posY: 2.47026658 + posZ: -7.358378 + rotX: 359.920135 + rotY: 270.0097 + rotZ: 0.0168606974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271929 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2719': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bbe4d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Metapod (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.5048161 + posY: 3.24653959 + posZ: -17.393074 + rotX: 359.920135 + rotY: 269.997131 + rotZ: 0.0168789662 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2690': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 340a11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kakuna (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.4232521 + posY: 6.23916435 + posZ: -20.1188431 + rotX: 359.920135 + rotY: 269.9964 + rotZ: 0.0168797933 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3e28de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Weedle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.7035522 + posY: 2.611235 + posZ: -10.4724226 + rotX: 359.920135 + rotY: 270.0098 + rotZ: 0.0168600138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5862bb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Caterpie + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.3306561 + posY: 2.611096 + posZ: -12.36759 + rotX: 359.9201 + rotY: 270.009979 + rotZ: 0.0168603268 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1b04db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Jigglypuff + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.5980854 + posY: 2.923997 + posZ: -11.6731243 + rotX: 359.920135 + rotY: 270.0027 + rotZ: 0.01686976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267531 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5992cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cubone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.2537537 + posY: 2.61031342 + posZ: -12.5758448 + rotX: 359.920135 + rotY: 270.002747 + rotZ: 0.0168688986 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267532 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '873452' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Grimer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.00922 + posY: 2.61011672 + posZ: -14.3550587 + rotX: 359.920135 + rotY: 270.002625 + rotZ: 0.0168693326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267533 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a4a96f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Growlithe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.02254 + posY: 3.24992967 + posZ: -17.840559 + rotX: 359.920135 + rotY: 270.0025 + rotZ: 0.0168695934 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267534 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 714c76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Koffing + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.50306 + posY: 2.614051 + posZ: -9.270244 + rotX: 359.920135 + rotY: 270.002472 + rotZ: 0.0168699771 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267535 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e6dbc4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Magnemite + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.7738113 + posY: 2.61166573 + posZ: -11.7794247 + rotX: 359.920135 + rotY: 270.002472 + rotZ: 0.0168705974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267536 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cabbdd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Farfetch'd + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.7219658 + posY: 2.67955565 + posZ: -13.7013521 + rotX: 2.572715 + rotY: 270.008057 + rotZ: 0.016536653 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267530 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1a17e3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pidgey + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.7222042 + posY: 2.61277223 + posZ: -14.1867771 + rotX: 359.920135 + rotY: 270.002319 + rotZ: 0.0168705154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267529 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f1aee6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rattata + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.8781033 + posY: 2.47851443 + posZ: -9.752915 + rotX: 359.920135 + rotY: 270.00238 + rotZ: 0.0168707855 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267538 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e812cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Goldeen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.1195831 + posY: 2.6113286 + posZ: -12.0132265 + rotX: 359.920135 + rotY: 270.0018 + rotZ: 0.0168716423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267539 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 84202f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Horsea + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.4325714 + posY: 2.610624 + posZ: -14.1556587 + rotX: 359.920135 + rotY: 270.003082 + rotZ: 0.01686815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267540 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3f57d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Krabby + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9629478 + posY: 2.59854484 + posZ: -16.8979359 + rotX: 359.920135 + rotY: 270.001678 + rotZ: 0.0168715138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267541 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5fec8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Poliwag + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.7416744 + posY: 6.240125 + posZ: -19.7415218 + rotX: 359.920135 + rotY: 270.001648 + rotZ: 0.01687008 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267542 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 335a0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Seel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.8016167 + posY: 2.61319327 + posZ: -12.0105333 + rotX: 359.920135 + rotY: 270.0016 + rotZ: 0.0168711115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267543 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4d6002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Shellder + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.2026653 + posY: 2.61073422 + posZ: -12.2918587 + rotX: 359.920135 + rotY: 270.0014 + rotZ: 0.0168711152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267544 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 280e7e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Slowpoke + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.8173656 + posY: 2.47487068 + posZ: -15.2104483 + rotX: 359.920135 + rotY: 270.0017 + rotZ: 0.0168694053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267545 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 83e95c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Staryu + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.7759075 + posY: 2.61198616 + posZ: -17.5338173 + rotX: 359.920135 + rotY: 270.000458 + rotZ: 0.016870698 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267546 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 878a16 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Magikarp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.2997437 + posY: 2.479081 + posZ: -10.5870619 + rotX: 359.920135 + rotY: 270.000916 + rotZ: 0.0168716032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267537 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e03708 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tentacool + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.1746159 + posY: 2.54044 + posZ: -12.226141 + rotX: 2.354295 + rotY: 269.998383 + rotZ: 0.0167677552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270859 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2708': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f37da0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Wigglytuff (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.1643677 + posY: 2.29466033 + posZ: -92.286 + rotX: 0.0208087415 + rotY: 269.999939 + rotZ: 0.01677116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269541 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2695': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '290982' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Poliwhirl (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.49959326 + posY: 2.35844254 + posZ: -73.42042 + rotX: 0.020809222 + rotY: 269.998779 + rotZ: 0.0167715568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2704': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1bfcd3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Graveler (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.501009 + posY: 2.41560912 + posZ: -75.69878 + rotX: 0.0208076611 + rotY: 269.996979 + rotZ: 0.01676834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2720': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9ae052 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Raichu (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.4154949 + posY: 2.08696342 + posZ: -97.68598 + rotX: 359.332825 + rotY: 269.998322 + rotZ: 0.0167983361 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2688': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 056b24 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pidgeotto (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9011421 + posY: 1.985616 + posZ: -100.131729 + rotX: 0.02080906 + rotY: 269.998535 + rotZ: 0.0167711265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2685': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 215bb7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Exeggutor (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.5850182 + posY: 2.34497166 + posZ: -93.904686 + rotX: 359.332825 + rotY: 269.99646 + rotZ: 0.0168202147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268925 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2689': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '775582' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kingler (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9140272 + posY: 2.3305428 + posZ: -84.201416 + rotX: 0.0208111536 + rotY: 269.9973 + rotZ: 0.0167711135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2682': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 48a727 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gloom (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.5786 + posY: 2.32966423 + posZ: -67.9397659 + rotX: 0.0208100118 + rotY: 269.996643 + rotZ: 0.0167700313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272757 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2727': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a3cbef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Weepinbell (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.28058 + posY: 2.3290453 + posZ: -69.50996 + rotX: 0.0208090339 + rotY: 269.9997 + rotZ: 0.0167709049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2717': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f66d99 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Golbat (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.10876 + posY: 2.32665467 + posZ: -76.22074 + rotX: 0.0208082721 + rotY: 269.996857 + rotZ: 0.0167695377 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2692': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 68facf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Clefable (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.3180523 + posY: 2.29423618 + posZ: -96.46822 + rotX: 0.02081172 + rotY: 269.9958 + rotZ: 0.0167714711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267753 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 69cfd0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Snorlax + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.514061 + posY: 2.30767155 + posZ: -61.1594658 + rotX: 0.0208094958 + rotY: 269.9975 + rotZ: 0.01677081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267752 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dcb4c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lickitung + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.539299 + posY: 2.54712415 + posZ: -63.35171 + rotX: 0.0208097566 + rotY: 269.9975 + rotZ: 0.01677087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267751 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f49176 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lapras + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.71938 + posY: 2.41880083 + posZ: -64.34725 + rotX: 0.02080993 + rotY: 269.99762 + rotZ: 0.0167701133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267749 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bebe7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dratini + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.2413425 + posY: 2.419513 + posZ: -61.6512146 + rotX: 0.0208100267 + rotY: 269.997772 + rotZ: 0.0167699959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267750 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bcdb4e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kanaskhan + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.81132 + posY: 2.54641271 + posZ: -68.02298 + rotX: 0.0208092052 + rotY: 269.997742 + rotZ: 0.0167703629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267748 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b453d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ditto + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.44265 + posY: 2.41933084 + posZ: -62.3478355 + rotX: 0.0208092127 + rotY: 269.997864 + rotZ: 0.0167702921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267747 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 86c451 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Chansey + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.1278152 + posY: 2.41889048 + posZ: -63.9618454 + rotX: 0.0208098348 + rotY: 269.9979 + rotZ: 0.0167699363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267754 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c3190e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tauros + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1232424 + posY: 2.48485446 + posZ: -16.02921 + rotX: 359.920135 + rotY: 269.998535 + rotZ: 0.0168761462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2672': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2682': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2685': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2688': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2689': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2690': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2692': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2695': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2704': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2708': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2717': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2719': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2720': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2727': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 276000 +- 276001 +- 276003 +- 276004 +- 276005 +- 276006 +- 276007 +- 276008 +- 276009 +- 276002 +- 267111 +- 267112 +- 267113 +- 267114 +- 267116 +- 267117 +- 267118 +- 267119 +- 267120 +- 267110 +- 267223 +- 267224 +- 267225 +- 267226 +- 267227 +- 267228 +- 271929 +- 269024 +- 267222 +- 267221 +- 267115 +- 267531 +- 267532 +- 267533 +- 267534 +- 267535 +- 267536 +- 267530 +- 267529 +- 267538 +- 267539 +- 267540 +- 267541 +- 267542 +- 267543 +- 267544 +- 267545 +- 267546 +- 267537 +- 270859 +- 269541 +- 270419 +- 272044 +- 268840 +- 268514 +- 268925 +- 268216 +- 272757 +- 271717 +- 269205 +- 267753 +- 267752 +- 267751 +- 267749 +- 267750 +- 267748 +- 267747 +- 267754 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 49b3a1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Pokemon Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.82470059 + posY: 1.83941209 + posZ: 19.2862015 + rotX: 359.9201 + rotY: 269.99826 + rotZ: 0.0168918762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Deck Rare Encounter Set 79798f.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Deck Rare Encounter Set 79798f.yaml new file mode 100644 index 000000000..1d6bf1eee --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/Deck Rare Encounter Set 79798f.yaml @@ -0,0 +1,920 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267858 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6304b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3074913 + posY: 1.60498524 + posZ: -3.97525263 + rotX: 359.935181 + rotY: 269.999939 + rotZ: 0.0096496 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267865 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4945ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7495613 + posY: 1.50693226 + posZ: -4.51910925 + rotX: 359.9121 + rotY: 269.999939 + rotZ: 0.0039470233 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267866 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d10f76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7763824 + posY: 1.70056987 + posZ: -4.83039951 + rotX: 359.933 + rotY: 270.0 + rotZ: 180.014435 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267850 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e743bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.5542374 + posY: 1.681409 + posZ: -5.39828348 + rotX: 359.933167 + rotY: 269.999878 + rotZ: 0.01335297 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267863 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 527ce6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9577055 + posY: 1.55732691 + posZ: -3.599544 + rotX: 359.930878 + rotY: 269.999939 + rotZ: 359.9833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267859 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: aeb7fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1070385 + posY: 1.59544921 + posZ: -4.78942537 + rotX: 359.934357 + rotY: 269.999939 + rotZ: 0.0141529925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267862 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ab32cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.34694 + posY: 1.56640959 + posZ: -4.3452816 + rotX: 359.933868 + rotY: 269.999939 + rotZ: 0.0127378786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267856 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c89b11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1950531 + posY: 1.62436426 + posZ: -4.22008848 + rotX: 359.934143 + rotY: 269.999878 + rotZ: 0.0122695034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267853 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e29a11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3690414 + posY: 1.653022 + posZ: -4.46332932 + rotX: 359.9335 + rotY: 269.999878 + rotZ: 0.013344436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267851 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9a90a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.8511982 + posY: 1.6716491 + posZ: -4.70562458 + rotX: 359.932465 + rotY: 269.999878 + rotZ: 0.0139912358 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267857 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2b360a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3249359 + posY: 1.61457539 + posZ: -4.38055563 + rotX: 359.933716 + rotY: 269.9999 + rotZ: 0.0130347963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267864 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a2b46e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.8294334 + posY: 1.54642951 + posZ: -4.882814 + rotX: 359.9331 + rotY: 269.999939 + rotZ: 0.01384164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267854 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 04fbfc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4184074 + posY: 1.643317 + posZ: -4.56822348 + rotX: 359.933441 + rotY: 269.999878 + rotZ: 0.01348167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267861 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2f3e94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7288742 + posY: 1.57552576 + posZ: -4.707577 + rotX: 359.932617 + rotY: 269.999939 + rotZ: 0.0138330935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267849 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '126268' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3703651 + posY: 1.69154 + posZ: -4.437929 + rotX: 359.933441 + rotY: 269.999878 + rotZ: 0.0134003581 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267848 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8275f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4778252 + posY: 1.70083308 + posZ: -5.110941 + rotX: 359.93396 + rotY: 269.999878 + rotZ: 0.0146708526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267855 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0d9018 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.53936 + posY: 1.63361788 + posZ: -4.06025 + rotX: 359.934235 + rotY: 269.999878 + rotZ: 0.01124593 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267860 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 71aac2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.81522 + posY: 1.58503914 + posZ: -4.82249069 + rotX: 359.9325 + rotY: 269.999939 + rotZ: 0.01398095 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267852 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f120d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9491539 + posY: 1.66192007 + posZ: -4.450786 + rotX: 359.933044 + rotY: 269.999878 + rotZ: 0.014011329 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267858 +- 267865 +- 267866 +- 267850 +- 267863 +- 267859 +- 267862 +- 267856 +- 267853 +- 267851 +- 267857 +- 267864 +- 267854 +- 267861 +- 267849 +- 267848 +- 267855 +- 267860 +- 267852 +Description: Randomly pick 10 and shuffle them into the wild summon deck. +DragSelectable: true +GMNotes: '' +GUID: 79798f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Rare Encounter Set +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.1269979 + posY: 1.7146728 + posZ: 13.1247 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/DeckCustom Wild Summons Deck 21f22b.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/DeckCustom Wild Summons Deck 21f22b.yaml new file mode 100644 index 000000000..3961bdb8d --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Scenario 4 The Unconjuring 52d102/DeckCustom Wild Summons Deck 21f22b.yaml @@ -0,0 +1,2421 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 148a5c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4305687 + posY: 1.61886609 + posZ: 5.63184452 + rotX: 359.933228 + rotY: 269.999664 + rotZ: 0.0139843039 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 39c7c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.2810535 + posY: 1.51521266 + posZ: -2.135877 + rotX: 359.9148 + rotY: 270.0008 + rotZ: 0.005308617 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0aad31 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6961946 + posY: 1.54074144 + posZ: 5.58039 + rotX: 2.27879524 + rotY: 270.0572 + rotZ: 0.0191300511 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267839 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 913ca8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9234705 + posY: 1.6061666 + posZ: -1.65239608 + rotX: 359.934875 + rotY: 269.999817 + rotZ: 0.01145146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6bc2d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.2322025 + posY: 1.50317276 + posZ: 4.56675339 + rotX: 0.02361183 + rotY: 270.100281 + rotZ: 0.0265604481 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4258bb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.1697912 + posY: 1.59997523 + posZ: 5.784685 + rotX: 359.933563 + rotY: 269.9997 + rotZ: 0.0130977156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1ab38a + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b5d5a0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3442135 + posY: 1.5125773 + posZ: 7.84460354 + rotX: 359.935455 + rotY: 269.999756 + rotZ: 0.008050943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 95b213 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3433533 + posY: 1.47456408 + posZ: 7.842694 + rotX: 359.920868 + rotY: 269.9998 + rotZ: 0.01188529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267838 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dd980a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.02569 + posY: 1.47095919 + posZ: -5.845026 + rotX: 359.921051 + rotY: 269.999878 + rotZ: 0.01074309 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 688f9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.842989 + posY: 1.57823849 + posZ: 5.03023434 + rotX: 359.933228 + rotY: 269.999725 + rotZ: 0.0139535209 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 636d82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9020882 + posY: 1.47524452 + posZ: 7.982651 + rotX: 359.9207 + rotY: 270.000061 + rotZ: 0.0134192724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9b882f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267842 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 656e1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.42537 + posY: 1.57669008 + posZ: -1.954552 + rotX: 359.933563 + rotY: 269.999817 + rotZ: 0.0132578835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '175081' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.5734129 + posY: 1.58989215 + posZ: 6.10362339 + rotX: 359.932922 + rotY: 269.9997 + rotZ: 0.0135182422 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267843 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0d2fc4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4077568 + posY: 1.62674642 + posZ: -2.01337242 + rotX: 359.920166 + rotY: 269.993347 + rotZ: 3.15558839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1b92ac + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267844 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d7b478 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.16893 + posY: 1.55770254 + posZ: -2.07580566 + rotX: 359.934052 + rotY: 269.999847 + rotZ: 0.0139717571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e08626 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.7752342 + posY: 1.54268146 + posZ: 8.600154 + rotX: 359.926727 + rotY: 269.999451 + rotZ: 0.0155431563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b03c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2364569 + posY: 1.55164921 + posZ: 5.44123554 + rotX: 359.932739 + rotY: 269.9997 + rotZ: 0.0138072092 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d31608 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.1135187 + posY: 1.4764483 + posZ: 8.606658 + rotX: 359.9214 + rotY: 269.999664 + rotZ: 0.008276335 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 733ca3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.7685232 + posY: 1.59683776 + posZ: -1.87969816 + rotX: 359.920563 + rotY: 269.999756 + rotZ: 0.01636774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267834 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4dfacd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.700798 + posY: 1.55857623 + posZ: -1.57905722 + rotX: 359.933655 + rotY: 269.9998 + rotZ: 0.0130110951 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267832 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 87cee0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.8214407 + posY: 1.5777036 + posZ: -1.51616192 + rotX: 359.932556 + rotY: 269.999756 + rotZ: 0.01392519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ca19d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2823029 + posY: 1.58764184 + posZ: -2.37598515 + rotX: 359.935516 + rotY: 269.999939 + rotZ: 0.0173349325 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d4f223 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9021206 + posY: 1.51343989 + posZ: 7.98287344 + rotX: 359.910431 + rotY: 270.0 + rotZ: 0.0120253172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c8a0ee + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d2230c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.275857 + posY: 1.47876179 + posZ: -2.21049929 + rotX: 359.919983 + rotY: 269.999725 + rotZ: 0.0180199351 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7ab4ad + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 79dc6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.1293 + posY: 1.56135058 + posZ: 5.235817 + rotX: 359.934021 + rotY: 269.9997 + rotZ: 0.0141922077 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6b2656 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.7548189 + posY: 1.57123911 + posZ: 4.91537237 + rotX: 359.936 + rotY: 269.9997 + rotZ: 0.0184148718 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e0fc2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.55809 + posY: 1.4726795 + posZ: 4.9362216 + rotX: 359.927 + rotY: 270.034546 + rotZ: 359.9593 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267835 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0f413c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.29541 + posY: 1.549231 + posZ: -2.09604073 + rotX: 359.93396 + rotY: 269.999756 + rotZ: 0.0144235371 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6d1b9b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.2421932 + posY: 1.58840823 + posZ: 4.525725 + rotX: 359.9342 + rotY: 269.999725 + rotZ: 0.0143275689 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267847 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ccf26e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.5250912 + posY: 1.47145438 + posZ: -2.03748727 + rotX: 359.920349 + rotY: 269.999878 + rotZ: 0.0154142529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f5d7c8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 30c002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9022007 + posY: 1.59849739 + posZ: 4.84357834 + rotX: 359.921 + rotY: 270.005157 + rotZ: 0.01582711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8b2534 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.1433659 + posY: 1.60960484 + posZ: 5.629472 + rotX: 359.9336 + rotY: 269.9997 + rotZ: 0.0133823939 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7d6826 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9020882 + posY: 1.55420744 + posZ: 7.98288 + rotX: 359.919281 + rotY: 270.0 + rotZ: 0.01650513 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '817763' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6910419 + posY: 1.57863247 + posZ: 5.49776554 + rotX: 2.28761959 + rotY: 270.056946 + rotZ: 0.0170882381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267846 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 31419f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1075459 + posY: 1.51413083 + posZ: -2.02123046 + rotX: 359.93927 + rotY: 269.999878 + rotZ: 0.008084392 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267836 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '495121' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4387846 + posY: 1.51522315 + posZ: -1.61147654 + rotX: 359.937836 + rotY: 269.999817 + rotZ: 0.008324486 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267845 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2024c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7598133 + posY: 1.5471884 + posZ: -2.51725245 + rotX: 359.933533 + rotY: 269.999847 + rotZ: 0.0138228955 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 784ffd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.7753048 + posY: 1.515142 + posZ: 8.600131 + rotX: 359.95105 + rotY: 269.999664 + rotZ: 0.009926532 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267833 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8ff1a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.3915787 + posY: 1.56830037 + posZ: -2.30903816 + rotX: 359.9344 + rotY: 269.999756 + rotZ: 0.015141746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 506d86 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6808147 + posY: 1.59673488 + posZ: -2.124152 + rotX: 359.9364 + rotY: 269.9998 + rotZ: 0.01766552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267838 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 189ff6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.0097733 + posY: 1.50821984 + posZ: -5.855652 + rotX: 359.939056 + rotY: 269.999817 + rotZ: 0.00627084542 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7fc688 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.8186016 + posY: 1.54918277 + posZ: 4.41500759 + rotX: 359.9331 + rotY: 269.999756 + rotZ: 0.0139340349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f06b3f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.5190783 + posY: 1.51723635 + posZ: 5.155181 + rotX: 359.9343 + rotY: 269.9997 + rotZ: 0.0128307054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0bda8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.43559 + posY: 1.56892383 + posZ: 4.616964 + rotX: 359.933746 + rotY: 269.999725 + rotZ: 0.0141278161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d477a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.8392925 + posY: 2.47451162 + posZ: -18.5536728 + rotX: 359.920135 + rotY: 269.999054 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267838 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dd980a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1472073 + posY: 1.61553931 + posZ: -1.830852 + rotX: 359.933868 + rotY: 270.0 + rotZ: 0.0128418608 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e32ba3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267810 +- 267830 +- 267820 +- 267839 +- 267828 +- 267812 +- 267804 +- 267821 +- 267821 +- 267838 +- 267824 +- 267800 +- 267803 +- 267842 +- 267813 +- 267843 +- 267802 +- 267844 +- 267809 +- 267817 +- 267809 +- 267831 +- 267834 +- 267832 +- 267831 +- 267800 +- 267805 +- 267830 +- 267807 +- 267816 +- 267815 +- 267829 +- 267835 +- 267823 +- 267847 +- 267806 +- 267822 +- 267811 +- 267800 +- 267820 +- 267846 +- 267836 +- 267845 +- 267809 +- 267833 +- 267840 +- 267838 +- 267827 +- 267818 +- 267825 +- 267814 +- 267838 +- 267801 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 21f22b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: DeckCustom +Nickname: Wild Summons Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.64036 + posY: 1.87333107 + posZ: 7.85541058 + rotX: 359.9201 + rotY: 269.999 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68.ttslua b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68.ttslua rename to unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15.ttslua diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15.yaml new file mode 100644 index 000000000..356fdc276 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15.yaml @@ -0,0 +1,56 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.258341163 + r: 0.7019608 +ContainedObjects: +- !include 'Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile Pokemon Eldritch Safari + 3837a5.yaml' +- !include 'Bag Side-Story 1 Eldritch Safari 1fae15/Card Eldritch Safari 7e884f.yaml' +- !include 'Bag Side-Story 1 Eldritch Safari 1fae15/Deck Act Deck 1122bc.yaml' +- !include 'Bag Side-Story 1 Eldritch Safari 1fae15/Deck Agenda Deck 260366.yaml' +- !include 'Bag Side-Story 1 Eldritch Safari 1fae15/Deck Encounter Deck 15f9af.yaml' +- !include 'Bag Side-Story 1 Eldritch Safari 1fae15/Deck Safari Deck ac66dc.yaml' +- !include 'Bag Side-Story 1 Eldritch Safari 1fae15/Deck Rare Assets 5a2f5a.yaml' +- !include 'Bag Side-Story 1 Eldritch Safari 1fae15/Card 9876cc.yaml' +- !include 'Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile 26007e.yaml' +- !include 'Bag Side-Story 1 Eldritch Safari 1fae15/Card 40f6d9.yaml' +- !include 'Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile a8bb2c.yaml' +- !include 'Bag Side-Story 1 Eldritch Safari 1fae15/Card a73c31.yaml' +- !include 'Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile 0fd397.yaml' +- !include 'Bag Side-Story 1 Eldritch Safari 1fae15/Card 614b75.yaml' +- !include 'Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile 41af64.yaml' +- !include 'Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile 7234af.yaml' +- !include 'Bag Side-Story 1 Eldritch Safari 1fae15/Card b50546.yaml' +- !include 'Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Model_Bag Set-aside 0036c4.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 1fae15 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Side-Story 1 Eldritch Safari 1fae15.ttslua' +LuaScriptState: '{"ml":{"0036c4":{"lock":false,"pos":{"x":1.6953,"y":1.5583,"z":14.2778},"rot":{"x":359.9551,"y":224.9985,"z":0.0687}},"0fd397":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":0.0168,"y":179.9997,"z":0.0799}},"1122bc":{"lock":false,"pos":{"x":-2.6885,"y":1.6191,"z":-5.0485},"rot":{"x":0.0168,"y":179.9939,"z":0.0803}},"15f9af":{"lock":false,"pos":{"x":-3.9277,"y":1.7155,"z":5.7572},"rot":{"x":359.9197,"y":269.981,"z":180.0168}},"26007e":{"lock":false,"pos":{"x":-27.0855,"y":1.6193,"z":0.2117},"rot":{"x":359.9201,"y":270.0089,"z":0.0169}},"260366":{"lock":false,"pos":{"x":-2.7247,"y":1.6159,"z":0.3733},"rot":{"x":0.0168,"y":180.0007,"z":0.0803}},"3837a5":{"lock":false,"pos":{"x":-3.5107,"y":1.582,"z":-14.8773},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"40f6d9":{"lock":false,"pos":{"x":-30.2242,"y":1.6372,"z":-0.03},"rot":{"x":359.9201,"y":270.0015,"z":180.0168}},"41af64":{"lock":false,"pos":{"x":-33.3788,"y":1.6269,"z":-3.7974},"rot":{"x":359.9316,"y":315.0002,"z":359.9554}},"5a2f5a":{"lock":false,"pos":{"x":-1.4991,"y":1.6017,"z":19.2607},"rot":{"x":359.9201,"y":269.9987,"z":0.0169}},"614b75":{"lock":false,"pos":{"x":-30.2243,"y":1.6349,"z":-7.7},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"7234af":{"lock":false,"pos":{"x":-33.3531,"y":1.628,"z":0.0145},"rot":{"x":359.9201,"y":270.0089,"z":0.0169}},"7e884f":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9984,"z":0.0168}},"9876cc":{"lock":false,"pos":{"x":-23.6766,"y":1.6281,"z":-0.03},"rot":{"x":359.9201,"y":269.9996,"z":180.0168}},"a73c31":{"lock":false,"pos":{"x":-30.2243,"y":1.6394,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"a8bb2c":{"lock":false,"pos":{"x":-30.2242,"y":1.6247,"z":3.86},"rot":{"x":0.0168,"y":179.9995,"z":0.0799}},"ac66dc":{"lock":false,"pos":{"x":-8.6635,"y":1.7083,"z":7.826},"rot":{"x":359.922,"y":270,"z":180.017}},"b50546":{"lock":false,"pos":{"x":-36.7732,"y":1.6463,"z":-0.03},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: 'Side-Story 1: Eldritch Safari' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.1802835 + posY: 1.27367234 + posZ: -20.1692982 + rotX: 0.07995934 + rotY: 89.99508 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Card 40f6d9.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Card 40f6d9.yaml new file mode 100644 index 000000000..e5481c846 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Card 40f6d9.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 274907 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2749': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1300926501834941084/56A9AE9F429031C08A28E0B8F72FD462B507B158/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478821508988958600/FCCEF8C0984E24E938EA5546A34D069E3CEDDCB4/ + NumHeight: 3 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 40f6d9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.6371969 + posZ: -0.0299997628 + rotX: 359.9201 + rotY: 270.001465 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Card 614b75.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Card 614b75.yaml new file mode 100644 index 000000000..d6b4e8e9e --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Card 614b75.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 276308 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2763': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1300926501834941084/56A9AE9F429031C08A28E0B8F72FD462B507B158/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478821508988958600/FCCEF8C0984E24E938EA5546A34D069E3CEDDCB4/ + NumHeight: 3 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 614b75 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.63494289 + posZ: -7.7 + rotX: 359.9201 + rotY: 270.000061 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Card 9876cc.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Card 9876cc.yaml new file mode 100644 index 000000000..ab60ee459 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Card 9876cc.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 276510 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2765': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1300926501834941084/56A9AE9F429031C08A28E0B8F72FD462B507B158/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478821508988958600/FCCEF8C0984E24E938EA5546A34D069E3CEDDCB4/ + NumHeight: 3 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 9876cc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.62806666 + posZ: -0.0299997088 + rotX: 359.9201 + rotY: 269.999573 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Card a73c31.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Card a73c31.yaml new file mode 100644 index 000000000..04f564d2e --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Card a73c31.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 274809 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2748': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1300926501834941084/56A9AE9F429031C08A28E0B8F72FD462B507B158/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478821508988958600/FCCEF8C0984E24E938EA5546A34D069E3CEDDCB4/ + NumHeight: 3 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: a73c31 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.63943064 + posZ: 7.57000065 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Card b50546.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Card b50546.yaml new file mode 100644 index 000000000..b9f5a32d5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Card b50546.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 276606 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2766': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1300926501834941084/56A9AE9F429031C08A28E0B8F72FD462B507B158/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478821508988958600/FCCEF8C0984E24E938EA5546A34D069E3CEDDCB4/ + NumHeight: 3 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: b50546 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7732 + posY: 1.646329 + posZ: -0.02999968 + rotX: 359.9201 + rotY: 270.000122 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Card Eldritch Safari 7e884f.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Card Eldritch Safari 7e884f.yaml new file mode 100644 index 000000000..c10b633ff --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Card Eldritch Safari 7e884f.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 276400 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2764': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1300926501834941084/56A9AE9F429031C08A28E0B8F72FD462B507B158/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478821508988958600/FCCEF8C0984E24E938EA5546A34D069E3CEDDCB4/ + NumHeight: 3 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 7e884f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Eldritch Safari +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.956 + posY: 1.59753942 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 269.9984 + rotZ: 0.0168393757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Model_Bag Set-aside 0036c4.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Model_Bag Set-aside 0036c4.yaml new file mode 100644 index 000000000..26809df3c --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Model_Bag Set-aside 0036c4.yaml @@ -0,0 +1,61 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 0036c4/Deck 7d1e19.yaml' +- !include 'Custom_Model_Bag Set-aside 0036c4/Card e51b61.yaml' +- !include 'Custom_Model_Bag Set-aside 0036c4/Card f1a4d2.yaml' +- !include 'Custom_Model_Bag Set-aside 0036c4/Card 0f62ee.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: Eldritch Safari +DragSelectable: true +GMNotes: '' +GUID: 0036c4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Set-aside +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: 1.69530046 + posY: 1.558318 + posZ: 14.2778006 + rotX: 359.955139 + rotY: 224.998474 + rotZ: 0.06867217 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Model_Bag Set-aside 0036c4/Card 0f62ee.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Model_Bag Set-aside 0036c4/Card 0f62ee.yaml new file mode 100644 index 000000000..ca707103c --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Model_Bag Set-aside 0036c4/Card 0f62ee.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 274211 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2742': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1300926501834941084/56A9AE9F429031C08A28E0B8F72FD462B507B158/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478821508988958600/FCCEF8C0984E24E938EA5546A34D069E3CEDDCB4/ + NumHeight: 3 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 0f62ee +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69642174 + posY: 3.67022252 + posZ: 14.2788363 + rotX: 359.94812 + rotY: 224.998062 + rotZ: 180.058319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Model_Bag Set-aside 0036c4/Card e51b61.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Model_Bag Set-aside 0036c4/Card e51b61.yaml new file mode 100644 index 000000000..defc19c68 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Model_Bag Set-aside 0036c4/Card e51b61.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 276725 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2767': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478821508988958600/FCCEF8C0984E24E938EA5546A34D069E3CEDDCB4/ + NumHeight: 3 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e51b61 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69287062 + posY: 3.683617 + posZ: 14.2788191 + rotX: 359.0094 + rotY: 224.966843 + rotZ: 0.456754982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Model_Bag Set-aside 0036c4/Card f1a4d2.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Model_Bag Set-aside 0036c4/Card f1a4d2.yaml new file mode 100644 index 000000000..796e21cf8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Model_Bag Set-aside 0036c4/Card f1a4d2.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 276824 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2768': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478821508988958600/FCCEF8C0984E24E938EA5546A34D069E3CEDDCB4/ + NumHeight: 3 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: f1a4d2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 17.7803268 + posY: 2.478479 + posZ: -17.6587353 + rotX: 359.95517 + rotY: 225.000046 + rotZ: 0.0686553 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Model_Bag Set-aside 0036c4/Deck 7d1e19.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Model_Bag Set-aside 0036c4/Deck 7d1e19.yaml new file mode 100644 index 000000000..7e98d2473 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Model_Bag Set-aside 0036c4/Deck 7d1e19.yaml @@ -0,0 +1,184 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 276726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2767': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478821508988958600/FCCEF8C0984E24E938EA5546A34D069E3CEDDCB4/ + NumHeight: 3 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ce92e1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.8896265 + posY: 1.60964632 + posZ: 2.54939675 + rotX: 359.955444 + rotY: 224.999252 + rotZ: 0.06842555 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2767': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478821508988958600/FCCEF8C0984E24E938EA5546A34D069E3CEDDCB4/ + NumHeight: 3 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bea97f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.999 + posY: 1.63565075 + posZ: 2.673434 + rotX: 359.955444 + rotY: 224.999146 + rotZ: 0.06842571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276728 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2767': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478821508988958600/FCCEF8C0984E24E938EA5546A34D069E3CEDDCB4/ + NumHeight: 3 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 609fc7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.759252 + posY: 1.68564224 + posZ: 3.00084066 + rotX: 359.955444 + rotY: 224.99913 + rotZ: 0.0684257 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2767': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478821508988958600/FCCEF8C0984E24E938EA5546A34D069E3CEDDCB4/ + NumHeight: 3 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 276726 +- 276727 +- 276728 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 7d1e19 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69232035 + posY: 3.71091747 + posZ: 14.2789392 + rotX: 358.839447 + rotY: 224.961075 + rotZ: 0.489224523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile 0fd397.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile 0fd397.yaml new file mode 100644 index 000000000..7c2f8fe8d --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile 0fd397.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 0fd397 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.62247515 + posZ: -3.82999969 + rotX: 0.0168396439 + rotY: 179.9997 + rotZ: 0.0799398944 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile 26007e.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile 26007e.yaml new file mode 100644 index 000000000..ce7f500b6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile 26007e.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 26007e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -27.0855 + posY: 1.61928642 + posZ: 0.211699829 + rotX: 359.9201 + rotY: 270.00885 + rotZ: 0.0168550648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile 41af64.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile 41af64.yaml new file mode 100644 index 000000000..be0ea1b66 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile 41af64.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 41af64 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -33.3788 + posY: 1.626884 + posZ: -3.79740024 + rotX: 359.93158 + rotY: 315.000153 + rotZ: 359.9554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..34f5c3095 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile 7234af.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -33.3531 + posY: 1.62796819 + posZ: 0.0144997453 + rotX: 359.9201 + rotY: 270.00885 + rotZ: 0.0168550685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile a8bb2c.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile a8bb2c.yaml new file mode 100644 index 000000000..7c9344886 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile a8bb2c.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: a8bb2c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.62473524 + posZ: 3.86000037 + rotX: 0.0168398637 + rotY: 179.999512 + rotZ: 0.07993962 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile Pokemon Eldritch Safari 3837a5.ttslua b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile Pokemon Eldritch Safari 3837a5.ttslua new file mode 100644 index 000000000..854b30bd5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile Pokemon Eldritch Safari 3837a5.ttslua @@ -0,0 +1,21 @@ +name = 'Safari' + +function onLoad() + Global.call('createSetupButtons', {object=self, key=name}) +end + +function easyClick() + Global.call('fillContainer', {object=self, key=name, mode='easy'}) +end + +function normalClick() + Global.call('fillContainer', {object=self, key=name, mode='normal'}) +end + +function hardClick() + Global.call('fillContainer', {object=self, key=name, mode='hard'}) +end + +function expertClick() + Global.call('fillContainer', {object=self, key=name, mode='expert'}) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile Pokemon Eldritch Safari 3837a5.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile Pokemon Eldritch Safari 3837a5.yaml new file mode 100644 index 000000000..c004f5478 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Custom_Tile Pokemon Eldritch Safari 3837a5.yaml @@ -0,0 +1,44 @@ +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: https://i.imgur.com/EcbhVuh.jpg/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/ + WidthScale: 0.0 +Description: click to set chaos token difficulty +DragSelectable: true +GMNotes: '' +GUID: 3837a5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Pokemon Eldritch Safari 3837a5.ttslua' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: 'Pokemon: Eldritch Safari' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.51069975 + posY: 1.58200741 + posZ: -14.8772812 + rotX: 359.919739 + rotY: 269.999817 + rotZ: 0.01683791 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Deck Act Deck 1122bc.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Deck Act Deck 1122bc.yaml new file mode 100644 index 000000000..4a234ce79 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Deck Act Deck 1122bc.yaml @@ -0,0 +1,184 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266231 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 89b974 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.68855739 + posY: 1.59733832 + posZ: -5.04852724 + rotX: 0.0169397537 + rotY: 180.000549 + rotZ: 0.0795643 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266230 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b042e1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.688534 + posY: 1.64149213 + posZ: -5.048532 + rotX: 0.018699199 + rotY: 180.00058 + rotZ: 0.07925158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5d75a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.68853235 + posY: 1.67515743 + posZ: -5.04853249 + rotX: 0.0172943659 + rotY: 180.00061 + rotZ: 0.0799791962 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +DeckIDs: +- 266231 +- 266230 +- 266229 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 1122bc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6885 + posY: 1.61911654 + posZ: -5.04850054 + rotX: 0.0168442912 + rotY: 179.993851 + rotZ: 0.0802542046 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Deck Agenda Deck 260366.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Deck Agenda Deck 260366.yaml new file mode 100644 index 000000000..efdc9dc86 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Deck Agenda Deck 260366.yaml @@ -0,0 +1,138 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266233 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1380eb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.72474 + posY: 1.59898281 + posZ: 0.3733284 + rotX: 0.0169336349 + rotY: 180.00061 + rotZ: 0.07960469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266232 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4941b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.724716 + posY: 1.64328766 + posZ: 0.373322546 + rotX: 0.0185911246 + rotY: 180.000641 + rotZ: 0.07930558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +DeckIDs: +- 266233 +- 266232 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: '260366' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7247 + posY: 1.61594641 + posZ: 0.3733006 + rotX: 0.016834788 + rotY: 180.000656 + rotZ: 0.0802559853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Deck Encounter Deck 15f9af.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Deck Encounter Deck 15f9af.yaml new file mode 100644 index 000000000..612101bb0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Deck Encounter Deck 15f9af.yaml @@ -0,0 +1,1074 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231722 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Cultist. + DragSelectable: true + GMNotes: '' + GUID: 4911f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.373173 + posY: 1.94169545 + posZ: 3.84230471 + rotX: 359.920135 + rotY: 269.996368 + rotZ: 180.931534 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2768': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478821508988958600/FCCEF8C0984E24E938EA5546A34D069E3CEDDCB4/ + NumHeight: 3 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d5942c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.361504 + posY: 1.84185672 + posZ: 3.962986 + rotX: 359.9201 + rotY: 269.99646 + rotZ: 180.016953 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2768': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478821508988958600/FCCEF8C0984E24E938EA5546A34D069E3CEDDCB4/ + NumHeight: 3 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b81ea3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.1254835 + posY: 1.61227834 + posZ: 5.6352253 + rotX: 359.9201 + rotY: 269.996429 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2768': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478821508988958600/FCCEF8C0984E24E938EA5546A34D069E3CEDDCB4/ + NumHeight: 3 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '729114' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.6568089 + posY: 1.27877474 + posZ: 5.72626448 + rotX: 10.5262566 + rotY: 269.2245 + rotZ: 183.373627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0c444e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.8807535 + posY: 2.11997533 + posZ: 6.17209244 + rotX: 359.931946 + rotY: 269.995544 + rotZ: 162.867416 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2768': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478821508988958600/FCCEF8C0984E24E938EA5546A34D069E3CEDDCB4/ + NumHeight: 3 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bd16a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.2959614 + posY: 1.29998612 + posZ: 6.68082333 + rotX: 359.939117 + rotY: 270.01886 + rotZ: 162.867477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2768': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478821508988958600/FCCEF8C0984E24E938EA5546A34D069E3CEDDCB4/ + NumHeight: 3 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dfcd25 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.5161266 + posY: 1.63885486 + posZ: 6.370012 + rotX: 359.9201 + rotY: 269.99646 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Cultist. + DragSelectable: true + GMNotes: '' + GUID: d36612 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.177414 + posY: 1.73883641 + posZ: 5.46764231 + rotX: 359.9201 + rotY: 269.99646 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231722 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Cultist. + DragSelectable: true + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.575898 + posY: 1.68884575 + posZ: 5.98608 + rotX: 359.9201 + rotY: 269.99646 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8f4743 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.5498381 + posY: 2.07939434 + posZ: 5.41189861 + rotX: 359.924835 + rotY: 269.996521 + rotZ: 181.953979 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2768': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478821508988958600/FCCEF8C0984E24E938EA5546A34D069E3CEDDCB4/ + NumHeight: 3 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1f0b32 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.602059 + posY: 2.05787921 + posZ: 5.25977373 + rotX: 359.924866 + rotY: 269.9962 + rotZ: 182.194687 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231722 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Cultist. + DragSelectable: true + GMNotes: '' + GUID: 50fdc5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.0392342 + posY: 2.04514766 + posZ: 5.21043 + rotX: 359.924744 + rotY: 269.996155 + rotZ: 182.263916 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8f4743 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.272006 + posY: 2.03324556 + posZ: 5.19119644 + rotX: 359.924957 + rotY: 269.997131 + rotZ: 182.28302 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2768': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478821508988958600/FCCEF8C0984E24E938EA5546A34D069E3CEDDCB4/ + NumHeight: 3 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f6a8a8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.770444 + posY: 2.00313425 + posZ: 4.877356 + rotX: 359.924622 + rotY: 269.995972 + rotZ: 182.449081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2768': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478821508988958600/FCCEF8C0984E24E938EA5546A34D069E3CEDDCB4/ + NumHeight: 3 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e34b49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.7115889 + posY: 2.016896 + posZ: 5.20772648 + rotX: 359.924774 + rotY: 269.995483 + rotZ: 182.266022 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 90eddd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.1724443 + posY: 1.98514223 + posZ: 4.890455 + rotX: 359.924133 + rotY: 269.996277 + rotZ: 182.450989 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hex. + DragSelectable: true + GMNotes: '' + GUID: b347d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.850467 + posY: 1.9670198 + posZ: 4.76079655 + rotX: 359.924744 + rotY: 269.996155 + rotZ: 182.451233 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0c444e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.0598631 + posY: 1.93906426 + posZ: 4.46206951 + rotX: 359.924225 + rotY: 269.9964 + rotZ: 182.450958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2768': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478821508988958600/FCCEF8C0984E24E938EA5546A34D069E3CEDDCB4/ + NumHeight: 3 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c0117f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.723095 + posY: 1.957963 + posZ: 5.881272 + rotX: 359.920044 + rotY: 269.99646 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2768': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478821508988958600/FCCEF8C0984E24E938EA5546A34D069E3CEDDCB4/ + NumHeight: 3 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 56e826 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.1678734 + posY: 1.87378907 + posZ: 4.578111 + rotX: 359.920074 + rotY: 269.9965 + rotZ: 180.016953 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hex. + DragSelectable: true + GMNotes: '' + GUID: d63054 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.861836 + posY: 1.81566072 + posZ: 5.03669548 + rotX: 359.9201 + rotY: 269.99646 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 90eddd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.1268272 + posY: 1.78882682 + posZ: 5.058219 + rotX: 359.9201 + rotY: 269.99646 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2768': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478821508988958600/FCCEF8C0984E24E938EA5546A34D069E3CEDDCB4/ + NumHeight: 3 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 231722 +- 276821 +- 276819 +- 276823 +- 267606 +- 276818 +- 276820 +- 231723 +- 231722 +- 267605 +- 276816 +- 231722 +- 267605 +- 276822 +- 276814 +- 267604 +- 231724 +- 267606 +- 276815 +- 276817 +- 231724 +- 267604 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 15f9af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92770028 + posY: 1.71549439 + posZ: 5.75720024 + rotX: 359.919739 + rotY: 269.981018 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Deck Rare Assets 5a2f5a.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Deck Rare Assets 5a2f5a.yaml new file mode 100644 index 000000000..49450eb04 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Deck Rare Assets 5a2f5a.yaml @@ -0,0 +1,1008 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 270859 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2708': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f37da0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Wigglytuff (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.1643677 + posY: 2.29466033 + posZ: -92.286 + rotX: 0.0208087415 + rotY: 269.999939 + rotZ: 0.01677116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269541 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2695': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '290982' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Poliwhirl (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.49959326 + posY: 2.35844254 + posZ: -73.42042 + rotX: 0.020809222 + rotY: 269.998779 + rotZ: 0.0167715568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2704': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1bfcd3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Graveler (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.501009 + posY: 2.41560912 + posZ: -75.69878 + rotX: 0.0208076611 + rotY: 269.996979 + rotZ: 0.01676834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2720': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9ae052 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Raichu (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.4154949 + posY: 2.08696342 + posZ: -97.68598 + rotX: 359.332825 + rotY: 269.998322 + rotZ: 0.0167983361 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2688': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 056b24 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pidgeotto (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9011421 + posY: 1.985616 + posZ: -100.131729 + rotX: 0.02080906 + rotY: 269.998535 + rotZ: 0.0167711265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2685': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 215bb7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Exeggutor (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.5850182 + posY: 2.34497166 + posZ: -93.904686 + rotX: 359.332825 + rotY: 269.99646 + rotZ: 0.0168202147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268925 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2689': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '775582' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kingler (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9140272 + posY: 2.3305428 + posZ: -84.201416 + rotX: 0.0208111536 + rotY: 269.9973 + rotZ: 0.0167711135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2682': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 48a727 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gloom (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.5786 + posY: 2.32966423 + posZ: -67.9397659 + rotX: 0.0208100118 + rotY: 269.996643 + rotZ: 0.0167700313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272757 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2727': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a3cbef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Weepinbell (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.28058 + posY: 2.3290453 + posZ: -69.50996 + rotX: 0.0208090339 + rotY: 269.9997 + rotZ: 0.0167709049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2717': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f66d99 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Golbat (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.10876 + posY: 2.32665467 + posZ: -76.22074 + rotX: 0.0208082721 + rotY: 269.996857 + rotZ: 0.0167695377 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2692': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 68facf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Clefable (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.3180523 + posY: 2.29423618 + posZ: -96.46822 + rotX: 0.02081172 + rotY: 269.9958 + rotZ: 0.0167714711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267753 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 69cfd0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Snorlax + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.514061 + posY: 2.30767155 + posZ: -61.1594658 + rotX: 0.0208094958 + rotY: 269.9975 + rotZ: 0.01677081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267752 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dcb4c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lickitung + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.539299 + posY: 2.54712415 + posZ: -63.35171 + rotX: 0.0208097566 + rotY: 269.9975 + rotZ: 0.01677087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267751 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f49176 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lapras + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.71938 + posY: 2.41880083 + posZ: -64.34725 + rotX: 0.02080993 + rotY: 269.99762 + rotZ: 0.0167701133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267749 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bebe7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dratini + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.2413425 + posY: 2.419513 + posZ: -61.6512146 + rotX: 0.0208100267 + rotY: 269.997772 + rotZ: 0.0167699959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267750 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bcdb4e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kanaskhan + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.81132 + posY: 2.54641271 + posZ: -68.02298 + rotX: 0.0208092052 + rotY: 269.997742 + rotZ: 0.0167703629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267748 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b453d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ditto + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.44265 + posY: 2.41933084 + posZ: -62.3478355 + rotX: 0.0208092127 + rotY: 269.997864 + rotZ: 0.0167702921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267747 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 86c451 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Chansey + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.1278152 + posY: 2.41889048 + posZ: -63.9618454 + rotX: 0.0208098348 + rotY: 269.9979 + rotZ: 0.0167699363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267754 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c3190e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tauros + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1232424 + posY: 2.48485446 + posZ: -16.02921 + rotX: 359.920135 + rotY: 269.998535 + rotZ: 0.0168761462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2682': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2685': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2688': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2689': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2692': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2695': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2704': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2708': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2717': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2720': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2727': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 270859 +- 269541 +- 270419 +- 272044 +- 268840 +- 268514 +- 268925 +- 268216 +- 272757 +- 271717 +- 269205 +- 267753 +- 267752 +- 267751 +- 267749 +- 267750 +- 267748 +- 267747 +- 267754 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 5a2f5a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Rare Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -1.49910021 + posY: 1.60166812 + posZ: 19.2607021 + rotX: 359.920135 + rotY: 269.998718 + rotZ: 0.0168819483 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Deck Safari Deck ac66dc.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Deck Safari Deck ac66dc.yaml new file mode 100644 index 000000000..51857c1e5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 1 Eldritch Safari 1fae15/Deck Safari Deck ac66dc.yaml @@ -0,0 +1,920 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267860 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 71aac2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.81522 + posY: 1.58503914 + posZ: -4.82249069 + rotX: 359.9325 + rotY: 269.999939 + rotZ: 0.01398095 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267863 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 527ce6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9577055 + posY: 1.55732691 + posZ: -3.599544 + rotX: 359.930878 + rotY: 269.999939 + rotZ: 359.9833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267862 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ab32cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.34694 + posY: 1.56640959 + posZ: -4.3452816 + rotX: 359.933868 + rotY: 269.999939 + rotZ: 0.0127378786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267866 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d10f76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.13165 + posY: 1.83898425 + posZ: 7.78134346 + rotX: 359.920258 + rotY: 270.0 + rotZ: 0.0169186946 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267854 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 04fbfc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4184074 + posY: 1.643317 + posZ: -4.56822348 + rotX: 359.933441 + rotY: 269.999878 + rotZ: 0.01348167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267855 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0d9018 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.53936 + posY: 1.63361788 + posZ: -4.06025 + rotX: 359.934235 + rotY: 269.999878 + rotZ: 0.01124593 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267851 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9a90a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.8511982 + posY: 1.6716491 + posZ: -4.70562458 + rotX: 359.932465 + rotY: 269.999878 + rotZ: 0.0139912358 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267857 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2b360a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3249359 + posY: 1.61457539 + posZ: -4.38055563 + rotX: 359.933716 + rotY: 269.9999 + rotZ: 0.0130347963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267856 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c89b11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1950531 + posY: 1.62436426 + posZ: -4.22008848 + rotX: 359.934143 + rotY: 269.999878 + rotZ: 0.0122695034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267861 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2f3e94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7288742 + posY: 1.57552576 + posZ: -4.707577 + rotX: 359.932617 + rotY: 269.999939 + rotZ: 0.0138330935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267853 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e29a11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3690414 + posY: 1.653022 + posZ: -4.46332932 + rotX: 359.9335 + rotY: 269.999878 + rotZ: 0.013344436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267859 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: aeb7fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1070385 + posY: 1.59544921 + posZ: -4.78942537 + rotX: 359.934357 + rotY: 269.999939 + rotZ: 0.0141529925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267858 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6304b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3074913 + posY: 1.60498524 + posZ: -3.97525263 + rotX: 359.935181 + rotY: 269.999939 + rotZ: 0.0096496 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267850 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e743bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.5542374 + posY: 1.681409 + posZ: -5.39828348 + rotX: 359.933167 + rotY: 269.999878 + rotZ: 0.01335297 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267848 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8275f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4778252 + posY: 1.70083308 + posZ: -5.110941 + rotX: 359.93396 + rotY: 269.999878 + rotZ: 0.0146708526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267865 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4945ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7495613 + posY: 1.50693226 + posZ: -4.51910925 + rotX: 359.9121 + rotY: 269.999939 + rotZ: 0.0039470233 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267849 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '126268' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3703651 + posY: 1.69154 + posZ: -4.437929 + rotX: 359.933441 + rotY: 269.999878 + rotZ: 0.0134003581 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267864 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a2b46e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.8294334 + posY: 1.54642951 + posZ: -4.882814 + rotX: 359.9331 + rotY: 269.999939 + rotZ: 0.01384164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267852 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f120d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9491539 + posY: 1.66192007 + posZ: -4.450786 + rotX: 359.933044 + rotY: 269.999878 + rotZ: 0.014011329 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267860 +- 267863 +- 267862 +- 267866 +- 267854 +- 267855 +- 267851 +- 267857 +- 267856 +- 267861 +- 267853 +- 267859 +- 267858 +- 267850 +- 267848 +- 267865 +- 267849 +- 267864 +- 267852 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ac66dc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Safari Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.663502 + posY: 1.70825779 + posZ: 7.82599926 + rotX: 359.921967 + rotY: 270.000031 + rotZ: 180.016968 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c.ttslua b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c.ttslua rename to unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf.ttslua diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf.yaml new file mode 100644 index 000000000..b2ab47c41 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf.yaml @@ -0,0 +1,72 @@ +Autoraise: true +ColorDiffuse: + b: 0.7019608 + g: 0.5453897 + r: 0.0 +ContainedObjects: +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile Pokemon Project Cerulean + 3837a5.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Card Project Cerulean fff25a.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Deck 95b8c6.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Deck Agenda Deck 084e9c.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Deck Encounter Deck 4dbc54.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Deck Rare Assets b4fdc7.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Deck Town Assets fc3752.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Deck Cave Assets c7ad1d.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Deck Rare Encounter Set 02610c.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Card ce0823.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 4b4f6d.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Card 511bc7.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile dc67bc.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Card 524d51.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 7234af.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile f4a49c.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Card 1bfece.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Card 335eaa.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 1da118.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Card ecf467.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile c9adba.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 5f742d.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 553fa0.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Card 6da5d2.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 11716d.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Card 3c4294.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 4ad16e.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Card 63b5d2.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Card 8e366d.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Card ba0670.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile cf31cd.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Card 62e44c.yaml' +- !include 'Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 5a2aba.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 4c07bf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Side-Story 2 Project Cerulean 4c07bf.ttslua' +LuaScriptState: '{"ml":{"02610c":{"lock":false,"pos":{"x":-10.286,"y":1.7113,"z":10.5345},"rot":{"x":359.9201,"y":270.0002,"z":180.0168}},"084e9c":{"lock":false,"pos":{"x":-2.7247,"y":1.6208,"z":0.3733},"rot":{"x":0.0168,"y":180.0007,"z":0.0803}},"11716d":{"lock":false,"pos":{"x":-33.4947,"y":1.627,"z":-3.9172},"rot":{"x":359.9554,"y":225.0001,"z":0.0684}},"1bfece":{"lock":false,"pos":{"x":-23.6765,"y":1.6281,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":180.0168}},"1da118":{"lock":false,"pos":{"x":-30.2242,"y":1.6247,"z":3.86},"rot":{"x":0.0168,"y":179.9996,"z":0.0799}},"335eaa":{"lock":false,"pos":{"x":-30.2242,"y":1.6372,"z":-0.03},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"3837a5":{"lock":false,"pos":{"x":-3.98,"y":1.5827,"z":-14.7636},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"3c4294":{"lock":false,"pos":{"x":-36.7732,"y":1.6463,"z":-0.03},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"4ad16e":{"lock":false,"pos":{"x":-36.7731,"y":1.6339,"z":3.86},"rot":{"x":0.0168,"y":179.9993,"z":0.0799}},"4b4f6d":{"lock":false,"pos":{"x":-17.12,"y":1.6087,"z":11.46},"rot":{"x":0.0168,"y":180.0001,"z":0.0799}},"4dbc54":{"lock":false,"pos":{"x":-3.9279,"y":1.7588,"z":5.7629},"rot":{"x":359.9197,"y":269.9687,"z":180.0169}},"511bc7":{"lock":false,"pos":{"x":-17.12,"y":1.6212,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"524d51":{"lock":false,"pos":{"x":-17.12,"y":1.6189,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"553fa0":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":0.0168,"y":179.9995,"z":0.0799}},"5a2aba":{"lock":false,"pos":{"x":-43.37,"y":1.6453,"z":11.46},"rot":{"x":0.0168,"y":179.9993,"z":0.08}},"5f742d":{"lock":false,"pos":{"x":-33.2227,"y":1.63,"z":7.6153},"rot":{"x":359.9201,"y":269.9995,"z":0.0169}},"62e44c":{"lock":false,"pos":{"x":-43.37,"y":1.6578,"z":7.5696},"rot":{"x":359.9201,"y":270,"z":180.0168}},"63b5d2":{"lock":false,"pos":{"x":-36.7733,"y":1.6441,"z":-7.7},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"6da5d2":{"lock":false,"pos":{"x":-30.2243,"y":1.6349,"z":-7.7},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"7234af":{"lock":false,"pos":{"x":-20.2722,"y":1.6098,"z":0.1061},"rot":{"x":359.9201,"y":270.011,"z":0.0169}},"8e366d":{"lock":false,"pos":{"x":-36.7732,"y":1.6486,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"8f6ad2":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.2789},"rot":{"x":359.9551,"y":225.0011,"z":0.0687}},"95b8c6":{"lock":false,"pos":{"x":-2.6886,"y":1.6143,"z":-5.0485},"rot":{"x":0.0168,"y":180.0003,"z":0.0803}},"b4fdc7":{"lock":false,"pos":{"x":0.7374,"y":1.5985,"z":19.1411},"rot":{"x":359.9201,"y":269.9984,"z":0.0169}},"ba0670":{"lock":false,"pos":{"x":-43.37,"y":1.6555,"z":-0.03},"rot":{"x":359.9201,"y":269.9997,"z":180.0168}},"c7ad1d":{"lock":false,"pos":{"x":-6.4933,"y":1.5653,"z":19.1023},"rot":{"x":359.9201,"y":269.9992,"z":0.0169}},"c9adba":{"lock":false,"pos":{"x":-30.2243,"y":1.627,"z":11.46},"rot":{"x":0.0168,"y":179.9996,"z":0.0799}},"ce0823":{"lock":false,"pos":{"x":-17.12,"y":1.6234,"z":15.19},"rot":{"x":359.9201,"y":270,"z":180.0168}},"cf31cd":{"lock":false,"pos":{"x":-43.37,"y":1.6431,"z":3.86},"rot":{"x":0.0168,"y":179.9994,"z":0.08}},"dc67bc":{"lock":false,"pos":{"x":-17.1201,"y":1.6065,"z":3.86},"rot":{"x":0.0168,"y":180.0002,"z":0.0799}},"ecf467":{"lock":false,"pos":{"x":-30.2243,"y":1.6394,"z":7.57},"rot":{"x":359.9201,"y":270,"z":180.0168}},"f4a49c":{"lock":false,"pos":{"x":-20.3951,"y":1.611,"z":3.8242},"rot":{"x":359.9554,"y":224.9999,"z":0.0684}},"fc3752":{"lock":false,"pos":{"x":-2.659,"y":1.5551,"z":19.1106},"rot":{"x":359.9201,"y":270.0023,"z":0.0169}},"fff25a":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":270.0031,"z":0.0168}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: 'Side-Story 2: Project Cerulean' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.29192 + posY: 1.27108479 + posZ: -28.0307178 + rotX: 0.07996084 + rotY: 89.99994 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 1bfece.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 1bfece.yaml new file mode 100644 index 000000000..47a7b2526 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 1bfece.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 276809 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2768': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 1bfece +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.62806654 + posZ: -0.0299995858 + rotX: 359.9201 + rotY: 270.0 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 335eaa.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 335eaa.yaml new file mode 100644 index 000000000..2a10533b6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 335eaa.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277711 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2777': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 335eaa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.6371969 + posZ: -0.029999733 + rotX: 359.9201 + rotY: 270.000061 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 3c4294.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 3c4294.yaml new file mode 100644 index 000000000..8fd217cd7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 3c4294.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277714 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2777': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 3c4294 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7732 + posY: 1.646329 + posZ: -0.02999968 + rotX: 359.9201 + rotY: 270.000122 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 511bc7.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 511bc7.yaml new file mode 100644 index 000000000..c7e7d33d8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 511bc7.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 276907 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2769': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 511bc7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.62115753 + posZ: 7.57000065 + rotX: 359.9201 + rotY: 270.0001 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 524d51.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 524d51.yaml new file mode 100644 index 000000000..e37b37327 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 524d51.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277008 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2770': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 524d51 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.6189239 + posZ: -0.0299998038 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 62e44c.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 62e44c.yaml new file mode 100644 index 000000000..d391a84ff --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 62e44c.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277716 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2777': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 62e44c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -43.37 + posY: 1.65776122 + posZ: 7.569601 + rotX: 359.9201 + rotY: 270.0 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 63b5d2.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 63b5d2.yaml new file mode 100644 index 000000000..23afe35ec --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 63b5d2.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277713 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2777': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 63b5d2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7733 + posY: 1.644075 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 270.000061 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 6da5d2.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 6da5d2.yaml new file mode 100644 index 000000000..71c636738 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 6da5d2.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277712 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2777': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 6da5d2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.63494289 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 270.000061 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 8e366d.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 8e366d.yaml new file mode 100644 index 000000000..edd5b65d8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card 8e366d.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277715 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2777': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8e366d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7732 + posY: 1.64856255 + posZ: 7.57 + rotX: 359.9201 + rotY: 270.000061 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card ba0670.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card ba0670.yaml new file mode 100644 index 000000000..af941fea2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card ba0670.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277717 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2777': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ba0670 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -43.3700027 + posY: 1.65552783 + posZ: -0.0300002284 + rotX: 359.9201 + rotY: 269.9997 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card ce0823.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card ce0823.yaml new file mode 100644 index 000000000..2b6145dbc --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card ce0823.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277706 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2777': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ce0823 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200027 + posY: 1.623397 + posZ: 15.19 + rotX: 359.9201 + rotY: 270.0 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card ecf467.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card ecf467.yaml new file mode 100644 index 000000000..9b61a68a9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card ecf467.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277710 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2777': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ecf467 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.63943064 + posZ: 7.57000065 + rotX: 359.9201 + rotY: 270.0 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card Project Cerulean fff25a.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card Project Cerulean fff25a.yaml new file mode 100644 index 000000000..1aef03511 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Card Project Cerulean fff25a.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277200 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2772': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: fff25a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Project Cerulean +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600033 + posY: 1.59753942 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 270.003082 + rotZ: 0.0168328956 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2.yaml new file mode 100644 index 000000000..8764629a4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2.yaml @@ -0,0 +1,66 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 8f6ad2/Deck Mewtwo 54d3d0.yaml' +- !include 'Custom_Model_Bag Set-aside 8f6ad2/Card Armored Mewtwo 05d111.yaml' +- !include 'Custom_Model_Bag Set-aside 8f6ad2/Deck Silph Operatives a30c7f.yaml' +- !include 'Custom_Model_Bag Set-aside 8f6ad2/Card Silph Captain a13810.yaml' +- !include 'Custom_Model_Bag Set-aside 8f6ad2/Card Silph Agents c03302.yaml' +- !include 'Custom_Model_Bag Set-aside 8f6ad2/Card Secret Science 0154af.yaml' +- !include 'Custom_Model_Bag Set-aside 8f6ad2/Card Alien Machinations efaf8d.yaml' +- !include 'Custom_Model_Bag Set-aside 8f6ad2/Card Strange Cube 5f5b97.yaml' +- !include 'Custom_Model_Bag Set-aside 8f6ad2/Card Mismatched Notes 8c5c4e.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: Project Cerulean +DragSelectable: true +GMNotes: '' +GUID: 8f6ad2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Set-aside +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: 1.696401 + posY: 1.55831647 + posZ: 14.2789021 + rotX: 359.955139 + rotY: 225.001068 + rotZ: 0.06867156 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Card Alien Machinations efaf8d.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Card Alien Machinations efaf8d.yaml new file mode 100644 index 000000000..844bbbdcd --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Card Alien Machinations efaf8d.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 274218 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2742': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: efaf8d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Alien Machinations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 3.47667146 + posY: 2.492936 + posZ: -34.03516 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168737583 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Card Armored Mewtwo 05d111.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Card Armored Mewtwo 05d111.yaml new file mode 100644 index 000000000..6fc00a445 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Card Armored Mewtwo 05d111.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 274225 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2742': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 05d111 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Armored Mewtwo +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.696421 + posY: 3.670339 + posZ: 14.2788363 + rotX: 359.94812 + rotY: 224.998062 + rotZ: 0.0583288036 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Card Mismatched Notes 8c5c4e.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Card Mismatched Notes 8c5c4e.yaml new file mode 100644 index 000000000..3b20e0e6a --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Card Mismatched Notes 8c5c4e.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 274227 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2742': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8c5c4e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Mismatched Notes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.6964215 + posY: 3.67026687 + posZ: 14.2788363 + rotX: 359.948151 + rotY: 224.998062 + rotZ: 0.058328487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Card Secret Science 0154af.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Card Secret Science 0154af.yaml new file mode 100644 index 000000000..39b8601f3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Card Secret Science 0154af.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 274219 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2742': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 0154af +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Secret Science +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.28079665 + posY: 2.52876878 + posZ: -42.4026642 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168719161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Card Silph Agents c03302.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Card Silph Agents c03302.yaml new file mode 100644 index 000000000..165d45108 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Card Silph Agents c03302.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 274220 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2742': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c03302 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Silph Agents +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.451803 + posY: 2.50522447 + posZ: -21.3980446 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.0168698039 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Card Silph Captain a13810.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Card Silph Captain a13810.yaml new file mode 100644 index 000000000..c65c81fdf --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Card Silph Captain a13810.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 274221 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2742': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: a13810 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Silph Captain +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 3.89553881 + posY: 2.52613068 + posZ: -38.98301 + rotX: 359.920166 + rotY: 270.000061 + rotZ: 0.0169340521 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Card Strange Cube 5f5b97.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Card Strange Cube 5f5b97.yaml new file mode 100644 index 000000000..63dbf57a6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Card Strange Cube 5f5b97.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 274228 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2742': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 5f5b97 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Strange Cube +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69642127 + posY: 3.670309 + posZ: 14.2788363 + rotX: 359.948181 + rotY: 224.998062 + rotZ: 0.0583235472 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Deck Mewtwo 54d3d0.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Deck Mewtwo 54d3d0.yaml new file mode 100644 index 000000000..ab219dda1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Deck Mewtwo 54d3d0.yaml @@ -0,0 +1,506 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0c9009 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.987444 + posY: 1.61290753 + posZ: 13.3399916 + rotX: 359.921631 + rotY: 269.999878 + rotZ: 0.0154374 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274230 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 316c40 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.454608 + posY: 1.61111569 + posZ: 9.627033 + rotX: 359.919769 + rotY: 270.0 + rotZ: 0.0163149852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '402901' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.509894 + posY: 1.65543866 + posZ: 9.55224 + rotX: 359.9188 + rotY: 269.999939 + rotZ: 0.0143893044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274237 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ff9fbd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.224247 + posY: 1.68888521 + posZ: 9.288624 + rotX: 359.9192 + rotY: 269.999939 + rotZ: 0.0168154035 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274236 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 454d09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.52026 + posY: 1.69921637 + posZ: 10.1061773 + rotX: 359.9187 + rotY: 269.999939 + rotZ: 0.016767947 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 3c64e5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.27817 + posY: 1.70819438 + posZ: 9.21461 + rotX: 359.9192 + rotY: 269.999939 + rotZ: 0.0169207845 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2333f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.810361 + posY: 1.71725321 + posZ: 9.586697 + rotX: 359.915253 + rotY: 269.999878 + rotZ: 0.0176222883 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274233 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5d4e5e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.30754852 + posY: 1.727855 + posZ: 10.3285112 + rotX: 359.915375 + rotY: 269.999878 + rotZ: 0.01762557 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274232 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2ee2c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.309969 + posY: 1.73495984 + posZ: 8.85608 + rotX: 359.916962 + rotY: 269.9999 + rotZ: 0.0152099375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274231 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4864f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.845448 + posY: 1.74771082 + posZ: 9.902385 + rotX: 359.919861 + rotY: 269.9999 + rotZ: 0.0166108478 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2742': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true +DeckIDs: +- 274229 +- 274230 +- 274238 +- 274237 +- 274236 +- 274235 +- 274234 +- 274233 +- 274232 +- 274231 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 54d3d0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Mewtwo +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69642544 + posY: 3.725031 + posZ: 14.2788353 + rotX: 359.948151 + rotY: 224.998062 + rotZ: 0.0583134219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Deck Silph Operatives a30c7f.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Deck Silph Operatives a30c7f.yaml new file mode 100644 index 000000000..c8eada5d2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Model_Bag Set-aside 8f6ad2/Deck Silph Operatives a30c7f.yaml @@ -0,0 +1,184 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4287ae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.1328735 + posY: 1.60896492 + posZ: -0.8866235 + rotX: 359.920441 + rotY: 269.999878 + rotZ: 0.0167374257 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e4dd42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.0172968 + posY: 1.65301228 + posZ: -1.012937 + rotX: 359.9191 + rotY: 269.999817 + rotZ: 0.0179297756 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8fad30 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.631987 + posY: 1.68626726 + posZ: -1.43156052 + rotX: 359.919281 + rotY: 269.999817 + rotZ: 0.018456338 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2742': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478822124782615519/AE3C6C94D5D74FC24FD0968B4799F7A1087E284D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: true +DeckIDs: +- 274222 +- 274223 +- 274224 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: a30c7f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Silph Operatives +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.696424 + posY: 3.69158387 + posZ: 14.2788363 + rotX: 359.94812 + rotY: 224.998062 + rotZ: 0.0583164543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 11716d.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 11716d.yaml new file mode 100644 index 000000000..1ad81a900 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 11716d.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 11716d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -33.4947 + posY: 1.62701011 + posZ: -3.9172 + rotX: 359.9554 + rotY: 225.000092 + rotZ: 0.06837808 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 1da118.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 1da118.yaml new file mode 100644 index 000000000..08a3cc187 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 1da118.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 1da118 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.62473524 + posZ: 3.86000013 + rotX: 0.01683984 + rotY: 179.999573 + rotZ: 0.07993988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 4ad16e.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 4ad16e.yaml new file mode 100644 index 000000000..9bba15a2c --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 4ad16e.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 4ad16e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -36.7731 + posY: 1.63386714 + posZ: 3.86000085 + rotX: 0.0168401059 + rotY: 179.9993 + rotZ: 0.0799398 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 4b4f6d.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 4b4f6d.yaml new file mode 100644 index 000000000..10ae2f7d2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 4b4f6d.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 4b4f6d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.60869586 + posZ: 11.460001 + rotX: 0.016839087 + rotY: 180.0001 + rotZ: 0.07993926 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 553fa0.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 553fa0.yaml new file mode 100644 index 000000000..bc51dc7ad --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 553fa0.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 553fa0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.62247515 + posZ: -3.82999969 + rotX: 0.0168398414 + rotY: 179.999481 + rotZ: 0.0799397752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 5a2aba.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 5a2aba.yaml new file mode 100644 index 000000000..f0b11d319 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 5a2aba.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 5a2aba +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -43.37 + posY: 1.64529967 + posZ: 11.46 + rotX: 0.0168403089 + rotY: 179.999329 + rotZ: 0.079954654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 5f742d.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 5f742d.yaml new file mode 100644 index 000000000..8c20768a1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 5f742d.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 5f742d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -33.2227 + posY: 1.63002014 + posZ: 7.6153 + rotX: 359.9201 + rotY: 269.999542 + rotZ: 0.0168713536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..e88277464 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile 7234af.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -20.2722 + posY: 1.60975456 + posZ: 0.106099956 + rotX: 359.9201 + rotY: 270.011047 + rotZ: 0.0168509074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile c9adba.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile c9adba.yaml new file mode 100644 index 000000000..4df54b426 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile c9adba.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c9adba +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.626969 + posZ: 11.460001 + rotX: 0.0168396737 + rotY: 179.999619 + rotZ: 0.07994042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile b2aace.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile cf31cd.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile b2aace.yaml rename to unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile cf31cd.yaml index cf25363a6..60277a07a 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile b2aace.yaml +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile cf31cd.yaml @@ -16,7 +16,7 @@ CustomImage: Description: '' DragSelectable: true GMNotes: '' -GUID: b2aace +GUID: cf31cd Grid: true GridProjection: false Hands: false @@ -123,12 +123,12 @@ States: Sticky: true Tooltip: true Transform: - posX: -23.6765 - posY: 1.61565244 + posX: -43.37 + posY: 1.643066 posZ: 3.86000037 - rotX: 359.9829 - rotY: 359.853 - rotZ: 359.9201 + rotX: 0.0168401655 + rotY: 179.999374 + rotZ: 0.07996054 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile dc67bc.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile dc67bc.yaml new file mode 100644 index 000000000..0df920b9c --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile dc67bc.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: dc67bc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -17.1201 + posY: 1.60646236 + posZ: 3.85999966 + rotX: 0.0168389771 + rotY: 180.000153 + rotZ: 0.07994047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile f4a49c.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile f4a49c.yaml new file mode 100644 index 000000000..f7bb430f4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile f4a49c.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: f4a49c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -20.3951 + posY: 1.61101866 + posZ: 3.82420087 + rotX: 359.9554 + rotY: 224.999924 + rotZ: 0.06838087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile Pokemon Project Cerulean 3837a5.ttslua b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile Pokemon Project Cerulean 3837a5.ttslua new file mode 100644 index 000000000..53e77c06e --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile Pokemon Project Cerulean 3837a5.ttslua @@ -0,0 +1,21 @@ +name = 'Cerulean' + +function onLoad() + Global.call('createSetupButtons', {object=self, key=name}) +end + +function easyClick() + Global.call('fillContainer', {object=self, key=name, mode='easy'}) +end + +function normalClick() + Global.call('fillContainer', {object=self, key=name, mode='normal'}) +end + +function hardClick() + Global.call('fillContainer', {object=self, key=name, mode='hard'}) +end + +function expertClick() + Global.call('fillContainer', {object=self, key=name, mode='expert'}) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile Pokemon Project Cerulean 3837a5.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile Pokemon Project Cerulean 3837a5.yaml new file mode 100644 index 000000000..67b3e8346 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Custom_Tile Pokemon Project Cerulean 3837a5.yaml @@ -0,0 +1,44 @@ +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: https://i.imgur.com/EcbhVuh.jpg/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/ + WidthScale: 0.0 +Description: click to set chaos token difficulty +DragSelectable: true +GMNotes: '' +GUID: 3837a5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Pokemon Project Cerulean 3837a5.ttslua' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: 'Pokemon: Project Cerulean' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.97997761 + posY: 1.58269823 + posZ: -14.7635708 + rotX: 359.919739 + rotY: 269.999817 + rotZ: 0.0168380924 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Deck 95b8c6.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Deck 95b8c6.yaml new file mode 100644 index 000000000..5e6fd6444 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Deck 95b8c6.yaml @@ -0,0 +1,138 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4ca223 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.321541041 + posY: 1.59426355 + posZ: -4.241406 + rotX: 0.016921157 + rotY: 180.000259 + rotZ: 0.0797763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 63eebc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.7258969 + posY: 1.63664782 + posZ: -4.325496 + rotX: 0.0223652683 + rotY: 180.000717 + rotZ: 0.0687319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +DeckIDs: +- 266235 +- 266234 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 95b8c6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: '' +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68859982 + posY: 1.61430264 + posZ: -5.0485 + rotX: 0.0168353152 + rotY: 180.000259 + rotZ: 0.0802558959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Deck Agenda Deck 084e9c.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Deck Agenda Deck 084e9c.yaml new file mode 100644 index 000000000..717f34fc0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Deck Agenda Deck 084e9c.yaml @@ -0,0 +1,184 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e81009 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.72473812 + posY: 1.59898233 + posZ: 0.3733281 + rotX: 0.0169391837 + rotY: 180.000656 + rotZ: 0.0795676 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266237 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b34a13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.72471523 + posY: 1.64314842 + posZ: 0.3733224 + rotX: 0.0186907221 + rotY: 180.000656 + rotZ: 0.07925581 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266236 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7bf67d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.72471452 + posY: 1.67698109 + posZ: 0.373322248 + rotX: 0.01726891 + rotY: 180.000687 + rotZ: 0.07999151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1482200660407207110/B72867F9B69B4A4D605F631525C44F28354F168A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407203448/1FB274796CCBB38F62F23DBFB3EAE6C1F21F834C/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: true +DeckIDs: +- 266238 +- 266237 +- 266236 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 084e9c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7247 + posY: 1.62076044 + posZ: 0.373300284 + rotX: 0.01683473 + rotY: 180.000656 + rotZ: 0.08025614 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Deck Cave Assets c7ad1d.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Deck Cave Assets c7ad1d.yaml new file mode 100644 index 000000000..6b4eeec53 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Deck Cave Assets c7ad1d.yaml @@ -0,0 +1,506 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 276000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 28ad19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dome Fossil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.43021 + posY: 3.33734965 + posZ: 1.117001 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2d3f57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Helix Fossil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.480196 + posY: 3.33802247 + posZ: -0.3717696 + rotX: 359.920135 + rotY: 270.000183 + rotZ: 0.01687269 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2497cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Clefairy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.2599373 + posY: 3.33678246 + posZ: -1.96771 + rotX: 359.920135 + rotY: 269.9997 + rotZ: 0.0168736074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c2a365 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Diglett + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.5718117 + posY: 3.33679867 + posZ: -4.944156 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168743674 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276005 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bf95cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Electabuzz + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.3659534 + posY: 2.63316679 + posZ: 3.024432 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.01687498 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276006 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c68f6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Geodude + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.0426083 + posY: 2.63131785 + posZ: 0.1585164 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.0168749578 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4c1091 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Magmar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.3674431 + posY: 2.63160038 + posZ: -1.18842065 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.0168737378 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 30c0ed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Paras + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.01258 + posY: 2.69782448 + posZ: -3.52421618 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168742836 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e85f66 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rhyhorn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.2396679 + posY: 2.69764948 + posZ: -3.85343742 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168733541 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: fe9c8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Zubat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.312952 + posY: 2.60885954 + posZ: 0.362745047 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168739017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2760': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 276000 +- 276001 +- 276003 +- 276004 +- 276005 +- 276006 +- 276007 +- 276008 +- 276009 +- 276002 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c7ad1d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Cave Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -6.49330139 + posY: 1.56525767 + posZ: 19.1023045 + rotX: 359.920135 + rotY: 269.999237 + rotZ: 0.01687871 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Deck Encounter Deck 4dbc54.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Deck Encounter Deck 4dbc54.yaml new file mode 100644 index 000000000..9923a3bbc --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Deck Encounter Deck 4dbc54.yaml @@ -0,0 +1,1460 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d20d00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.7397461 + posY: 1.55539417 + posZ: 13.678442 + rotX: 0.235155329 + rotY: 269.98172 + rotZ: 356.211121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: f5c831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.7678118 + posY: 1.57397664 + posZ: 0.8176176 + rotX: 359.920715 + rotY: 270.4449 + rotZ: 0.0112993112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267835 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0f413c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.29541 + posY: 1.549231 + posZ: -2.09604073 + rotX: 359.93396 + rotY: 269.999756 + rotZ: 0.0144235371 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.4984474 + posY: 1.74187553 + posZ: 9.174725 + rotX: 359.943939 + rotY: 270.000732 + rotZ: 0.0177138373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231721 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: c4ce76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.9735909 + posY: 1.73492968 + posZ: 1.969332 + rotX: 359.9267 + rotY: 270.0006 + rotZ: 0.0145301558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9b882f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e79003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.7507153 + posY: 1.66107368 + posZ: 13.4977093 + rotX: 0.201154128 + rotY: 269.99884 + rotZ: 359.441925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 59fc7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.752924 + posY: 1.549553 + posZ: 19.5850677 + rotX: 359.933167 + rotY: 270.000061 + rotZ: 0.0136046614 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: 0f4202 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1415644 + posY: 1.57619953 + posZ: 6.47173929 + rotX: 359.920532 + rotY: 269.9967 + rotZ: 0.0143175824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.2488747 + posY: 1.5756532 + posZ: 3.99089 + rotX: 359.920166 + rotY: 270.0116 + rotZ: 0.0165983569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: 97416f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1407871 + posY: 1.73618925 + posZ: 0.4854573 + rotX: 359.929718 + rotY: 270.4449 + rotZ: 0.0168418 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267836 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '495121' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4387846 + posY: 1.51522315 + posZ: -1.61147654 + rotX: 359.937836 + rotY: 269.999817 + rotZ: 0.008324486 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 59fc7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.3825378 + posY: 1.47381163 + posZ: 19.62275 + rotX: 359.920715 + rotY: 270.000244 + rotZ: 0.0129251489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1ab38a + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d4f223 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92769718 + posY: 1.85365486 + posZ: 5.757144 + rotX: 359.919769 + rotY: 269.9997 + rotZ: 180.017029 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.5550861 + posY: 1.57516873 + posZ: 5.69822454 + rotX: 359.92038 + rotY: 270.002563 + rotZ: 0.0152713312 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1b92ac + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1de1fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.5903969 + posY: 1.47267032 + posZ: 16.5348225 + rotX: 359.920135 + rotY: 269.999634 + rotZ: 0.0167639125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: feb44d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.9806881 + posY: 1.51071775 + posZ: 19.8807468 + rotX: 0.0009870824 + rotY: 270.000183 + rotZ: 359.9113 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231721 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: 50e716 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.8034887 + posY: 1.57302034 + posZ: 1.99893022 + rotX: 359.920471 + rotY: 270.000641 + rotZ: 0.0145632224 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d20d00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.7397461 + posY: 1.55539417 + posZ: 13.678442 + rotX: 0.235155329 + rotY: 269.98172 + rotZ: 356.211121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 636d82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92773223 + posY: 1.95440054 + posZ: 5.75714254 + rotX: 359.919861 + rotY: 270.000854 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267833 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8ff1a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.3915787 + posY: 1.56830037 + posZ: -2.30903816 + rotX: 359.9344 + rotY: 269.999756 + rotZ: 0.015141746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267832 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 87cee0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.8214407 + posY: 1.5777036 + posZ: -1.51616192 + rotX: 359.932556 + rotY: 269.999756 + rotZ: 0.01392519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: da43be + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92769074 + posY: 1.92333591 + posZ: 5.757143 + rotX: 359.919739 + rotY: 270.000977 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: 435a47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.04018 + posY: 1.73764646 + posZ: 4.12767363 + rotX: 359.917725 + rotY: 270.0117 + rotZ: 0.01055241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e79003 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.7507153 + posY: 1.66107368 + posZ: 13.4977093 + rotX: 0.201154128 + rotY: 269.99884 + rotZ: 359.441925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: 16d6d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.5491152 + posY: 1.73727059 + posZ: 5.64764357 + rotX: 359.924774 + rotY: 270.002625 + rotZ: 0.0113747623 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: c70601 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.2212734 + posY: 1.731801 + posZ: 6.48566675 + rotX: 359.914764 + rotY: 269.9969 + rotZ: 0.0135772834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7ab4ad + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6130972 + posY: 1.49379456 + posZ: 11.8621283 + rotX: 0.0168715268 + rotY: 179.9999 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2776': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6479ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.927698 + posY: 1.94041181 + posZ: 5.757144 + rotX: 359.920074 + rotY: 270.000183 + rotZ: 180.0167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782602819/525B89BF73DDA165ECEA37FB2843924001C3AE85/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2776': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478822124782613688/627BF56E6C82092CAEF5D202E25E9C0E6B6F0466/ + NumHeight: 4 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267601 +- 231718 +- 267835 +- 231716 +- 231721 +- 267803 +- 267602 +- 267600 +- 231717 +- 231716 +- 231718 +- 267836 +- 267600 +- 267804 +- 267800 +- 231720 +- 267802 +- 267603 +- 267600 +- 231721 +- 267601 +- 267800 +- 267833 +- 267832 +- 267800 +- 231716 +- 267602 +- 231720 +- 231717 +- 267807 +- 277626 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 4dbc54 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92790031 + posY: 1.7588228 + posZ: 5.762901 + rotX: 359.919739 + rotY: 269.9687 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Deck Rare Assets b4fdc7.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Deck Rare Assets b4fdc7.yaml new file mode 100644 index 000000000..463bc221d --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Deck Rare Assets b4fdc7.yaml @@ -0,0 +1,1008 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 270859 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2708': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f37da0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Wigglytuff (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.1643677 + posY: 2.29466033 + posZ: -92.286 + rotX: 0.0208087415 + rotY: 269.999939 + rotZ: 0.01677116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269541 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2695': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '290982' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Poliwhirl (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.49959326 + posY: 2.35844254 + posZ: -73.42042 + rotX: 0.020809222 + rotY: 269.998779 + rotZ: 0.0167715568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2704': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1bfcd3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Graveler (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.501009 + posY: 2.41560912 + posZ: -75.69878 + rotX: 0.0208076611 + rotY: 269.996979 + rotZ: 0.01676834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2720': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9ae052 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Raichu (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.4154949 + posY: 2.08696342 + posZ: -97.68598 + rotX: 359.332825 + rotY: 269.998322 + rotZ: 0.0167983361 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2688': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 056b24 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pidgeotto (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9011421 + posY: 1.985616 + posZ: -100.131729 + rotX: 0.02080906 + rotY: 269.998535 + rotZ: 0.0167711265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2685': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 215bb7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Exeggutor (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.5850182 + posY: 2.34497166 + posZ: -93.904686 + rotX: 359.332825 + rotY: 269.99646 + rotZ: 0.0168202147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268925 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2689': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '775582' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kingler (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9140272 + posY: 2.3305428 + posZ: -84.201416 + rotX: 0.0208111536 + rotY: 269.9973 + rotZ: 0.0167711135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2682': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 48a727 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gloom (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.5786 + posY: 2.32966423 + posZ: -67.9397659 + rotX: 0.0208100118 + rotY: 269.996643 + rotZ: 0.0167700313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272757 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2727': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a3cbef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Weepinbell (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.28058 + posY: 2.3290453 + posZ: -69.50996 + rotX: 0.0208090339 + rotY: 269.9997 + rotZ: 0.0167709049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2717': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f66d99 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Golbat (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.10876 + posY: 2.32665467 + posZ: -76.22074 + rotX: 0.0208082721 + rotY: 269.996857 + rotZ: 0.0167695377 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2692': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 68facf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Clefable (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.3180523 + posY: 2.29423618 + posZ: -96.46822 + rotX: 0.02081172 + rotY: 269.9958 + rotZ: 0.0167714711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267753 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 69cfd0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Snorlax + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.514061 + posY: 2.30767155 + posZ: -61.1594658 + rotX: 0.0208094958 + rotY: 269.9975 + rotZ: 0.01677081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267752 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dcb4c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lickitung + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.539299 + posY: 2.54712415 + posZ: -63.35171 + rotX: 0.0208097566 + rotY: 269.9975 + rotZ: 0.01677087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267751 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f49176 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lapras + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.71938 + posY: 2.41880083 + posZ: -64.34725 + rotX: 0.02080993 + rotY: 269.99762 + rotZ: 0.0167701133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267749 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bebe7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Dratini + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.2413425 + posY: 2.419513 + posZ: -61.6512146 + rotX: 0.0208100267 + rotY: 269.997772 + rotZ: 0.0167699959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267750 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bcdb4e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Kanaskhan + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.81132 + posY: 2.54641271 + posZ: -68.02298 + rotX: 0.0208092052 + rotY: 269.997742 + rotZ: 0.0167703629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267748 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: b453d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ditto + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.44265 + posY: 2.41933084 + posZ: -62.3478355 + rotX: 0.0208092127 + rotY: 269.997864 + rotZ: 0.0167702921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267747 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 86c451 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Chansey + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.1278152 + posY: 2.41889048 + posZ: -63.9618454 + rotX: 0.0208098348 + rotY: 269.9979 + rotZ: 0.0167699363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267754 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c3190e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tauros + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1232424 + posY: 2.48485446 + posZ: -16.02921 + rotX: 359.920135 + rotY: 269.998535 + rotZ: 0.0168761462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2682': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2685': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2688': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2689': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2692': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2695': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2704': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2708': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2717': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2720': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2727': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 270859 +- 269541 +- 270419 +- 272044 +- 268840 +- 268514 +- 268925 +- 268216 +- 272757 +- 271717 +- 269205 +- 267753 +- 267752 +- 267751 +- 267749 +- 267750 +- 267748 +- 267747 +- 267754 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: b4fdc7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Rare Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.737399638 + posY: 1.59851515 + posZ: 19.1411018 + rotX: 359.920135 + rotY: 269.998444 + rotZ: 0.0168823134 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Deck Rare Encounter Set 02610c.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Deck Rare Encounter Set 02610c.yaml new file mode 100644 index 000000000..c1266bdf0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Deck Rare Encounter Set 02610c.yaml @@ -0,0 +1,920 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267861 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2f3e94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7288742 + posY: 1.57552576 + posZ: -4.707577 + rotX: 359.932617 + rotY: 269.999939 + rotZ: 0.0138330935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267854 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 04fbfc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4184074 + posY: 1.643317 + posZ: -4.56822348 + rotX: 359.933441 + rotY: 269.999878 + rotZ: 0.01348167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267857 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 2b360a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3249359 + posY: 1.61457539 + posZ: -4.38055563 + rotX: 359.933716 + rotY: 269.9999 + rotZ: 0.0130347963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267851 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9a90a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.8511982 + posY: 1.6716491 + posZ: -4.70562458 + rotX: 359.932465 + rotY: 269.999878 + rotZ: 0.0139912358 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267860 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 71aac2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.81522 + posY: 1.58503914 + posZ: -4.82249069 + rotX: 359.9325 + rotY: 269.999939 + rotZ: 0.01398095 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267864 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a2b46e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.8294334 + posY: 1.54642951 + posZ: -4.882814 + rotX: 359.9331 + rotY: 269.999939 + rotZ: 0.01384164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267859 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: aeb7fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1070385 + posY: 1.59544921 + posZ: -4.78942537 + rotX: 359.934357 + rotY: 269.999939 + rotZ: 0.0141529925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267866 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d10f76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7763824 + posY: 1.70056987 + posZ: -4.83039951 + rotX: 359.933 + rotY: 270.0 + rotZ: 180.014435 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267856 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c89b11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1950531 + posY: 1.62436426 + posZ: -4.22008848 + rotX: 359.934143 + rotY: 269.999878 + rotZ: 0.0122695034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267853 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e29a11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3690414 + posY: 1.653022 + posZ: -4.46332932 + rotX: 359.9335 + rotY: 269.999878 + rotZ: 0.013344436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267855 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0d9018 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.53936 + posY: 1.63361788 + posZ: -4.06025 + rotX: 359.934235 + rotY: 269.999878 + rotZ: 0.01124593 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267852 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f120d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9491539 + posY: 1.66192007 + posZ: -4.450786 + rotX: 359.933044 + rotY: 269.999878 + rotZ: 0.014011329 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267865 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 4945ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7495613 + posY: 1.50693226 + posZ: -4.51910925 + rotX: 359.9121 + rotY: 269.999939 + rotZ: 0.0039470233 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267858 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6304b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3074913 + posY: 1.60498524 + posZ: -3.97525263 + rotX: 359.935181 + rotY: 269.999939 + rotZ: 0.0096496 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267863 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 527ce6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9577055 + posY: 1.55732691 + posZ: -3.599544 + rotX: 359.930878 + rotY: 269.999939 + rotZ: 359.9833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267849 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '126268' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.3703651 + posY: 1.69154 + posZ: -4.437929 + rotX: 359.933441 + rotY: 269.999878 + rotZ: 0.0134003581 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267862 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ab32cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.34694 + posY: 1.56640959 + posZ: -4.3452816 + rotX: 359.933868 + rotY: 269.999939 + rotZ: 0.0127378786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267850 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e743bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.5542374 + posY: 1.681409 + posZ: -5.39828348 + rotX: 359.933167 + rotY: 269.999878 + rotZ: 0.01335297 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267848 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8275f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4778252 + posY: 1.70083308 + posZ: -5.110941 + rotX: 359.93396 + rotY: 269.999878 + rotZ: 0.0146708526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742892945/8D7E1F1275704E98C96983B0EF520CD9802B3A50/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267861 +- 267854 +- 267857 +- 267851 +- 267860 +- 267864 +- 267859 +- 267866 +- 267856 +- 267853 +- 267855 +- 267852 +- 267865 +- 267858 +- 267863 +- 267849 +- 267862 +- 267850 +- 267848 +Description: Randomly pick 2 and shuffle them into the encounter deck. +DragSelectable: true +GMNotes: '' +GUID: 02610c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Rare Encounter Set +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.2860012 + posY: 1.71129179 + posZ: 10.5345 + rotX: 359.9201 + rotY: 270.000153 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Deck Town Assets fc3752.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Deck Town Assets fc3752.yaml new file mode 100644 index 000000000..2bbb5736b --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Side-Story 2 Project Cerulean 4c07bf/Deck Town Assets fc3752.yaml @@ -0,0 +1,468 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1b04db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Jigglypuff + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.5980854 + posY: 2.923997 + posZ: -11.6731243 + rotX: 359.920135 + rotY: 270.0027 + rotZ: 0.01686976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267531 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5992cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Cubone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.2537537 + posY: 2.61031342 + posZ: -12.5758448 + rotX: 359.920135 + rotY: 270.002747 + rotZ: 0.0168688986 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267532 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '873452' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Grimer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.00922 + posY: 2.61011672 + posZ: -14.3550587 + rotX: 359.920135 + rotY: 270.002625 + rotZ: 0.0168693326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267533 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a4a96f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Growlithe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.02254 + posY: 3.24992967 + posZ: -17.840559 + rotX: 359.920135 + rotY: 270.0025 + rotZ: 0.0168695934 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267534 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 714c76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Koffing + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.50306 + posY: 2.614051 + posZ: -9.270244 + rotX: 359.920135 + rotY: 270.002472 + rotZ: 0.0168699771 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267535 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e6dbc4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Magnemite + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.7738113 + posY: 2.61166573 + posZ: -11.7794247 + rotX: 359.920135 + rotY: 270.002472 + rotZ: 0.0168705974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267536 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cabbdd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Farfetch'd + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.7219658 + posY: 2.67955565 + posZ: -13.7013521 + rotX: 2.572715 + rotY: 270.008057 + rotZ: 0.016536653 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267530 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 1a17e3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pidgey + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.7222042 + posY: 2.61277223 + posZ: -14.1867771 + rotX: 359.920135 + rotY: 270.002319 + rotZ: 0.0168705154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267529 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f1aee6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Rattata + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.8781033 + posY: 2.47851443 + posZ: -9.752915 + rotX: 359.920135 + rotY: 270.00238 + rotZ: 0.0168707855 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2671': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false + '2675': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407208939/FCFCE2D78A2EEF92678B90E3EB55914EFA256537/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +DeckIDs: +- 267115 +- 267531 +- 267532 +- 267533 +- 267534 +- 267535 +- 267536 +- 267530 +- 267529 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: fc3752 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Town Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.65900087 + posY: 1.55510056 + posZ: 19.1106014 + rotX: 359.920135 + rotY: 270.002258 + rotZ: 0.0168721825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940.ttslua b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940.ttslua rename to unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e.ttslua diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e.yaml new file mode 100644 index 000000000..306ba4cb2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e.yaml @@ -0,0 +1,87 @@ +Autoraise: true +ColorDiffuse: + b: 0.5490196 + g: 0.7058823 + r: 0.0 +ContainedObjects: +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Jolteon (3) 010abb.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Hypno (3) 073a77.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Espeon (3) 147ca4.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Untamed Psyduck 1a6456.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Gengar (5) 1bd1ca.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Charmeleon (2) 1c0e52.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Mr. Mime (2) 1ea3d8.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Psyduck (1) 363dd7.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Umbreon (3) 3dd591.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Wartortle (2) 4fb8d1.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Aerodactyl 569461.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Fine Clothes (Casual Cut) (2) 56f4db.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Conjurign Cube (4) 5d6044.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Vaporeon (3) 5e5f17.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Fine Clothes (Exquisite Cut) (2) + 61b124.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Voltorb (1) 655d39.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Fine Clothes (Inspiring Cut) (2) + 6de815.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Untamed Onix 739f05.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Untamed Meowth 7ac903.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Summoner''s Codex (3) 8a984a.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Electrode (3) 8c3d02.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Flareon (3) 97a46c.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Untamed Drowzee 97a565.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Blastoise (5) 9b72eb.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Untamed Voltorb a39ba7.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Onix (2) a6ff9e.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Persian (3) aadb01.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Conjuring Cube (2) ade056.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Machamp (5) b29f0b.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Untamed Pinsir b34cd0.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Untamed Jynx b7c488.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Haunter (2) bb33ee.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Jynx (2) bf6c85.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Untamed Sandshrew c12add.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Venusaur (5) c3a586.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Ivysaur (2) cdcf10.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Untamed Mr. Mime d05498.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Machoke (2) d2c284.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Old Amber (3) d39526.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Pinsir (2) dedff3.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Drowzee (1) e5bd1a.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Sandslash (3) f08c49.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Charizard (5) f0cefa.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Golduck (3) f3053e.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Sandshrew (1) f3a5f4.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Fine Clothes (Intimidating Cut) + (2) fb14c5.yaml' +- !include 'Bag Upgrade Player Pokemon 2cea4e/Card Meowth (1) ff4be8.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 2cea4e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Upgrade Player Pokemon 2cea4e.ttslua' +LuaScriptState: '{"ml":{"010abb":{"lock":false,"pos":{"x":49.2785,"y":1.2993,"z":-77.3087},"rot":{"x":0.0208,"y":270.0042,"z":0.0168}},"073a77":{"lock":false,"pos":{"x":44.229,"y":1.2995,"z":-70.4007},"rot":{"x":0.0208,"y":270.004,"z":0.0168}},"147ca4":{"lock":false,"pos":{"x":52.9442,"y":1.3006,"z":-77.3203},"rot":{"x":0.0208,"y":270.0042,"z":0.0168}},"1a6456":{"lock":false,"pos":{"x":58.0997,"y":1.3059,"z":-65.8708},"rot":{"x":0.0208,"y":270.004,"z":0.0168}},"1bd1ca":{"lock":false,"pos":{"x":52.9442,"y":1.3047,"z":-63.5204},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"1c0e52":{"lock":false,"pos":{"x":44.229,"y":1.3022,"z":-61.2008},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"1ea3d8":{"lock":false,"pos":{"x":44.229,"y":1.2982,"z":-75.0007},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"363dd7":{"lock":false,"pos":{"x":58.0997,"y":1.3052,"z":-68.1708},"rot":{"x":0.0208,"y":270.004,"z":0.0168}},"3dd591":{"lock":false,"pos":{"x":44.229,"y":1.2975,"z":-77.3006},"rot":{"x":0.0208,"y":270.0042,"z":0.0168}},"4fb8d1":{"lock":false,"pos":{"x":58.0997,"y":1.3072,"z":-61.271},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"569461":{"lock":false,"pos":{"x":52.9442,"y":1.3013,"z":-75.0203},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"56f4db":{"lock":false,"pos":{"x":44.231,"y":1.2961,"z":-81.888},"rot":{"x":0.0208,"y":270.0095,"z":0.0168}},"5d6044":{"lock":false,"pos":{"x":52.9441,"y":1.2986,"z":-84.2202},"rot":{"x":0.0208,"y":269.9984,"z":0.0168}},"5e5f17":{"lock":false,"pos":{"x":40.6758,"y":1.2962,"z":-77.3127},"rot":{"x":0.0208,"y":270.0042,"z":0.0168}},"61b124":{"lock":false,"pos":{"x":44.2289,"y":1.2955,"z":-84.2006},"rot":{"x":0.0208,"y":270.0094,"z":0.0168}},"655d39":{"lock":false,"pos":{"x":40.6759,"y":1.2989,"z":-68.1127},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"6de815":{"lock":false,"pos":{"x":40.6791,"y":1.7721,"z":-81.9129},"rot":{"x":0.0208,"y":270.0094,"z":0.0168}},"739f05":{"lock":false,"pos":{"x":40.6759,"y":1.2975,"z":-72.7127},"rot":{"x":0.0208,"y":270.004,"z":0.0168}},"7ac903":{"lock":false,"pos":{"x":49.2785,"y":1.3027,"z":-65.8087},"rot":{"x":0.0208,"y":270.004,"z":0.0168}},"8a984a":{"lock":false,"pos":{"x":49.2785,"y":1.298,"z":-81.9088},"rot":{"x":0.0208,"y":269.9984,"z":0.0168}},"8c3d02":{"lock":false,"pos":{"x":40.6758,"y":1.2982,"z":-70.4128},"rot":{"x":0.0208,"y":270.004,"z":0.0168}},"97a46c":{"lock":false,"pos":{"x":58.0997,"y":1.3025,"z":-77.3709},"rot":{"x":0.0208,"y":270.0042,"z":0.0168}},"97a565":{"lock":false,"pos":{"x":44.229,"y":1.3009,"z":-65.8007},"rot":{"x":0.0208,"y":270.004,"z":0.0168}},"9b72eb":{"lock":false,"pos":{"x":58.0997,"y":1.3065,"z":-63.571},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"a39ba7":{"lock":false,"pos":{"x":40.6759,"y":1.2996,"z":-65.8127},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"a6ff9e":{"lock":false,"pos":{"x":40.6758,"y":1.2969,"z":-75.0128},"rot":{"x":0.0208,"y":270.004,"z":0.0168}},"aadb01":{"lock":false,"pos":{"x":49.2785,"y":1.3013,"z":-70.4087},"rot":{"x":0.0208,"y":270.004,"z":0.0168}},"ade056":{"lock":false,"pos":{"x":52.9463,"y":1.2993,"z":-81.9204},"rot":{"x":0.0208,"y":269.9984,"z":0.0168}},"b29f0b":{"lock":false,"pos":{"x":40.6759,"y":1.3002,"z":-63.5129},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"b34cd0":{"lock":false,"pos":{"x":58.0997,"y":1.3038,"z":-72.771},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"b7c488":{"lock":false,"pos":{"x":49.2785,"y":1.3007,"z":-72.7087},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"bb33ee":{"lock":false,"pos":{"x":52.9442,"y":1.3054,"z":-61.2203},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"bf6c85":{"lock":false,"pos":{"x":49.2785,"y":1.3,"z":-75.0088},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"c12add":{"lock":false,"pos":{"x":52.9442,"y":1.304,"z":-65.8202},"rot":{"x":0.0208,"y":270.004,"z":0.0168}},"c3a586":{"lock":false,"pos":{"x":49.2785,"y":1.3034,"z":-63.5088},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"cdcf10":{"lock":false,"pos":{"x":49.2785,"y":1.304,"z":-61.2088},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"d05498":{"lock":false,"pos":{"x":44.229,"y":1.2988,"z":-72.7007},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"d2c284":{"lock":false,"pos":{"x":40.6758,"y":1.3009,"z":-61.2129},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"d39526":{"lock":false,"pos":{"x":52.9442,"y":1.302,"z":-72.7203},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"dedff3":{"lock":false,"pos":{"x":58.0997,"y":1.3032,"z":-75.071},"rot":{"x":0.0208,"y":270.004,"z":0.0168}},"e5bd1a":{"lock":false,"pos":{"x":44.229,"y":1.3002,"z":-68.1007},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"f08c49":{"lock":false,"pos":{"x":52.9442,"y":1.3027,"z":-70.4202},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"f0cefa":{"lock":false,"pos":{"x":44.229,"y":1.3015,"z":-63.5008},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"f3053e":{"lock":false,"pos":{"x":58.0997,"y":1.3045,"z":-70.4708},"rot":{"x":0.0208,"y":270.004,"z":0.0168}},"f3a5f4":{"lock":false,"pos":{"x":52.9442,"y":1.3227,"z":-68.1199},"rot":{"x":0.0207,"y":270.0001,"z":359.0037}},"fb14c5":{"lock":false,"pos":{"x":40.6791,"y":1.7719,"z":-84.2122},"rot":{"x":0.0208,"y":270.0096,"z":0.0168}},"ff4be8":{"lock":false,"pos":{"x":49.2785,"y":1.302,"z":-68.1087},"rot":{"x":0.0208,"y":270.004,"z":0.0168}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Upgrade Player Pokemon +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.0026 + posY: 1.11217046 + posZ: -58.8018 + rotX: 359.979156 + rotY: 89.99147 + rotZ: 359.983215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Aerodactyl 569461.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Aerodactyl 569461.yaml new file mode 100644 index 000000000..eef9878ae --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Aerodactyl 569461.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267733 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: '569461' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Aerodactyl +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.30131912 + posZ: -75.0202942 + rotX: 0.0208075 + rotY: 270.0041 + rotZ: 0.0167726725 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Blastoise (5) 9b72eb.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Blastoise (5) 9b72eb.yaml new file mode 100644 index 000000000..69b2cb1bd --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Blastoise (5) 9b72eb.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267718 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 9b72eb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Blastoise (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0997 + posY: 1.30654287 + posZ: -63.571 + rotX: 0.0208072364 + rotY: 270.0041 + rotZ: 0.016772693 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Charizard (5) f0cefa.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Charizard (5) f0cefa.yaml new file mode 100644 index 000000000..5bd2e58ef --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Charizard (5) f0cefa.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267719 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: f0cefa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Charizard (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.301526 + posZ: -63.5008 + rotX: 0.0208073258 + rotY: 270.0041 + rotZ: 0.01677266 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Charmeleon (2) 1c0e52.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Charmeleon (2) 1c0e52.yaml new file mode 100644 index 000000000..35e34ecb1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Charmeleon (2) 1c0e52.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267713 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 1c0e52 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Charmeleon (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289925 + posY: 1.30219913 + posZ: -61.20081 + rotX: 0.0208085086 + rotY: 270.0 + rotZ: 0.0167710837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Conjurign Cube (4) 5d6044.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Conjurign Cube (4) 5d6044.yaml new file mode 100644 index 000000000..518389a44 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Conjurign Cube (4) 5d6044.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267608 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 5d6044 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Conjurign Cube (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9441 + posY: 1.29862607 + posZ: -84.2202 + rotX: 0.0208090879 + rotY: 269.998352 + rotZ: 0.0167707857 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Conjuring Cube (2) ade056.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Conjuring Cube (2) ade056.yaml new file mode 100644 index 000000000..3a2c0ff1a --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Conjuring Cube (2) ade056.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267607 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ade056 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Conjuring Cube (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9463 + posY: 1.29930007 + posZ: -81.9204 + rotX: 0.0208089557 + rotY: 269.998444 + rotZ: 0.0167705249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Drowzee (1) e5bd1a.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Drowzee (1) e5bd1a.yaml new file mode 100644 index 000000000..22388a1bd --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Drowzee (1) e5bd1a.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267723 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e5bd1a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Drowzee (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.3001796 + posZ: -68.10069 + rotX: 0.02080724 + rotY: 270.0041 + rotZ: 0.01677272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Electrode (3) 8c3d02.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Electrode (3) 8c3d02.yaml new file mode 100644 index 000000000..4da99b412 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Electrode (3) 8c3d02.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267728 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8c3d02 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Electrode (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758 + posY: 1.29821217 + posZ: -70.4128 + rotX: 0.0208072886 + rotY: 270.004028 + rotZ: 0.0167726539 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Espeon (3) 147ca4.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Espeon (3) 147ca4.yaml new file mode 100644 index 000000000..3a8d29b95 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Espeon (3) 147ca4.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267748 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 147ca4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Espeon (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.30064583 + posZ: -77.3203 + rotX: 0.020807229 + rotY: 270.004181 + rotZ: 0.016772721 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Fine Clothes (Casual Cut) (2) 56f4db.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Fine Clothes (Casual Cut) (2) 56f4db.yaml new file mode 100644 index 000000000..c07e8b114 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Fine Clothes (Casual Cut) (2) 56f4db.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267801 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 56f4db +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Fine Clothes (Casual Cut) (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.231 + posY: 1.29614449 + posZ: -81.888 + rotX: 0.0208057929 + rotY: 270.009521 + rotZ: 0.0167745948 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Fine Clothes (Exquisite Cut) (2) 61b124.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Fine Clothes (Exquisite Cut) (2) 61b124.yaml new file mode 100644 index 000000000..ccc5e791a --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Fine Clothes (Exquisite Cut) (2) 61b124.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267803 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 61b124 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Fine Clothes (Exquisite Cut) (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289 + posY: 1.29546678 + posZ: -84.2006 + rotX: 0.02080593 + rotY: 270.0094 + rotZ: 0.0167745445 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Fine Clothes (Inspiring Cut) (2) 6de815.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Fine Clothes (Inspiring Cut) (2) 6de815.yaml new file mode 100644 index 000000000..81f3c085f --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Fine Clothes (Inspiring Cut) (2) 6de815.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267805 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 6de815 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Fine Clothes (Inspiring Cut) (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6791039 + posY: 1.29484725 + posZ: -81.9129 + rotX: 0.0208066534 + rotY: 270.009369 + rotZ: 0.0167748556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Fine Clothes (Intimidating Cut) (2) fb14c5.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Fine Clothes (Intimidating Cut) (2) fb14c5.yaml new file mode 100644 index 000000000..87b2b8a57 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Fine Clothes (Intimidating Cut) (2) fb14c5.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267807 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2678': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1300926501835330271/5FBC72DE750B1485515D368F12A6CE8CC5BA398C/ + NumHeight: 2 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: fb14c5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Fine Clothes (Intimidating Cut) (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6791039 + posY: 1.29417419 + posZ: -84.2122 + rotX: 0.0208065845 + rotY: 270.009583 + rotZ: 0.0167751089 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Flareon (3) 97a46c.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Flareon (3) 97a46c.yaml new file mode 100644 index 000000000..e6c1ae3e5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Flareon (3) 97a46c.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267749 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 97a46c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Flareon (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0997 + posY: 1.30250335 + posZ: -77.3709 + rotX: 0.0208073854 + rotY: 270.004181 + rotZ: 0.0167727321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Gengar (5) 1bd1ca.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Gengar (5) 1bd1ca.yaml new file mode 100644 index 000000000..5de0cbe5d --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Gengar (5) 1bd1ca.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267720 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 1bd1ca +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Gengar (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.30468535 + posZ: -63.5204 + rotX: 0.0208074655 + rotY: 270.0041 + rotZ: 0.0167726278 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Golduck (3) f3053e.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Golduck (3) f3053e.yaml new file mode 100644 index 000000000..b2f1fe059 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Golduck (3) f3053e.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267729 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: f3053e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Golduck (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0997 + posY: 1.30452311 + posZ: -70.4708 + rotX: 0.020807527 + rotY: 270.004028 + rotZ: 0.01677277 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Haunter (2) bb33ee.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Haunter (2) bb33ee.yaml new file mode 100644 index 000000000..7aeeac743 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Haunter (2) bb33ee.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267714 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: bb33ee +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Haunter (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.30535865 + posZ: -61.2203 + rotX: 0.0208075419 + rotY: 270.0041 + rotZ: 0.01677275 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Hypno (3) 073a77.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Hypno (3) 073a77.yaml new file mode 100644 index 000000000..1d2ef206b --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Hypno (3) 073a77.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267730 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 073a77 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Hypno (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.29950619 + posZ: -70.4007 + rotX: 0.0208071843 + rotY: 270.004028 + rotZ: 0.0167727415 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Ivysaur (2) cdcf10.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Ivysaur (2) cdcf10.yaml new file mode 100644 index 000000000..45b2599fe --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Ivysaur (2) cdcf10.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267715 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: cdcf10 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Ivysaur (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.2785 + posY: 1.30403066 + posZ: -61.2088 + rotX: 0.0208075438 + rotY: 270.0041 + rotZ: 0.0167725943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Jolteon (3) 010abb.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Jolteon (3) 010abb.yaml new file mode 100644 index 000000000..ac03f9bf2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Jolteon (3) 010abb.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267750 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 010abb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Jolteon (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.2785 + posY: 1.299318 + posZ: -77.3087 + rotX: 0.0208073016 + rotY: 270.0042 + rotZ: 0.01677269 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Jynx (2) bf6c85.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Jynx (2) bf6c85.yaml new file mode 100644 index 000000000..ef48ac05c --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Jynx (2) bf6c85.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267734 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: bf6c85 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Jynx (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.2785 + posY: 1.29999125 + posZ: -75.00879 + rotX: 0.02080732 + rotY: 270.0041 + rotZ: 0.0167727619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Machamp (5) b29f0b.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Machamp (5) b29f0b.yaml new file mode 100644 index 000000000..f62b123e8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Machamp (5) b29f0b.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267721 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: b29f0b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Machamp (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6759 + posY: 1.300232 + posZ: -63.5129 + rotX: 0.0208073109 + rotY: 270.0041 + rotZ: 0.0167726316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Machoke (2) d2c284.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Machoke (2) d2c284.yaml new file mode 100644 index 000000000..0c930582d --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Machoke (2) d2c284.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267716 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d2c284 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Machoke (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758 + posY: 1.30090523 + posZ: -61.2129 + rotX: 0.0208073054 + rotY: 270.0041 + rotZ: 0.016772531 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Meowth (1) ff4be8.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Meowth (1) ff4be8.yaml new file mode 100644 index 000000000..387533172 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Meowth (1) ff4be8.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267724 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ff4be8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Meowth (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.2785 + posY: 1.30201089 + posZ: -68.1087 + rotX: 0.0208073575 + rotY: 270.004028 + rotZ: 0.0167728234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Mr. Mime (2) 1ea3d8.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Mr. Mime (2) 1ea3d8.yaml new file mode 100644 index 000000000..2f7208b91 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Mr. Mime (2) 1ea3d8.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267735 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 1ea3d8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Mr. Mime (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.29815972 + posZ: -75.0007 + rotX: 0.0208074022 + rotY: 270.0041 + rotZ: 0.0167727135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Old Amber (3) d39526.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Old Amber (3) d39526.yaml new file mode 100644 index 000000000..897dd9f79 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Old Amber (3) d39526.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267743 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d39526 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Old Amber (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.30199242 + posZ: -72.7203 + rotX: 0.0208075233 + rotY: 270.00412 + rotZ: 0.0167726912 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Onix (2) a6ff9e.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Onix (2) a6ff9e.yaml new file mode 100644 index 000000000..9d7116498 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Onix (2) a6ff9e.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267736 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: a6ff9e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Onix (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758 + posY: 1.29686582 + posZ: -75.0128 + rotX: 0.0208072327 + rotY: 270.004028 + rotZ: 0.0167727545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Persian (3) aadb01.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Persian (3) aadb01.yaml new file mode 100644 index 000000000..5d79c9ed7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Persian (3) aadb01.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267731 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: aadb01 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Persian (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.2785 + posY: 1.30133772 + posZ: -70.4087 + rotX: 0.0208073687 + rotY: 270.004028 + rotZ: 0.01677258 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Pinsir (2) dedff3.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Pinsir (2) dedff3.yaml new file mode 100644 index 000000000..5852390eb --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Pinsir (2) dedff3.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267737 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: dedff3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Pinsir (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0997 + posY: 1.30317676 + posZ: -75.071 + rotX: 0.02080744 + rotY: 270.004028 + rotZ: 0.0167728756 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Psyduck (1) 363dd7.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Psyduck (1) 363dd7.yaml new file mode 100644 index 000000000..33614b58d --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Psyduck (1) 363dd7.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267725 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 363dd7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Psyduck (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0997 + posY: 1.3051964 + posZ: -68.1708 + rotX: 0.0208073687 + rotY: 270.004028 + rotZ: 0.0167728737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Sandshrew (1) f3a5f4.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Sandshrew (1) f3a5f4.yaml new file mode 100644 index 000000000..6e7ec36e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Sandshrew (1) f3a5f4.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267726 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: f3a5f4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Sandshrew (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442329 + posY: 1.303339 + posZ: -68.12041 + rotX: 0.0207696538 + rotY: 269.9981 + rotZ: 0.016750576 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Sandslash (3) f08c49.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Sandslash (3) f08c49.yaml new file mode 100644 index 000000000..d74c12b14 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Sandslash (3) f08c49.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267732 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: f08c49 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Sandslash (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.30266571 + posZ: -70.4202 + rotX: 0.0208085869 + rotY: 270.000061 + rotZ: 0.0167711563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Summoner's Codex (3) 8a984a.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Summoner's Codex (3) 8a984a.yaml new file mode 100644 index 000000000..37606955f --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Summoner's Codex (3) 8a984a.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267652 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2676': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8a984a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Summoner's Codex (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.2785 + posY: 1.29797149 + posZ: -81.9088 + rotX: 0.0208089538 + rotY: 269.998444 + rotZ: 0.016770808 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Umbreon (3) 3dd591.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Umbreon (3) 3dd591.yaml new file mode 100644 index 000000000..e1714b8b9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Umbreon (3) 3dd591.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267751 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 3dd591 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Umbreon (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.29748654 + posZ: -77.3006 + rotX: 0.02080726 + rotY: 270.004242 + rotZ: 0.01677261 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Drowzee 97a565.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Drowzee 97a565.yaml new file mode 100644 index 000000000..f05df5668 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Drowzee 97a565.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267738 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 97a565 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Untamed Drowzee +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.30085278 + posZ: -65.8007 + rotX: 0.02080738 + rotY: 270.004028 + rotZ: 0.0167728029 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Jynx b7c488.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Jynx b7c488.yaml new file mode 100644 index 000000000..0f86d03d0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Jynx b7c488.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267744 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: b7c488 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Untamed Jynx +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.2785 + posY: 1.30066454 + posZ: -72.7086945 + rotX: 0.0208074786 + rotY: 270.0041 + rotZ: 0.0167726781 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Meowth 7ac903.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Meowth 7ac903.yaml new file mode 100644 index 000000000..44982cf25 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Meowth 7ac903.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267739 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 7ac903 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Untamed Meowth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.2785 + posY: 1.30268419 + posZ: -65.8087 + rotX: 0.0208073668 + rotY: 270.004028 + rotZ: 0.0167725384 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Mr. Mime d05498.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Mr. Mime d05498.yaml new file mode 100644 index 000000000..e9942dcbc --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Mr. Mime d05498.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267745 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d05498 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Untamed Mr. Mime +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.298833 + posZ: -72.7007 + rotX: 0.02080749 + rotY: 270.0041 + rotZ: 0.01677272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Onix 739f05.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Onix 739f05.yaml new file mode 100644 index 000000000..fb14c4e81 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Onix 739f05.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267946 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2679': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 739f05 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Untamed Onix +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6759 + posY: 1.297539 + posZ: -72.7127 + rotX: 0.0208073612 + rotY: 270.004028 + rotZ: 0.01677284 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Pinsir b34cd0.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Pinsir b34cd0.yaml new file mode 100644 index 000000000..0e8d70d64 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Pinsir b34cd0.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267747 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: b34cd0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Untamed Pinsir +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0997 + posY: 1.30384982 + posZ: -72.771 + rotX: 0.020807486 + rotY: 270.00412 + rotZ: 0.016772788 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Psyduck 1a6456.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Psyduck 1a6456.yaml new file mode 100644 index 000000000..cf93c0da1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Psyduck 1a6456.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267740 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 1a6456 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Untamed Psyduck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0997 + posY: 1.3058697 + posZ: -65.8708 + rotX: 0.0208073463 + rotY: 270.004028 + rotZ: 0.0167727172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Sandshrew c12add.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Sandshrew c12add.yaml new file mode 100644 index 000000000..60459c761 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Sandshrew c12add.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267741 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c12add +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Untamed Sandshrew +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.30401206 + posZ: -65.8202 + rotX: 0.0208074972 + rotY: 270.004028 + rotZ: 0.0167727675 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Voltorb a39ba7.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Voltorb a39ba7.yaml new file mode 100644 index 000000000..be5859d4e --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Untamed Voltorb a39ba7.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267742 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: a39ba7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Untamed Voltorb +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6759 + posY: 1.29955876 + posZ: -65.8127 + rotX: 0.020807283 + rotY: 270.00412 + rotZ: 0.0167725123 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Vaporeon (3) 5e5f17.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Vaporeon (3) 5e5f17.yaml new file mode 100644 index 000000000..bef0df947 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Vaporeon (3) 5e5f17.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267752 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 5e5f17 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Vaporeon (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758 + posY: 1.29619253 + posZ: -77.3127 + rotX: 0.0208073873 + rotY: 270.0042 + rotZ: 0.01677265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Venusaur (5) c3a586.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Venusaur (5) c3a586.yaml new file mode 100644 index 000000000..8b981785e --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Venusaur (5) c3a586.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267722 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c3a586 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Venusaur (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.2785 + posY: 1.30335748 + posZ: -63.5088 + rotX: 0.0208073016 + rotY: 270.0041 + rotZ: 0.0167728048 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Voltorb (1) 655d39.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Voltorb (1) 655d39.yaml new file mode 100644 index 000000000..30218ee6c --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Voltorb (1) 655d39.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267727 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 655d39 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Voltorb (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6759 + posY: 1.29888558 + posZ: -68.1127 + rotX: 0.02080756 + rotY: 270.0041 + rotZ: 0.0167727228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Wartortle (2) 4fb8d1.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Wartortle (2) 4fb8d1.yaml new file mode 100644 index 000000000..95d458e78 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Player Pokemon 2cea4e/Card Wartortle (2) 4fb8d1.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267717 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1482200660407211931/802A909BBF1E26BAE1070337E4F4D9917FC9A65B/ + NumHeight: 6 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 4fb8d1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Wartortle (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0997 + posY: 1.307216 + posZ: -61.271 + rotX: 0.0208074469 + rotY: 270.0041 + rotZ: 0.016772911 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b.ttslua b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b.ttslua rename to unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f.ttslua diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f.yaml new file mode 100644 index 000000000..54dc08de9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f.yaml @@ -0,0 +1,94 @@ +Autoraise: true +ColorDiffuse: + b: 0.5490196 + g: 0.7058823 + r: 0.0 +ContainedObjects: +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Seaking (3) 0bc5c3.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Kabuto (1) 13d2d9.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Gyarados (5) 15052e.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Gloom (2) 15e776.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Golem (5) 1c2583.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Arbok (2) 1cfc32.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Exeggutor (4) 1eab5b.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Slowbro (4) 21dc8f.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Primape (3) 256a09.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Pidgeotto (1) 25ad5e.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Kingler (3) 307ec2.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Kakuna (1) 340a11.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Kadabara (3) 379245.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Clefable (4) 3eb015.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Dragonite (5) 3ebf5d.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Vileplume (4) 415dac.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Poliwhirl (1) 43303b.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Magneton (2) 4dfa56.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Omastar (3) 522af2.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Beedrill (4) 5463a1.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Dewgong (3) 548757.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Starmie (4) 578fac.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Cloyster (4) 6b0a31.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Nidoqueen (4) 71b1af.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Light Ball (4) 71e40b.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Graveler (2) 813751.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Venomoth (3) 89d217.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Victreebell (4) 8d1f1a.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Nidorina (2) 8db989.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Wigglytuff (2) 90c188.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Raticate (2) 9bc236.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Butterfree (4) 9d5f9e.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Parsect (3) 9dfa3f.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Dodrio (3) 9fe1d8.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Seadra (2) a24ce1.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Kabutops (3) a6746c.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Rapidash (3) a82e8f.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Rhydon (4) acbde9.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Golbat (2) b59313.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Dugtrio (3) b98e55.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Metapod (1) bbe4d6.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Raichu (4) bccfe2.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Marrowak (3) bd4a48.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Pidgeot (4) bd848f.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Muk (5) c20ba2.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Poliwrath (4) c7b714.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Nidoking (4) c9df36.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Tentacruel (2) cc0ea7.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Weepinbell (2) cd6768.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Omanyte (1) d05219.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Weezing (2) d24547.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Fearow (2) e21079.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Ninetails (3) e807ef.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Arcanine (4) e9b20a.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Alakazam (5) f2050c.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Dragonair (5) fb23d5.yaml' +- !include 'Bag Upgrade Wild Pokemon e4069f/Card Nidorino (2) ffa6d1.yaml' +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e4069f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Upgrade Wild Pokemon e4069f.ttslua' +LuaScriptState: '{"ml":{"0bc5c3":{"lock":false,"pos":{"x":7.0765,"y":1.3201,"z":-74.9602},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"13d2d9":{"lock":false,"pos":{"x":24.5003,"y":1.2944,"z":-63.5186},"rot":{"x":0.0208,"y":269.9972,"z":0.0168}},"15052e":{"lock":false,"pos":{"x":7.0766,"y":1.3221,"z":-68.0601},"rot":{"x":0.0208,"y":269.9971,"z":0.0168}},"15e776":{"lock":false,"pos":{"x":19.3436,"y":1.2938,"z":-58.8679},"rot":{"x":0.0208,"y":269.9967,"z":0.0168}},"1c2583":{"lock":false,"pos":{"x":24.5003,"y":1.295,"z":-61.2186},"rot":{"x":0.0208,"y":269.9969,"z":0.0168}},"1cfc32":{"lock":false,"pos":{"x":19.3457,"y":1.2871,"z":-81.8678},"rot":{"x":0.0208,"y":269.9958,"z":0.0168}},"1eab5b":{"lock":false,"pos":{"x":15.6801,"y":1.3062,"z":-74.956},"rot":{"x":359.3328,"y":269.9966,"z":0.0168}},"21dc8f":{"lock":false,"pos":{"x":7.0765,"y":1.3194,"z":-77.26},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"256a09":{"lock":false,"pos":{"x":15.6803,"y":1.3055,"z":-77.2559},"rot":{"x":359.3328,"y":269.9995,"z":0.0168}},"25ad5e":{"lock":false,"pos":{"x":10.6297,"y":1.3261,"z":-58.8484},"rot":{"x":0.0208,"y":269.9985,"z":0.0168}},"307ec2":{"lock":false,"pos":{"x":7.0766,"y":1.3214,"z":-70.3601},"rot":{"x":0.0208,"y":269.9973,"z":0.0168}},"340a11":{"lock":false,"pos":{"x":15.6801,"y":1.3102,"z":-61.1563},"rot":{"x":359.3328,"y":269.9973,"z":0.0168}},"379245":{"lock":false,"pos":{"x":19.3436,"y":1.2885,"z":-77.2676},"rot":{"x":0.0208,"y":269.9973,"z":0.0168}},"3eb015":{"lock":false,"pos":{"x":24.5003,"y":1.2917,"z":-72.7183},"rot":{"x":0.0208,"y":269.9958,"z":0.0168}},"3ebf5d":{"lock":false,"pos":{"x":10.6297,"y":1.8523,"z":-86.4478},"rot":{"x":0.0208,"y":269.9963,"z":0.0168}},"415dac":{"lock":false,"pos":{"x":19.3436,"y":1.2932,"z":-61.1679},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"43303b":{"lock":false,"pos":{"x":7.0765,"y":1.3248,"z":-58.8605},"rot":{"x":0.0208,"y":269.9987,"z":0.0168}},"4dfa56":{"lock":false,"pos":{"x":10.6296,"y":1.3241,"z":-65.7481},"rot":{"x":0.0208,"y":269.9973,"z":0.0168}},"522af2":{"lock":false,"pos":{"x":24.5003,"y":1.2923,"z":-70.4182},"rot":{"x":0.0208,"y":269.9982,"z":0.0168}},"5463a1":{"lock":false,"pos":{"x":15.6802,"y":1.3096,"z":-63.4563},"rot":{"x":359.3328,"y":269.9951,"z":0.0168}},"548757":{"lock":false,"pos":{"x":7.0765,"y":1.3228,"z":-65.7601},"rot":{"x":0.0208,"y":269.996,"z":0.0168}},"578fac":{"lock":false,"pos":{"x":7.0767,"y":1.7964,"z":-79.56},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"6b0a31":{"lock":false,"pos":{"x":7.0765,"y":1.3234,"z":-63.4605},"rot":{"x":0.0208,"y":269.9801,"z":0.0168}},"71b1af":{"lock":false,"pos":{"x":19.3437,"y":1.2905,"z":-70.3675},"rot":{"x":0.0208,"y":269.9979,"z":0.0168}},"71e40b":{"lock":false,"pos":{"x":15.6802,"y":1.3082,"z":-68.0559},"rot":{"x":359.3328,"y":269.9967,"z":0.0168}},"813751":{"lock":false,"pos":{"x":24.5003,"y":1.2957,"z":-58.9186},"rot":{"x":0.0208,"y":269.997,"z":0.0168}},"89d217":{"lock":false,"pos":{"x":15.6802,"y":1.3089,"z":-65.7559},"rot":{"x":359.3328,"y":269.999,"z":0.0168}},"8d1f1a":{"lock":false,"pos":{"x":19.3436,"y":1.2918,"z":-65.7676},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"8db989":{"lock":false,"pos":{"x":19.3437,"y":1.2912,"z":-68.0675},"rot":{"x":0.0208,"y":269.998,"z":0.0168}},"90c188":{"lock":false,"pos":{"x":10.6296,"y":1.3214,"z":-74.9481},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"9bc236":{"lock":false,"pos":{"x":10.6297,"y":1.3268,"z":-56.5484},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"9d5f9e":{"lock":false,"pos":{"x":15.6806,"y":1.3109,"z":-58.8562},"rot":{"x":359.3329,"y":269.9962,"z":0.0168}},"9dfa3f":{"lock":false,"pos":{"x":24.5003,"y":1.2903,"z":-77.3182},"rot":{"x":0.0208,"y":269.9983,"z":0.0168}},"9fe1d8":{"lock":false,"pos":{"x":19.3435,"y":1.2864,"z":-84.1675},"rot":{"x":0.0208,"y":269.9961,"z":0.0168}},"a24ce1":{"lock":false,"pos":{"x":7.0765,"y":1.3208,"z":-72.6601},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"a6746c":{"lock":false,"pos":{"x":24.5003,"y":1.2937,"z":-65.8182},"rot":{"x":0.0208,"y":269.9971,"z":0.0168}},"a82e8f":{"lock":false,"pos":{"x":19.3437,"y":1.2858,"z":-86.4676},"rot":{"x":0.0208,"y":269.999,"z":0.0168}},"acbde9":{"lock":false,"pos":{"x":24.5003,"y":1.2896,"z":-79.6182},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"b59313":{"lock":false,"pos":{"x":24.5004,"y":1.2964,"z":-56.6186},"rot":{"x":0.0208,"y":269.9969,"z":0.0168}},"b98e55":{"lock":false,"pos":{"x":24.5003,"y":1.291,"z":-75.0183},"rot":{"x":0.0208,"y":269.9964,"z":0.0168}},"bbe4d6":{"lock":false,"pos":{"x":15.6803,"y":1.3116,"z":-56.5563},"rot":{"x":359.3328,"y":269.9971,"z":0.0168}},"bccfe2":{"lock":false,"pos":{"x":15.6805,"y":1.3075,"z":-70.3559},"rot":{"x":359.3329,"y":269.9984,"z":0.0168}},"bd4a48":{"lock":false,"pos":{"x":10.6296,"y":1.3234,"z":-68.0481},"rot":{"x":0.0208,"y":269.9974,"z":0.0168}},"bd848f":{"lock":false,"pos":{"x":10.6297,"y":1.3254,"z":-61.1485},"rot":{"x":0.0208,"y":269.9985,"z":0.0168}},"c20ba2":{"lock":false,"pos":{"x":10.6296,"y":1.3227,"z":-70.3481},"rot":{"x":0.0208,"y":269.9976,"z":0.0168}},"c7b714":{"lock":false,"pos":{"x":7.0765,"y":1.3241,"z":-61.1605},"rot":{"x":0.0208,"y":269.9987,"z":0.0168}},"c9df36":{"lock":false,"pos":{"x":19.3436,"y":1.2891,"z":-74.9677},"rot":{"x":0.0208,"y":269.9977,"z":0.0168}},"cc0ea7":{"lock":false,"pos":{"x":7.0766,"y":1.3255,"z":-56.5605},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"cd6768":{"lock":false,"pos":{"x":19.3436,"y":1.2925,"z":-63.4679},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"d05219":{"lock":false,"pos":{"x":24.5003,"y":1.293,"z":-68.1182},"rot":{"x":0.0208,"y":269.9981,"z":0.0168}},"d24547":{"lock":false,"pos":{"x":10.6297,"y":1.322,"z":-72.6481},"rot":{"x":0.0208,"y":269.9842,"z":0.0168}},"e21079":{"lock":false,"pos":{"x":19.3437,"y":1.2945,"z":-56.5679},"rot":{"x":0.0208,"y":269.9966,"z":0.0168}},"e807ef":{"lock":false,"pos":{"x":15.6802,"y":1.3069,"z":-72.656},"rot":{"x":359.3328,"y":269.9974,"z":0.0168}},"e9b20a":{"lock":false,"pos":{"x":10.6297,"y":1.3247,"z":-63.4484},"rot":{"x":0.0208,"y":269.9957,"z":0.0168}},"f2050c":{"lock":false,"pos":{"x":19.3436,"y":1.2878,"z":-79.5676},"rot":{"x":0.0208,"y":269.9958,"z":0.0168}},"fb23d5":{"lock":false,"pos":{"x":10.6296,"y":1.8531,"z":-84.148},"rot":{"x":0.0208,"y":269.9966,"z":0.0168}},"ffa6d1":{"lock":false,"pos":{"x":19.3436,"y":1.2898,"z":-72.6677},"rot":{"x":0.0208,"y":269.9979,"z":0.0168}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Bag +Nickname: Upgrade Wild Pokemon +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 33.23 + posY: 1.10042179 + posZ: -58.2793045 + rotX: 359.979156 + rotY: 89.98448 + rotZ: 359.983215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Alakazam (5) f2050c.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Alakazam (5) f2050c.yaml new file mode 100644 index 000000000..70922d571 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Alakazam (5) f2050c.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 273300 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2733': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: f2050c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Alakazam (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436 + posY: 1.28778517 + posZ: -79.5676 + rotX: 0.02080985 + rotY: 269.9958 + rotZ: 0.0167697519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Arbok (2) 1cfc32.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Arbok (2) 1cfc32.yaml new file mode 100644 index 000000000..bab2e3bb3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Arbok (2) 1cfc32.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 268401 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2684': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 1cfc32 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Arbok (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3457 + posY: 1.28711259 + posZ: -81.8678 + rotX: 0.0208097938 + rotY: 269.9958 + rotZ: 0.0167696979 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Arcanine (4) e9b20a.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Arcanine (4) e9b20a.yaml new file mode 100644 index 000000000..3619a819e --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Arcanine (4) e9b20a.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 273202 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2732': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e9b20a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Arcanine (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6297 + posY: 1.32474279 + posZ: -63.4484 + rotX: 0.0208097752 + rotY: 269.995636 + rotZ: 0.0167696271 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Beedrill (4) 5463a1.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Beedrill (4) 5463a1.yaml new file mode 100644 index 000000000..6b368a533 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Beedrill (4) 5463a1.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 269803 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2698': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 5463a1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Beedrill (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6801987 + posY: 1.30955672 + posZ: -63.4563 + rotX: 359.3328 + rotY: 269.9951 + rotZ: 0.0167739484 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Butterfree (4) 9d5f9e.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Butterfree (4) 9d5f9e.yaml new file mode 100644 index 000000000..70b1685c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Butterfree (4) 9d5f9e.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 271004 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2710': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 9d5f9e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Butterfree (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6806 + posY: 1.31090081 + posZ: -58.8562 + rotX: 359.3329 + rotY: 269.996155 + rotZ: 0.0167738684 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Clefable (4) 3eb015.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Clefable (4) 3eb015.yaml new file mode 100644 index 000000000..6d4faa0b7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Clefable (4) 3eb015.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 269205 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2692': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 3eb015 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Clefable (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003 + posY: 1.29166293 + posZ: -72.7183 + rotX: 0.020809669 + rotY: 269.9958 + rotZ: 0.0167697351 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Cloyster (4) 6b0a31.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Cloyster (4) 6b0a31.yaml new file mode 100644 index 000000000..cfb929dbb --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Cloyster (4) 6b0a31.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 270106 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2701': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 6b0a31 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Cloyster (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.0765 + posY: 1.3234489 + posZ: -63.4605 + rotX: 0.0208145 + rotY: 269.980072 + rotZ: 0.0167640764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Dewgong (3) 548757.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Dewgong (3) 548757.yaml new file mode 100644 index 000000000..6d9eb6d08 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Dewgong (3) 548757.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 269909 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2699': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: '548757' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Dewgong (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076498 + posY: 1.32277572 + posZ: -65.7601 + rotX: 0.0208097268 + rotY: 269.9961 + rotZ: 0.016769696 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Dodrio (3) 9fe1d8.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Dodrio (3) 9fe1d8.yaml new file mode 100644 index 000000000..18e26598c --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Dodrio (3) 9fe1d8.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 271210 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2712': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 9fe1d8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Dodrio (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3435 + posY: 1.2864387 + posZ: -84.1675 + rotX: 0.0208097845 + rotY: 269.9961 + rotZ: 0.0167698469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Dragonair (5) fb23d5.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Dragonair (5) fb23d5.yaml new file mode 100644 index 000000000..ae6e2f516 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Dragonair (5) fb23d5.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 273411 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2734': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: fb23d5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Dragonair (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296015 + posY: 1.31868374 + posZ: -84.148 + rotX: 0.02081036 + rotY: 269.9966 + rotZ: 0.0167707149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Dragonite (5) 3ebf5d.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Dragonite (5) 3ebf5d.yaml new file mode 100644 index 000000000..23f8a19ae --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Dragonite (5) 3ebf5d.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 269312 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2693': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 3ebf5d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Dragonite (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6297035 + posY: 1.31801057 + posZ: -86.44779 + rotX: 0.0208091736 + rotY: 269.996277 + rotZ: 0.0167688858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Dugtrio (3) b98e55.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Dugtrio (3) b98e55.yaml new file mode 100644 index 000000000..65502bfe0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Dugtrio (3) b98e55.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 271813 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2718': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: b98e55 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Dugtrio (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003 + posY: 1.29098964 + posZ: -75.0183 + rotX: 0.0208096616 + rotY: 269.9964 + rotZ: 0.016770063 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Exeggutor (4) 1eab5b.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Exeggutor (4) 1eab5b.yaml new file mode 100644 index 000000000..6d1d259b4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Exeggutor (4) 1eab5b.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 268514 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2685': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 1eab5b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Exeggutor (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6801 + posY: 1.30619109 + posZ: -74.956 + rotX: 359.332764 + rotY: 269.996582 + rotZ: 0.0167738926 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Fearow (2) e21079.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Fearow (2) e21079.yaml new file mode 100644 index 000000000..ca2455e63 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Fearow (2) e21079.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 273015 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2730': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e21079 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Fearow (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3437 + posY: 1.29451752 + posZ: -56.5679 + rotX: 0.0208096262 + rotY: 269.996582 + rotZ: 0.01677019 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Gloom (2) 15e776.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Gloom (2) 15e776.yaml new file mode 100644 index 000000000..71ddce81e --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Gloom (2) 15e776.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 268216 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2682': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 15e776 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Gloom (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.34361 + posY: 1.29384434 + posZ: -58.86789 + rotX: 0.0208094381 + rotY: 269.996674 + rotZ: 0.0167693 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Golbat (2) b59313.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Golbat (2) b59313.yaml new file mode 100644 index 000000000..065eb86fb --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Golbat (2) b59313.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 271717 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2717': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: b59313 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Golbat (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5004 + posY: 1.29637551 + posZ: -56.6186 + rotX: 0.0208094921 + rotY: 269.996857 + rotZ: 0.0167701356 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Golem (5) 1c2583.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Golem (5) 1c2583.yaml new file mode 100644 index 000000000..e8e50923f --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Golem (5) 1c2583.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 268318 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2683': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 1c2583 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Golem (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003 + posY: 1.295029 + posZ: -61.2186 + rotX: 0.0208096448 + rotY: 269.996948 + rotZ: 0.0167701188 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Graveler (2) 813751.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Graveler (2) 813751.yaml new file mode 100644 index 000000000..78877829d --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Graveler (2) 813751.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 270419 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2704': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: '813751' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Graveler (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003 + posY: 1.29570222 + posZ: -58.9186 + rotX: 0.0208093412 + rotY: 269.997 + rotZ: 0.0167700574 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Gyarados (5) 15052e.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Gyarados (5) 15052e.yaml new file mode 100644 index 000000000..76962fb24 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Gyarados (5) 15052e.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 268120 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2681': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 15052e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Gyarados (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076602 + posY: 1.32210255 + posZ: -68.0601 + rotX: 0.02080935 + rotY: 269.997131 + rotZ: 0.0167701058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Kabuto (1) 13d2d9.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Kabuto (1) 13d2d9.yaml new file mode 100644 index 000000000..eead1fc6f --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Kabuto (1) 13d2d9.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 268021 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2680': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 13d2d9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Kabuto (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003 + posY: 1.29435575 + posZ: -63.5186 + rotX: 0.02080954 + rotY: 269.9972 + rotZ: 0.0167701319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Kabutops (3) a6746c.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Kabutops (3) a6746c.yaml new file mode 100644 index 000000000..4cf40acd5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Kabutops (3) a6746c.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 271422 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2714': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: a6746c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Kabutops (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003 + posY: 1.29368258 + posZ: -65.8182 + rotX: 0.0208093338 + rotY: 269.997131 + rotZ: 0.0167701561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Kadabara (3) 379245.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Kadabara (3) 379245.yaml new file mode 100644 index 000000000..1b48156e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Kadabara (3) 379245.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 269123 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2691': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: '379245' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Kadabara (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436 + posY: 1.28845835 + posZ: -77.2676 + rotX: 0.0208093654 + rotY: 269.997253 + rotZ: 0.0167702343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Kakuna (1) 340a11.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Kakuna (1) 340a11.yaml new file mode 100644 index 000000000..677bbd1c9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Kakuna (1) 340a11.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 269024 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2690': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 340a11 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Kakuna (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6801472 + posY: 1.310236 + posZ: -61.1562347 + rotX: 359.333 + rotY: 269.996338 + rotZ: 0.0167351235 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Kingler (3) 307ec2.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Kingler (3) 307ec2.yaml new file mode 100644 index 000000000..306fb4db0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Kingler (3) 307ec2.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 268925 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2689': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 307ec2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Kingler (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076598 + posY: 1.32142925 + posZ: -70.3601 + rotX: 0.02080946 + rotY: 269.9973 + rotZ: 0.0167700872 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Light Ball (4) 71e40b.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Light Ball (4) 71e40b.yaml new file mode 100644 index 000000000..b0fe50fc6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Light Ball (4) 71e40b.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 270326 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2703': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 71e40b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Light Ball (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6802 + posY: 1.30821013 + posZ: -68.0559 + rotX: 359.3328 + rotY: 269.9967 + rotZ: 0.0167754143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Magneton (2) 4dfa56.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Magneton (2) 4dfa56.yaml new file mode 100644 index 000000000..0eb1fd3f7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Magneton (2) 4dfa56.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 269627 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2696': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 4dfa56 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Magneton (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6295977 + posY: 1.32406974 + posZ: -65.7481 + rotX: 0.0208093859 + rotY: 269.9974 + rotZ: 0.0167701431 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Marrowak (3) bd4a48.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Marrowak (3) bd4a48.yaml new file mode 100644 index 000000000..70d3afe97 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Marrowak (3) bd4a48.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 272128 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2721': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: bd4a48 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Marrowak (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296015 + posY: 1.32339644 + posZ: -68.0481 + rotX: 0.0208091028 + rotY: 269.997437 + rotZ: 0.0167702511 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Metapod (1) bbe4d6.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Metapod (1) bbe4d6.yaml new file mode 100644 index 000000000..72954f3f1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Metapod (1) bbe4d6.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 271929 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2719': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: bbe4d6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Metapod (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6803 + posY: 1.31157589 + posZ: -56.5563 + rotX: 359.332825 + rotY: 269.99707 + rotZ: 0.0167729612 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Muk (5) c20ba2.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Muk (5) c20ba2.yaml new file mode 100644 index 000000000..e11d36d74 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Muk (5) c20ba2.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 272330 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2723': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c20ba2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Muk (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296015 + posY: 1.32272315 + posZ: -70.3481 + rotX: 0.02080919 + rotY: 269.997559 + rotZ: 0.0167703182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Nidoking (4) c9df36.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Nidoking (4) c9df36.yaml new file mode 100644 index 000000000..46d34b561 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Nidoking (4) c9df36.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 272531 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2725': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c9df36 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Nidoking (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436 + posY: 1.28913164 + posZ: -74.9677 + rotX: 0.02080927 + rotY: 269.99765 + rotZ: 0.01677019 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Nidoqueen (4) 71b1af.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Nidoqueen (4) 71b1af.yaml new file mode 100644 index 000000000..530e3294b --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Nidoqueen (4) 71b1af.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 270232 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2702': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 71b1af +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Nidoqueen (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3437 + posY: 1.29047823 + posZ: -70.3675 + rotX: 0.0208091717 + rotY: 269.997864 + rotZ: 0.0167703461 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Nidorina (2) 8db989.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Nidorina (2) 8db989.yaml new file mode 100644 index 000000000..c5b322e80 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Nidorina (2) 8db989.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 270733 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2707': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8db989 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Nidorina (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3437 + posY: 1.29115152 + posZ: -68.0675 + rotX: 0.0208089855 + rotY: 269.997955 + rotZ: 0.0167705026 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Nidorino (2) ffa6d1.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Nidorino (2) ffa6d1.yaml new file mode 100644 index 000000000..2f38ca03c --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Nidorino (2) ffa6d1.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 273534 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2735': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: ffa6d1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Nidorino (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436 + posY: 1.28980482 + posZ: -72.6677 + rotX: 0.0208090879 + rotY: 269.997864 + rotZ: 0.0167703032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Ninetails (3) e807ef.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Ninetails (3) e807ef.yaml new file mode 100644 index 000000000..66368dfa6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Ninetails (3) e807ef.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 273135 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2731': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e807ef +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Ninetails (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6802 + posY: 1.30686367 + posZ: -72.656 + rotX: 359.3328 + rotY: 269.997467 + rotZ: 0.0167745631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Omanyte (1) d05219.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Omanyte (1) d05219.yaml new file mode 100644 index 000000000..43d02f0da --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Omanyte (1) d05219.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 272836 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2728': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d05219 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Omanyte (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003 + posY: 1.29300928 + posZ: -68.1182 + rotX: 0.0208089668 + rotY: 269.998138 + rotZ: 0.0167705528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Omastar (3) 522af2.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Omastar (3) 522af2.yaml new file mode 100644 index 000000000..75eea762f --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Omastar (3) 522af2.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 269737 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2697': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 522af2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Omastar (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003 + posY: 1.29233611 + posZ: -70.4182 + rotX: 0.0208092779 + rotY: 269.9982 + rotZ: 0.0167704783 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Parsect (3) 9dfa3f.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Parsect (3) 9dfa3f.yaml new file mode 100644 index 000000000..133b13a9d --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Parsect (3) 9dfa3f.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 271138 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2711': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 9dfa3f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Parsect (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003 + posY: 1.29031634 + posZ: -77.3182 + rotX: 0.02080892 + rotY: 269.99826 + rotZ: 0.0167706013 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Pidgeot (4) bd848f.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Pidgeot (4) bd848f.yaml new file mode 100644 index 000000000..3df198d49 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Pidgeot (4) bd848f.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 272239 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2722': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: bd848f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Pidgeot (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296978 + posY: 1.325416 + posZ: -61.1485 + rotX: 0.02080906 + rotY: 269.998535 + rotZ: 0.0167708658 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Pidgeotto (1) 25ad5e.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Pidgeotto (1) 25ad5e.yaml new file mode 100644 index 000000000..70a3de6dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Pidgeotto (1) 25ad5e.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 268840 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2688': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 25ad5e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Pidgeotto (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296978 + posY: 1.32608938 + posZ: -58.8484 + rotX: 0.0208088588 + rotY: 269.9985 + rotZ: 0.01677071 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Poliwhirl (1) 43303b.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Poliwhirl (1) 43303b.yaml new file mode 100644 index 000000000..1c7fd0ddd --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Poliwhirl (1) 43303b.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 269541 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2695': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 43303b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Poliwhirl (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076502 + posY: 1.32479537 + posZ: -58.8605 + rotX: 0.0208090618 + rotY: 269.9987 + rotZ: 0.0167707223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Poliwrath (4) c7b714.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Poliwrath (4) c7b714.yaml new file mode 100644 index 000000000..5d3c331c6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Poliwrath (4) c7b714.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 272442 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2724': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c7b714 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Poliwrath (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076502 + posY: 1.32412207 + posZ: -61.1605 + rotX: 0.0208088625 + rotY: 269.998718 + rotZ: 0.0167706851 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Primape (3) 256a09.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Primape (3) 256a09.yaml new file mode 100644 index 000000000..8a9330158 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Primape (3) 256a09.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 268743 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2687': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 256a09 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Primape (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6803 + posY: 1.30551672 + posZ: -77.2559 + rotX: 359.332825 + rotY: 269.99942 + rotZ: 0.0167722926 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Raichu (4) bccfe2.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Raichu (4) bccfe2.yaml new file mode 100644 index 000000000..0761b6827 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Raichu (4) bccfe2.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 272044 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2720': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: bccfe2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Raichu (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6805 + posY: 1.30753517 + posZ: -70.3559 + rotX: 359.332855 + rotY: 269.998444 + rotZ: 0.0167744551 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Rapidash (3) a82e8f.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Rapidash (3) a82e8f.yaml new file mode 100644 index 000000000..da67b3cf9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Rapidash (3) a82e8f.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 271545 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2715': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: a82e8f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Rapidash (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3437 + posY: 1.28576553 + posZ: -86.4676 + rotX: 0.0208088644 + rotY: 269.999023 + rotZ: 0.0167708211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Raticate (2) 9bc236.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Raticate (2) 9bc236.yaml new file mode 100644 index 000000000..26bbfda8c --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Raticate (2) 9bc236.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 270946 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2709': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 9bc236 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Raticate (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6297016 + posY: 1.32676256 + posZ: -56.5484 + rotX: 0.0208089389 + rotY: 269.9992 + rotZ: 0.0167707354 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Rhydon (4) acbde9.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Rhydon (4) acbde9.yaml new file mode 100644 index 000000000..b1b5c0d20 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Rhydon (4) acbde9.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 271647 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2716': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: acbde9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Rhydon (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003 + posY: 1.28964317 + posZ: -79.6182 + rotX: 0.0208090041 + rotY: 269.999146 + rotZ: 0.016770849 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Seadra (2) a24ce1.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Seadra (2) a24ce1.yaml new file mode 100644 index 000000000..607653fcc --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Seadra (2) a24ce1.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 271348 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2713': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: a24ce1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Seadra (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076498 + posY: 1.32075608 + posZ: -72.6601 + rotX: 0.0208086111 + rotY: 269.9992 + rotZ: 0.01677078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Seaking (3) 0bc5c3.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Seaking (3) 0bc5c3.yaml new file mode 100644 index 000000000..91f43cbfe --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Seaking (3) 0bc5c3.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 267949 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2679': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 0bc5c3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Seaking (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.0765 + posY: 1.32008278 + posZ: -74.9602 + rotX: 0.0208088141 + rotY: 269.999146 + rotZ: 0.0167708173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Slowbro (4) 21dc8f.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Slowbro (4) 21dc8f.yaml new file mode 100644 index 000000000..1e3f03cc0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Slowbro (4) 21dc8f.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 268650 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2686': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 21dc8f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Slowbro (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076498 + posY: 1.31940949 + posZ: -77.26 + rotX: 0.0208087843 + rotY: 269.9995 + rotZ: 0.0167711284 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Starmie (4) 578fac.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Starmie (4) 578fac.yaml new file mode 100644 index 000000000..6e468ec8c --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Starmie (4) 578fac.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 270051 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2700': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 578fac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Starmie (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076705 + posY: 1.31873631 + posZ: -79.56 + rotX: 0.0208093431 + rotY: 269.9995 + rotZ: 0.0167714711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Tentacruel (2) cc0ea7.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Tentacruel (2) cc0ea7.yaml new file mode 100644 index 000000000..551d524a5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Tentacruel (2) cc0ea7.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 272653 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2726': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: cc0ea7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Tentacruel (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076602 + posY: 1.32546866 + posZ: -56.5605 + rotX: 0.0208088662 + rotY: 269.9995 + rotZ: 0.0167710278 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Venomoth (3) 89d217.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Venomoth (3) 89d217.yaml new file mode 100644 index 000000000..124ce83bd --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Venomoth (3) 89d217.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 270554 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2705': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 89d217 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Venomoth (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6802 + posY: 1.30888355 + posZ: -65.7559 + rotX: 359.3328 + rotY: 269.998932 + rotZ: 0.0167736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Victreebell (4) 8d1f1a.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Victreebell (4) 8d1f1a.yaml new file mode 100644 index 000000000..254776faa --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Victreebell (4) 8d1f1a.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 270655 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2706': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8d1f1a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Victreebell (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436 + posY: 1.29182458 + posZ: -65.7676 + rotX: 0.0208086837 + rotY: 269.999634 + rotZ: 0.0167708956 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Vileplume (4) 415dac.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Vileplume (4) 415dac.yaml new file mode 100644 index 000000000..a3c885ec5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Vileplume (4) 415dac.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 269456 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2694': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 415dac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Vileplume (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436 + posY: 1.293171 + posZ: -61.1679 + rotX: 0.0208085012 + rotY: 269.999573 + rotZ: 0.0167710986 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Weepinbell (2) cd6768.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Weepinbell (2) cd6768.yaml new file mode 100644 index 000000000..c72eaacd4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Weepinbell (2) cd6768.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 272757 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2727': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: cd6768 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Weepinbell (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436 + posY: 1.29249775 + posZ: -63.4679 + rotX: 0.02080859 + rotY: 269.9997 + rotZ: 0.0167710464 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Weezing (2) d24547.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Weezing (2) d24547.yaml new file mode 100644 index 000000000..0b600a257 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Weezing (2) d24547.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 272958 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2729': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: d24547 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Weezing (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296978 + posY: 1.32205 + posZ: -72.6481 + rotX: 0.0208130777 + rotY: 269.9842 + rotZ: 0.0167654362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Wigglytuff (2) 90c188.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Wigglytuff (2) 90c188.yaml new file mode 100644 index 000000000..dff6da01d --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Bag Upgrade Wild Pokemon e4069f/Card Wigglytuff (2) 90c188.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 270859 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2708': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1495712136742896819/DCB40BDF9BE76A0BBFDA1266BA8FAEB227FBA976/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 90c188 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Card +Nickname: Wigglytuff (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296 + posY: 1.32137668 + posZ: -74.9481 + rotX: 0.0208086278 + rotY: 269.999847 + rotZ: 0.01677136 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Custom_PDF Campaign Guide 9af38c.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Custom_PDF Campaign Guide 9af38c.yaml new file mode 100644 index 000000000..f85ab5014 --- /dev/null +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Custom_PDF Campaign Guide 9af38c.yaml @@ -0,0 +1,50 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomPDF: + PDFPage: 0 + PDFPageOffset: -1 + PDFPassword: '' + PDFUrl: http://cloud-3.steamusercontent.com/ugc/1478822124782656315/F6FA0E38FB8CA5F264A43E4033AD07E6C50B11E4/ +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 9af38c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_PDF +Nickname: Campaign Guide +PhysicsMaterial: + BounceCombine: 0 + Bounciness: 0.0 + DynamicFriction: 0.7 + FrictionCombine: 0 + StaticFriction: 0.1 +Rigidbody: + AngularDrag: 0.1 + Drag: 0.1 + Mass: 1.117193 + UseGravity: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.95001364 + posY: 1.46473742 + posZ: -33.52254 + rotX: 359.9201 + rotY: 270.034729 + rotZ: 0.016823886 + scaleX: 1.77966714 + scaleY: 1.0 + scaleZ: 1.77966714 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_PDF Scenario Guide a6ddbc.yaml b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Custom_PDF VariantOptional Rules c627fc.yaml similarity index 57% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_PDF Scenario Guide a6ddbc.yaml rename to unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Custom_PDF VariantOptional Rules c627fc.yaml index 0f459ff6d..56eab7146 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_PDF Scenario Guide a6ddbc.yaml +++ b/unpacked/Custom_Model_Bag Pokemon Eldritch Edition 75fe78/Custom_PDF VariantOptional Rules c627fc.yaml @@ -5,13 +5,13 @@ ColorDiffuse: r: 1.0 CustomPDF: PDFPage: 0 - PDFPageOffset: 0 + PDFPageOffset: -1 PDFPassword: '' - PDFUrl: http://cloud-3.steamusercontent.com/ugc/1017194907474848760/390E67D0785A6E3DA67177534E3A059047782E5C/ + PDFUrl: http://cloud-3.steamusercontent.com/ugc/1482200660407241197/379A8A8DAC002FE7E4069FCCF0985F7FB8FA11E9/ Description: '' DragSelectable: true GMNotes: '' -GUID: a6ddbc +GUID: c627fc Grid: true GridProjection: false Hands: false @@ -22,18 +22,18 @@ LuaScript: '' LuaScriptState: '' MeasureMovement: false Name: Custom_PDF -Nickname: Scenario Guide +Nickname: Variant/Optional Rules Snap: true Sticky: true Tooltip: true Transform: - posX: -1.46523726 - posY: 1.5756191 - posZ: -26.9305515 + posX: 15.963316 + posY: 1.45811069 + posZ: -3.88632631 rotX: 359.920135 - rotY: 269.9974 - rotZ: 0.0168387424 - scaleX: 2.4862206 + rotY: 269.972931 + rotZ: 0.0169104561 + scaleX: 1.0 scaleY: 1.0 - scaleZ: 2.4862206 + scaleZ: 1.0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e.yaml b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e.yaml index f8432fcc3..cc8154ec0 100644 --- a/unpacked/Custom_Model_Bag Promo Investigators 5fe24e.yaml +++ b/unpacked/Custom_Model_Bag Promo Investigators 5fe24e.yaml @@ -67,11 +67,11 @@ Sticky: true Tooltip: true Transform: posX: -33.3140526 - posY: 1.2930969 + posY: 1.29309678 posZ: -70.56128 - rotX: 0.020809833 + rotX: 0.0208101 rotY: 270.001038 - rotZ: 0.0167708565 + rotZ: 0.016770836 scaleX: 0.5 scaleY: 0.139652729 scaleZ: 0.5 diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130.yaml index 7e096c783..9e9a2cdbe 100644 --- a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130.yaml +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130.yaml @@ -64,12 +64,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 63.0288429 - posY: 1.76845634 - posZ: 14.50037 + posX: 63.0291672 + posY: 1.76845586 + posZ: 14.5003948 rotX: 359.9201 - rotY: 269.998138 - rotZ: 0.01687549 + rotY: 269.9977 + rotZ: 0.0168759562 scaleX: 2.00002885 scaleY: 0.10587021 scaleZ: 1.69295752 diff --git a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3.yaml b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3.yaml index a874f314d..1d70efbe5 100644 --- a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3.yaml +++ b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3.yaml @@ -69,12 +69,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 63.0306 - posY: 1.76014376 - posZ: -13.7201262 + posX: 63.0309029 + posY: 1.76014352 + posZ: -13.7201977 rotX: 359.9201 - rotY: 269.9989 - rotZ: 0.0168743469 + rotY: 269.9979 + rotZ: 0.0168752056 scaleX: 2.00002885 scaleY: 0.10587021 scaleZ: 1.69295752 diff --git a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf.yaml b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf.yaml index e60a2ee6b..677c57aaf 100644 --- a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf.yaml +++ b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf.yaml @@ -19,6 +19,8 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: +- !include 'Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Card Mouth + of K''n-yan 38a3e5.yaml' - !include 'Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Deck Part 1 Vengeance Cards 0498ce.yaml' - !include 'Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Bag Exploration @@ -35,8 +37,6 @@ ContainedObjects: Deck 7b059d.yaml' - !include 'Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Deck Encounter Deck 7fd536.yaml' -- !include 'Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Card Mouth - of K''n-yan e12dc3.yaml' - !include 'Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Card Scenario ec85f3.yaml' CustomMesh: @@ -67,7 +67,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: false LuaScript: !include 'Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf.ttslua' -LuaScriptState: '{"ml":{"0498ce":{"lock":false,"pos":{"x":-11.3409986495972,"y":1.65003490447998,"z":9.86700057983398},"rot":{"x":359.920104980469,"y":270.000091552734,"z":180.016860961914}},"0618cc":{"lock":false,"pos":{"x":-3.56570339202881,"y":1.40573704242706,"z":14.6866817474365},"rot":{"x":359.919647216797,"y":269.999572753906,"z":0.016871303319931}},"0e1065":{"lock":false,"pos":{"x":-12.9572010040283,"y":1.60882902145386,"z":-14.7527027130127},"rot":{"x":359.920104980469,"y":269.999938964844,"z":0.0168715659528971}},"10ce27":{"lock":false,"pos":{"x":-3.9274,"y":1.7717,"z":5.7571},"rot":{"x":359.9197,"y":270.0076,"z":180.0168}},"20d884":{"lock":false,"pos":{"x":-3.9274,"y":1.754,"z":5.7571},"rot":{"x":359.9197,"y":270,"z":180.0168}},"30a2e4":{"lock":false,"pos":{"x":-12.759,"y":1.6727,"z":7.598},"rot":{"x":359.9201,"y":270.0002,"z":180.0169}},"340f04":{"lock":false,"pos":{"x":1.69640147686005,"y":1.55831718444824,"z":14.2788038253784},"rot":{"x":359.955139160156,"y":224.998001098633,"z":0.0686741918325424}},"3deb0d":{"lock":false,"pos":{"x":-2.68860006332397,"y":1.61430263519287,"z":-5.04850006103516},"rot":{"x":0.016848610714078,"y":179.990798950195,"z":0.0802530571818352}},"4662da":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9961,"z":0.0168}},"503706":{"lock":false,"pos":{"x":-0.515999615192413,"y":1.59273362159729,"z":-10.3983001708984},"rot":{"x":359.919738769531,"y":269.999877929688,"z":0.0168373323976994}},"584ca4":{"lock":false,"pos":{"x":-23.6764755249023,"y":1.62808072566986,"z":-0.030033590272069},"rot":{"x":359.919769287109,"y":270.000244140625,"z":180.020416259766}},"5b969a":{"lock":false,"pos":{"x":-12.8393,"y":1.6659,"z":7.4705},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"5e6b98":{"lock":false,"pos":{"x":-13.0642013549805,"y":1.60906398296356,"z":-14.461501121521},"rot":{"x":359.920104980469,"y":269.992492675781,"z":180.016876220703}},"6ee3ce":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"7b059d":{"lock":false,"pos":{"x":-2.72479963302612,"y":1.61594653129578,"z":0.373300403356552},"rot":{"x":0.0168356951326132,"y":180,"z":0.0802557617425919}},"7fd536":{"lock":false,"pos":{"x":-3.92737340927124,"y":1.77326238155365,"z":5.75719499588013},"rot":{"x":359.919738769531,"y":270.000213623047,"z":180.016815185547}},"88bd9e":{"lock":false,"pos":{"x":-2.7207,"y":1.664,"z":0.3785},"rot":{"x":0.017,"y":179.883,"z":0.0802}},"b307ea":{"lock":false,"pos":{"x":-3.9756,"y":1.6556,"z":14.7253},"rot":{"x":359.9197,"y":270.011,"z":180.0168}},"dcb3d8":{"lock":false,"pos":{"x":-4.0885,"y":1.4065,"z":14.8308},"rot":{"x":359.9196,"y":269.9998,"z":0.0169}},"df31c5":{"lock":false,"pos":{"x":-2.6884,"y":1.6623,"z":-5.0485},"rot":{"x":0.0168,"y":180.0008,"z":0.0803}},"e12dc3":{"lock":false,"pos":{"x":-23.6765003204346,"y":1.62811160087585,"z":-0.0299999844282866},"rot":{"x":359.920104980469,"y":270.000213623047,"z":180.016860961914}},"ec85f3":{"lock":false,"pos":{"x":-3.95600056648254,"y":1.59753942489624,"z":-10.4412021636963},"rot":{"x":359.919738769531,"y":269.999908447266,"z":0.0168373044580221}}}}' +LuaScriptState: '{"ml":{"0498ce":{"lock":false,"pos":{"x":-11.3409986495972,"y":1.65003490447998,"z":9.86700057983398},"rot":{"x":359.920104980469,"y":270.000091552734,"z":180.016860961914}},"0618cc":{"lock":false,"pos":{"x":-3.56570339202881,"y":1.40573704242706,"z":14.6866817474365},"rot":{"x":359.919647216797,"y":269.999572753906,"z":0.016871303319931}},"0e1065":{"lock":false,"pos":{"x":-12.9572010040283,"y":1.60882902145386,"z":-14.7527027130127},"rot":{"x":359.920104980469,"y":269.999938964844,"z":0.0168715659528971}},"10ce27":{"lock":false,"pos":{"x":-3.9274,"y":1.7717,"z":5.7571},"rot":{"x":359.9197,"y":270.0076,"z":180.0168}},"20d884":{"lock":false,"pos":{"x":-3.9274,"y":1.754,"z":5.7571},"rot":{"x":359.9197,"y":270,"z":180.0168}},"30a2e4":{"lock":false,"pos":{"x":-12.759,"y":1.6727,"z":7.598},"rot":{"x":359.9201,"y":270.0002,"z":180.0169}},"340f04":{"lock":false,"pos":{"x":1.69640147686005,"y":1.55831718444824,"z":14.2788038253784},"rot":{"x":359.955139160156,"y":224.998001098633,"z":0.0686741918325424}},"38a3e5":{"lock":false,"pos":{"x":-23.6766,"y":1.6281,"z":-0.03},"rot":{"x":359.9201,"y":270.0002,"z":180.0168}},"3deb0d":{"lock":false,"pos":{"x":-2.68860006332397,"y":1.61430263519287,"z":-5.04850006103516},"rot":{"x":0.016848610714078,"y":179.990798950195,"z":0.0802530571818352}},"4662da":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9961,"z":0.0168}},"503706":{"lock":false,"pos":{"x":-0.515999615192413,"y":1.59273362159729,"z":-10.3983001708984},"rot":{"x":359.919738769531,"y":269.999877929688,"z":0.0168373323976994}},"584ca4":{"lock":false,"pos":{"x":-23.6764755249023,"y":1.62808072566986,"z":-0.030033590272069},"rot":{"x":359.919769287109,"y":270.000244140625,"z":180.020416259766}},"5b969a":{"lock":false,"pos":{"x":-12.8393,"y":1.6659,"z":7.4705},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"5e6b98":{"lock":false,"pos":{"x":-13.0642013549805,"y":1.60906398296356,"z":-14.461501121521},"rot":{"x":359.920104980469,"y":269.992492675781,"z":180.016876220703}},"6ee3ce":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"7b059d":{"lock":false,"pos":{"x":-2.72479963302612,"y":1.61594653129578,"z":0.373300403356552},"rot":{"x":0.0168356951326132,"y":180,"z":0.0802557617425919}},"7fd536":{"lock":false,"pos":{"x":-3.92737340927124,"y":1.77326238155365,"z":5.75719499588013},"rot":{"x":359.919738769531,"y":270.000213623047,"z":180.016815185547}},"88bd9e":{"lock":false,"pos":{"x":-2.7207,"y":1.664,"z":0.3785},"rot":{"x":0.017,"y":179.883,"z":0.0802}},"b307ea":{"lock":false,"pos":{"x":-3.9756,"y":1.6556,"z":14.7253},"rot":{"x":359.9197,"y":270.011,"z":180.0168}},"dcb3d8":{"lock":false,"pos":{"x":-4.0885,"y":1.4065,"z":14.8308},"rot":{"x":359.9196,"y":269.9998,"z":0.0169}},"df31c5":{"lock":false,"pos":{"x":-2.6884,"y":1.6623,"z":-5.0485},"rot":{"x":0.0168,"y":180.0008,"z":0.0803}},"e12dc3":{"lock":false,"pos":{"x":-23.6765003204346,"y":1.62811160087585,"z":-0.0299999844282866},"rot":{"x":359.920104980469,"y":270.000213623047,"z":180.016860961914}},"ec85f3":{"lock":false,"pos":{"x":-3.95600056648254,"y":1.59753942489624,"z":-10.4412021636963},"rot":{"x":359.919738769531,"y":269.999908447266,"z":0.0168373044580221}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 diff --git a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Bag Exploration Deck Setup 0618cc.yaml b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Bag Exploration Deck Setup 0618cc.yaml index 5203b5ddb..3ba904b02 100644 --- a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Bag Exploration Deck Setup 0618cc.yaml +++ b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Bag Exploration Deck Setup 0618cc.yaml @@ -34,12 +34,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.56570387 - posY: 1.40573776 + posX: -3.56570482 + posY: 1.40573835 posZ: 14.6866846 rotX: 359.919647 - rotY: 269.999573 - rotZ: 0.0168696512 + rotY: 269.999634 + rotZ: 0.0168687049 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Card Mouth of K'n-yan e12dc3.yaml b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Card Mouth of K'n-yan 38a3e5.yaml similarity index 88% rename from unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Card Mouth of K'n-yan e12dc3.yaml rename to unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Card Mouth of K'n-yan 38a3e5.yaml index e6c1425e3..e5738f710 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Card Mouth of K'n-yan e12dc3.yaml +++ b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Card Mouth of K'n-yan 38a3e5.yaml @@ -16,7 +16,7 @@ CustomDeck: Description: Cave. DragSelectable: true GMNotes: '' -GUID: e12dc3 +GUID: 38a3e5 Grid: true GridProjection: false Hands: true @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -23.6765 - posY: 1.6281116 - posZ: -0.0299999174 + posX: -23.6765518 + posY: 1.62806666 + posZ: -0.029993318 rotX: 359.9201 - rotY: 270.0002 - rotZ: 180.016861 + rotY: 270.000183 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Card Scenario ec85f3.yaml b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Card Scenario ec85f3.yaml index 9f117c8d0..b4f0098ad 100644 --- a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Card Scenario ec85f3.yaml +++ b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Card Scenario ec85f3.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.9560008 + posX: -3.956001 posY: 1.59753942 posZ: -10.4412031 rotX: 359.919739 rotY: 269.9999 - rotZ: 0.0168373045 + rotZ: 0.01683732 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Card Setup 503706.yaml b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Card Setup 503706.yaml index d738473ce..df1c702cd 100644 --- a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Card Setup 503706.yaml +++ b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Card Setup 503706.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -0.5159993 + posX: -0.515999556 posY: 1.59273362 posZ: -10.3983011 rotX: 359.919739 rotY: 269.999847 - rotZ: 0.0168374181 + rotZ: 0.0168374889 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/CardCustom Exploration Reference 0e1065.yaml b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/CardCustom Exploration Reference 0e1065.yaml index b26da8258..d5e9f8f11 100644 --- a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/CardCustom Exploration Reference 0e1065.yaml +++ b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/CardCustom Exploration Reference 0e1065.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -12.9571648 - posY: 1.608829 - posZ: -14.75271 + posX: -12.957201 + posY: 1.6087923 + posZ: -14.7527027 rotX: 359.9201 - rotY: 270.000061 - rotZ: 0.016871443 + rotY: 269.999939 + rotZ: 0.0168389827 scaleX: 2.17822933 scaleY: 1.0 scaleZ: 2.17822933 diff --git a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Custom_Model_Bag Set-aside 340f04.yaml b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Custom_Model_Bag Set-aside 340f04.yaml index 19376a948..a4aae5ce8 100644 --- a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Custom_Model_Bag Set-aside 340f04.yaml +++ b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Custom_Model_Bag Set-aside 340f04.yaml @@ -53,7 +53,7 @@ Transform: posZ: 14.2788067 rotX: 359.955139 rotY: 224.998016 - rotZ: 0.06867275 + rotZ: 0.06867272 scaleX: 2.0 scaleY: 2.0 scaleZ: 2.0 diff --git a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Deck Act deck 3deb0d.yaml b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Deck Act deck 3deb0d.yaml index aa5a3e6c4..13e6b7573 100644 --- a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Deck Act deck 3deb0d.yaml +++ b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Deck Act deck 3deb0d.yaml @@ -129,9 +129,9 @@ Transform: posX: -2.68859982 posY: 1.61430264 posZ: -5.0485 - rotX: 0.0168486647 + rotX: 0.01684861 rotY: 179.9908 - rotZ: 0.08025299 + rotZ: 0.0802530348 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Deck Agenda Deck 7b059d.yaml b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Deck Agenda Deck 7b059d.yaml index bbd148e26..2655ca083 100644 --- a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Deck Agenda Deck 7b059d.yaml +++ b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Deck Agenda Deck 7b059d.yaml @@ -129,7 +129,7 @@ Transform: posX: -2.72479939 posY: 1.61594653 posZ: 0.373300731 - rotX: 0.01683575 + rotX: 0.0168356672 rotY: 180.0 rotZ: 0.0802557543 scaleX: 1.0 diff --git a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Deck Part 1 Vengeance Cards 0498ce.yaml b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Deck Part 1 Vengeance Cards 0498ce.yaml index aa2f8ab47..8c390dca9 100644 --- a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Deck Part 1 Vengeance Cards 0498ce.yaml +++ b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Deck Part 1 Vengeance Cards 0498ce.yaml @@ -318,12 +318,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -11.3409977 - posY: 1.6500349 + posX: -11.3409958 + posY: 1.64998424 posZ: 9.867002 rotX: 359.9201 - rotY: 270.0001 - rotZ: 180.016861 + rotY: 270.000183 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 6 Return to The City of Archives e73427.yaml b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 6 Return to The City of Archives e73427.yaml index b843b1591..33756b674 100644 --- a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 6 Return to The City of Archives e73427.yaml +++ b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 6 Return to The City of Archives e73427.yaml @@ -100,7 +100,7 @@ Transform: posZ: -12.0137005 rotX: 359.920135 rotY: 270.0066 - rotZ: 0.01686487 + rotZ: 0.016864853 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e.yaml b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e.yaml index 3e0bd3dd4..5838a049f 100644 --- a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e.yaml +++ b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 7 Return to The Depths of Yoth 9c986e.yaml @@ -85,7 +85,7 @@ Transform: posZ: -20.0137043 rotX: 359.9201 rotY: 270.0099 - rotZ: 0.0168600362 + rotZ: 0.0168600027 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_PDF Return To The Forgotten Age Insert 9351c7.yaml b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_PDF Return To The Forgotten Age Insert 9351c7.yaml index 75b8e07c4..d48cd3fe6 100644 --- a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_PDF Return To The Forgotten Age Insert 9351c7.yaml +++ b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_PDF Return To The Forgotten Age Insert 9351c7.yaml @@ -27,12 +27,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0.312999785 - posY: 1.48733187 + posX: 0.313000321 + posY: 1.48733163 posZ: 21.2534046 rotX: 359.920135 rotY: 269.99588 - rotZ: 0.01687941 + rotZ: 0.0168792065 scaleX: 2.18 scaleY: 1.0 scaleZ: 2.18 diff --git a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_PDF The Forgotten Age Campaign Guide 80b8ca.yaml b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_PDF The Forgotten Age Campaign Guide 80b8ca.yaml index 4f47cb36c..d9166ae3b 100644 --- a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_PDF The Forgotten Age Campaign Guide 80b8ca.yaml +++ b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_PDF The Forgotten Age Campaign Guide 80b8ca.yaml @@ -27,12 +27,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0.269999743 + posX: 0.269999921 posY: 1.489607 posZ: 28.7770042 rotX: 359.920135 rotY: 269.9963 - rotZ: 0.01687658 + rotZ: 0.0168771967 scaleX: 2.18 scaleY: 1.0 scaleZ: 2.18 diff --git a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Tile Forgotten Age Campaign Log 3d53bb.yaml b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Tile Forgotten Age Campaign Log 3d53bb.yaml index 23edfeda6..127dcccee 100644 --- a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Tile Forgotten Age Campaign Log 3d53bb.yaml +++ b/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Tile Forgotten Age Campaign Log 3d53bb.yaml @@ -263,12 +263,12 @@ States: Sticky: true Tooltip: true Transform: - posX: -1.46568561 + posX: -1.46568656 posY: 1.47562289 posZ: -26.9301033 rotX: 359.920135 rotY: 270.0005 - rotZ: 0.0168708526 + rotZ: 0.01687084 scaleX: 6.5 scaleY: 1.0 scaleZ: 6.5 diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a.yaml index b948d8ab3..9e885bb00 100644 --- a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a.yaml +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a.yaml @@ -64,12 +64,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 63.0304222 - posY: 1.76422548 - posZ: 0.140266478 + posX: 63.03065 + posY: 1.76422536 + posZ: 0.140276045 rotX: 359.9201 - rotY: 270.000122 - rotZ: 0.0168721657 + rotY: 270.000336 + rotZ: 0.01687192 scaleX: 2.00002885 scaleY: 0.10587021 scaleZ: 1.69295752 diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d.yaml index b7804d461..0a307e2a1 100644 --- a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d.yaml +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d.yaml @@ -54,12 +54,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 63.0273132 - posY: 1.77258992 - posZ: 28.5308113 + posX: 63.0277328 + posY: 1.77258933 + posZ: 28.5309181 rotX: 359.9201 - rotY: 270.00882 - rotZ: 0.0168606415 + rotY: 270.008545 + rotZ: 0.0168608967 scaleX: 2.00002885 scaleY: 0.10587021 scaleZ: 1.69295752 diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8.yaml index 2060d981e..864bb013b 100644 --- a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8.yaml +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8.yaml @@ -97,11 +97,11 @@ Sticky: true Tooltip: true Transform: posX: -9.742741 - posY: 1.29890108 + posY: 1.29890144 posZ: -79.97654 - rotX: 0.0208108909 + rotX: 0.0208107717 rotY: 269.9984 - rotZ: 0.0167701 + rotZ: 0.0167700164 scaleX: 0.5 scaleY: 0.139652729 scaleZ: 0.5 diff --git a/unpacked/Custom_Model_Bag The Circle Undone 63e097.yaml b/unpacked/Custom_Model_Bag The Circle Undone 63e097.yaml index 73fd0d4b6..ab8d5530a 100644 --- a/unpacked/Custom_Model_Bag The Circle Undone 63e097.yaml +++ b/unpacked/Custom_Model_Bag The Circle Undone 63e097.yaml @@ -64,12 +64,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 51.6526947 - posY: 1.40532422 - posZ: -27.8700352 + posX: 51.6528 + posY: 1.405324 + posZ: -27.8701038 rotX: 359.920135 - rotY: 269.996765 - rotZ: 0.0168772489 + rotY: 269.996 + rotZ: 0.0168784 scaleX: 1.0 scaleY: 0.139652729 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a.yaml index da46bfa5a..6be526ec3 100644 --- a/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a.yaml +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a16a1a.yaml @@ -62,12 +62,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 32.30036 - posY: 1.44891167 - posZ: 28.5306129 + posX: 32.30053 + posY: 1.44891083 + posZ: 28.53076 rotX: 359.920135 - rotY: 269.996521 - rotZ: 0.01687776 + rotY: 269.9956 + rotZ: 0.0168783031 scaleX: 1.0 scaleY: 0.139652729 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34.yaml index 63f921d87..27efc7402 100644 --- a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34.yaml +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34.yaml @@ -87,11 +87,11 @@ Sticky: true Tooltip: true Transform: posX: -9.740017 - posY: 1.29691744 + posY: 1.29691756 posZ: -86.7569656 - rotX: 0.0208102912 + rotX: 0.0208103564 rotY: 270.0003 - rotZ: 0.0167705063 + rotZ: 0.0167705175 scaleX: 0.5 scaleY: 0.139652729 scaleZ: 0.5 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6.yaml index d526eea5c..05a7a8b5a 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 2898f6.yaml @@ -62,12 +62,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 51.65301 - posY: 1.41377008 - posZ: 14.5000048 + posX: 51.6532021 + posY: 1.41376913 + posZ: 14.4999962 rotX: 359.920135 rotY: 269.9997 - rotZ: 0.0168728065 + rotZ: 0.0168727376 scaleX: 1.0 scaleY: 0.139652729 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd.yaml index 9f463f8da..dcf84da4f 100644 --- a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd.yaml +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd.yaml @@ -89,9 +89,9 @@ Transform: posX: -9.742688 posY: 1.30474281 posZ: -60.0204163 - rotX: 0.020811934 + rotX: 0.0208119247 rotY: 269.9933 - rotZ: 0.0167683549 + rotZ: 0.01676838 scaleX: 0.5 scaleY: 0.139652729 scaleZ: 0.5 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888.yaml index acb670552..bec55ad61 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 03b888.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888.yaml @@ -87,11 +87,11 @@ Sticky: true Tooltip: true Transform: posX: -9.742995 - posY: 1.30088174 + posY: 1.300882 posZ: -73.21 - rotX: 0.0208120644 + rotX: 0.020812232 rotY: 269.99353 - rotZ: 0.0167681258 + rotZ: 0.0167681631 scaleX: 0.5 scaleY: 0.139652729 scaleZ: 0.5 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19.yaml index 080d6138a..792c0f6a1 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19.yaml @@ -67,12 +67,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 51.65614 - posY: 1.40948594 - posZ: -13.72008 + posX: 51.6562462 + posY: 1.40948582 + posZ: -13.7201262 rotX: 359.920135 - rotY: 269.9944 - rotZ: 0.016880637 + rotY: 269.993134 + rotZ: 0.0168817677 scaleX: 1.0 scaleY: 0.139652729 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956.yaml index a6973e0df..3bb7f5892 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956.yaml @@ -19,12 +19,12 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: -- !include 'Custom_Model_Bag 1 The Untamed Wilds e90956/CardCustom Exploration Reference - 3ccbd9.yaml' - !include 'Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Agenda Deck 163d4e.yaml' - !include 'Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Model_Bag Set-aside 2aa7a5.yaml' - !include 'Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Encounter deck 2c6c16.yaml' +- !include 'Custom_Model_Bag 1 The Untamed Wilds e90956/CardCustom Exploration Reference + 3ccbd9.yaml' - !include 'Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Exploration deck 931ee2.yaml' - !include 'Custom_Model_Bag 1 The Untamed Wilds e90956/Card Expedition Camp 994e23.yaml' - !include 'Custom_Model_Bag 1 The Untamed Wilds e90956/Card Scenario a5e991.yaml' @@ -66,7 +66,7 @@ Transform: posZ: 35.9864 rotX: 359.9201 rotY: 270.1032 - rotZ: 0.0167300254 + rotZ: 0.0167299919 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Card Expedition Camp 994e23.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Card Expedition Camp 994e23.yaml index 0c9282a01..b92001520 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Card Expedition Camp 994e23.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Card Expedition Camp 994e23.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -17.12 - posY: 1.61896908 - posZ: -0.030001495 + posY: 1.6189239 + posZ: -0.0300015453 rotX: 359.9201 rotY: 270.000977 - rotZ: 0.0168708768 + rotZ: 0.0168382432 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Card Scenario a5e991.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Card Scenario a5e991.yaml index d35858903..1e84d848f 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Card Scenario a5e991.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Card Scenario a5e991.yaml @@ -38,7 +38,7 @@ Transform: posZ: -10.4412127 rotX: 359.919739 rotY: 270.000061 - rotZ: 0.0168371126 + rotZ: 0.0168371219 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/CardCustom Exploration Reference 3ccbd9.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/CardCustom Exploration Reference 3ccbd9.yaml index 0815d5a8f..485971a87 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/CardCustom Exploration Reference 3ccbd9.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/CardCustom Exploration Reference 3ccbd9.yaml @@ -34,10 +34,10 @@ Sticky: true Tooltip: true Transform: posX: -12.1081 - posY: 1.60814834 - posZ: -13.0433016 - rotX: 0.0168718733 - rotY: 179.999588 + posY: 1.60811067 + posZ: -13.0433 + rotX: 0.0168392379 + rotY: 179.999619 rotZ: 0.0798950344 scaleX: 2.17822933 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Model_Bag Set-aside 2aa7a5.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Model_Bag Set-aside 2aa7a5.yaml index 7872f2029..0cb4a77b6 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Model_Bag Set-aside 2aa7a5.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Model_Bag Set-aside 2aa7a5.yaml @@ -55,7 +55,7 @@ Transform: posZ: 14.2788038 rotX: 359.955139 rotY: 224.997971 - rotZ: 0.06867286 + rotZ: 0.06867189 scaleX: 2.0 scaleY: 2.0 scaleZ: 2.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Tile The Forgotten Age e95200.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Tile The Forgotten Age e95200.yaml index 59d07b7de..e8cc7342b 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Tile The Forgotten Age e95200.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Tile The Forgotten Age e95200.yaml @@ -32,12 +32,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.936301 + posX: -3.93630052 posY: 1.5825876 - posZ: -14.9317093 + posZ: -14.93171 rotX: 359.919739 rotY: 270.0018 - rotZ: 0.0168354176 + rotZ: 0.01683525 scaleX: 2.2 scaleY: 1.0 scaleZ: 2.2 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Act Deck c89d08.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Act Deck c89d08.yaml index 5b74bfc28..5a43ae236 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Act Deck c89d08.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Act Deck c89d08.yaml @@ -218,12 +218,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -2.68859982 + posX: -2.68859959 posY: 1.62393069 posZ: -5.04850054 - rotX: 0.0168349557 - rotY: 180.000381 - rotZ: 0.08025617 + rotX: 0.01683497 + rotY: 180.000366 + rotZ: 0.08025626 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Agenda Deck 163d4e.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Agenda Deck 163d4e.yaml index daf1fee4c..8c33cfe57 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Agenda Deck 163d4e.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Agenda Deck 163d4e.yaml @@ -128,10 +128,10 @@ Tooltip: true Transform: posX: -2.72479939 posY: 1.61594653 - posZ: 0.373301 - rotX: 0.0168360136 + posZ: 0.37330094 + rotX: 0.0168359783 rotY: 179.9998 - rotZ: 0.0802557543 + rotZ: 0.0802557245 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Encounter deck 2c6c16.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Encounter deck 2c6c16.yaml index 5ee6f871b..cbd1deef4 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Encounter deck 2c6c16.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Encounter deck 2c6c16.yaml @@ -964,7 +964,7 @@ Tooltip: true Transform: posX: -3.92770076 posY: 1.70586634 - posZ: 5.75720263 + posZ: 5.757202 rotX: 359.919739 rotY: 270.0 rotZ: 180.016815 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Exploration deck 931ee2.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Exploration deck 931ee2.yaml index 2ec335e8a..20d8956fd 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Exploration deck 931ee2.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Exploration deck 931ee2.yaml @@ -494,12 +494,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.68137574 + posX: -3.6813755 posY: 1.66012347 - posZ: 15.0905066 + posZ: 15.0905075 rotX: 359.919739 rotY: 270.0009 - rotZ: 180.016815 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Card Entryway b6501d.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Card Entryway b6501d.yaml index 2475bc38c..8652d8290 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Card Entryway b6501d.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Card Entryway b6501d.yaml @@ -35,10 +35,10 @@ Tooltip: true Transform: posX: -17.12 posY: 1.6189239 - posZ: -0.0300014131 + posZ: -0.0300014354 rotX: 359.9201 rotY: 269.9994 - rotZ: 0.0168405231 + rotZ: 0.0168404672 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Card Scenario 156890.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Card Scenario 156890.yaml index eed203311..ee7063c44 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Card Scenario 156890.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Card Scenario 156890.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.95610142 + posX: -3.95610166 posY: 1.59753954 posZ: -10.4413052 rotX: 359.919739 rotY: 270.01123 - rotZ: 0.0168215185 + rotZ: 0.01682149 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/CardCustom Exploration Reference 6f21c6.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/CardCustom Exploration Reference 6f21c6.yaml index 7909008cc..5b5d759ec 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/CardCustom Exploration Reference 6f21c6.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/CardCustom Exploration Reference 6f21c6.yaml @@ -38,7 +38,7 @@ Transform: posZ: -13.1006012 rotX: 359.9201 rotY: 269.9998 - rotZ: 0.016839195 + rotZ: 0.0168391913 scaleX: 2.17822933 scaleY: 1.0 scaleZ: 2.17822933 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Model_Bag Set-aside a45247.yaml index 689f77be8..98d2643db 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Model_Bag Set-aside a45247.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Model_Bag Set-aside a45247.yaml @@ -50,11 +50,11 @@ Sticky: true Tooltip: true Transform: posX: 1.69660223 - posY: 1.55831718 + posY: 1.55831742 posZ: 14.2787056 rotX: 359.955139 rotY: 224.998016 - rotZ: 0.0686729848 + rotZ: 0.0686733052 scaleX: 2.0 scaleY: 2.0 scaleZ: 2.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Tile The Doom of Eztli 294ec4.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Tile The Doom of Eztli 294ec4.yaml index d4f072713..ed0558658 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Tile The Doom of Eztli 294ec4.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Tile The Doom of Eztli 294ec4.yaml @@ -37,7 +37,7 @@ Transform: posZ: -14.842205 rotX: 359.919739 rotY: 270.030731 - rotZ: 0.0167947039 + rotZ: 0.0167946331 scaleX: 2.2 scaleY: 1.0 scaleZ: 2.2 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Act deck 8a9b62.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Act deck 8a9b62.yaml index 450bb221e..58636dc3d 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Act deck 8a9b62.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Act deck 8a9b62.yaml @@ -175,9 +175,9 @@ Transform: posX: -2.68859982 posY: 1.61911666 posZ: -5.04850149 - rotX: 0.01684232 + rotX: 0.0168423466 rotY: 179.9952 - rotZ: 0.08025459 + rotZ: 0.08025457 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Agenda deck 8eded9.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Agenda deck 8eded9.yaml index 72a0a31d9..233d89f21 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Agenda deck 8eded9.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Agenda deck 8eded9.yaml @@ -128,10 +128,10 @@ Tooltip: true Transform: posX: -2.72479963 posY: 1.61594653 - posZ: 0.3733007 - rotX: 0.01684313 + posZ: 0.3733009 + rotX: 0.0168431439 rotY: 179.9947 - rotZ: 0.080254145 + rotZ: 0.08025421 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Encounter deck 09da6b.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Encounter deck 09da6b.yaml index dbe98e4fd..ad535e3f5 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Encounter deck 09da6b.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Encounter deck 09da6b.yaml @@ -5,7 +5,7 @@ ColorDiffuse: r: 0.713235259 ContainedObjects: - Autoraise: true - CardID: 235727 + CardID: 235732 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -19,10 +19,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Curse. + Description: Hex. DragSelectable: true GMNotes: '' - GUID: b7a7ec + GUID: d53fea Grid: true GridProjection: false Hands: true @@ -33,24 +33,69 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Curse of Yig + Nickname: A Tear in Time SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 2.77082253 - posY: 1.50112176 - posZ: 33.68941 - rotX: 359.9206 - rotY: 269.9998 - rotZ: 0.0135837728 + posX: 17.9216671 + posY: 1.53453684 + posZ: 43.0446434 + rotX: 359.922455 + rotY: 269.9989 + rotZ: 0.0119736325 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 235725 + CardID: 269900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2699': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1597043896927310894/224D88E486BCF3DCCA4F956CA928CC7FD510EECA/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Power. + DragSelectable: true + GMNotes: '' + GUID: e2f9f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Serpent's Call + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.74363661 + posY: 3.63683271 + posZ: 25.1257324 + rotX: 0.0280637536 + rotY: 269.9865 + rotZ: 356.910156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235735 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -64,10 +109,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Humanoid. Monster. Serpent. + Description: Terror. DragSelectable: true GMNotes: '' - GUID: dfc63f + GUID: 61806c Grid: true GridProjection: false Hands: true @@ -78,18 +123,63 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Brood of Yig + Nickname: Ancestral Fear SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 0.5898444 - posY: 1.506631 - posZ: 42.70015 - rotX: 359.9257 - rotY: 270.000122 - rotZ: -0.00311747356 + posX: -3.9276278 + posY: 1.916111 + posZ: 5.757129 + rotX: 359.920044 + rotY: 270.0003 + rotZ: 180.016739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235743 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Poison. + DragSelectable: true + GMNotes: '' + GUID: 3ae801 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Creeping Poison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.5182 + posY: 1.47169614 + posZ: -40.74573 + rotX: 359.934235 + rotY: 269.999664 + rotZ: 0.0112709245 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -139,231 +229,6 @@ ContainedObjects: scaleY: 1.0 scaleZ: 1.0 XmlUI: '' -- Autoraise: true - CardID: 235740 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Humanoid. Monster. Serpent. - DragSelectable: true - GMNotes: '' - GUID: 35dd7c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fang of Yig - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 8.288796 - posY: 2.48531032 - posZ: -36.79936 - rotX: 359.920135 - rotY: 270.000275 - rotZ: 180.016861 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235733 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hex. - DragSelectable: true - GMNotes: '' - GUID: 54752a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lost in Time - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 18.1425781 - posY: 1.48141217 - posZ: 39.4102 - rotX: 359.920258 - rotY: 269.999146 - rotZ: 0.0159195755 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 539620 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2317': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hazard. - DragSelectable: true - GMNotes: '' - GUID: ab3719 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Crypt Chill - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -14.5550861 - posY: 1.57516873 - posZ: 5.69822454 - rotX: 359.92038 - rotY: 270.002563 - rotZ: 0.0152713312 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235732 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hex. - DragSelectable: true - GMNotes: '' - GUID: 09fa5b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: A Tear in Time - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 17.8707352 - posY: 1.48277044 - posZ: 42.71366 - rotX: 359.920227 - rotY: 269.998749 - rotZ: 0.0163513962 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235732 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hex. - DragSelectable: true - GMNotes: '' - GUID: bfddb7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: A Tear in Time - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 17.92174 - posY: 1.55716217 - posZ: 43.04463 - rotX: 359.921417 - rotY: 269.9989 - rotZ: 0.014410777 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' - Autoraise: true CardID: 539621 ColorDiffuse: @@ -410,7 +275,7 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 235742 + CardID: 235731 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -424,10 +289,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Power. + Description: Trap. DragSelectable: true GMNotes: '' - GUID: 84a2af + GUID: de9a86 Grid: true GridProjection: false Hands: true @@ -438,24 +303,24 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Serpent's Call + Nickname: Entombed SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 18.6316471 - posY: 1.4798516 - posZ: 36.3780632 + posX: 18.17258 + posY: 1.48389673 + posZ: 47.9415779 rotX: 359.920135 - rotY: 269.998718 - rotZ: 0.01687367 + rotY: 270.000122 + rotZ: 0.0168718565 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 235732 + CardID: 235736 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -469,10 +334,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Hex. + Description: Hazard. DragSelectable: true GMNotes: '' - GUID: d53fea + GUID: 89b67a Grid: true GridProjection: false Hands: true @@ -483,108 +348,18 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: A Tear in Time + Nickname: Deep Dark SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 17.9216671 - posY: 1.53453684 - posZ: 43.0446434 - rotX: 359.922455 - rotY: 269.9989 - rotZ: 0.0119736325 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235740 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Humanoid. Monster. Serpent. - DragSelectable: true - GMNotes: '' - GUID: 35dd7c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fang of Yig - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.402748 - posY: 2.4839747 - posZ: -34.9153023 - rotX: 359.920135 - rotY: 270.000336 - rotZ: 180.016876 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235725 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Humanoid. Monster. Serpent. - DragSelectable: true - GMNotes: '' - GUID: 7a3a6a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Brood of Yig - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 0.218750983 - posY: 1.58100176 - posZ: 41.22056 - rotX: 359.9753 - rotY: 270.018524 - rotZ: 0.503650546 + posX: 18.1757374 + posY: 1.48745537 + posZ: 60.0669 + rotX: 359.9202 + rotY: 269.999359 + rotZ: 0.01637041 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -679,6 +454,276 @@ ContainedObjects: scaleY: 1.0 scaleZ: 1.0 XmlUI: '' +- Autoraise: true + CardID: 235730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Trap. + DragSelectable: true + GMNotes: '' + GUID: 49130a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Final Mistake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.8433247 + posY: 1.48355341 + posZ: 45.2783966 + rotX: 359.920319 + rotY: 269.999 + rotZ: 0.0156590287 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Serpent. + DragSelectable: true + GMNotes: '' + GUID: dfc63f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.5898444 + posY: 1.506631 + posZ: 42.70015 + rotX: 359.9257 + rotY: 270.000122 + rotZ: -0.00311747356 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Serpent. + DragSelectable: true + GMNotes: '' + GUID: 35dd7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fang of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.288796 + posY: 2.48531032 + posZ: -36.79936 + rotX: 359.920135 + rotY: 270.000275 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: e7b322 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ancestral Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92762733 + posY: 1.92567611 + posZ: 5.757129 + rotX: 359.920166 + rotY: 270.000183 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Trap. + DragSelectable: true + GMNotes: '' + GUID: bcaed6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Final Mistake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.5773048 + posY: 1.53593814 + posZ: 45.3714676 + rotX: 359.918274 + rotY: 269.999023 + rotZ: 0.0145744616 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235741 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Curse. + DragSelectable: true + GMNotes: '' + GUID: 0555a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Snakescourge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.1629276 + posY: 1.54146063 + posZ: 63.6715736 + rotX: 359.918518 + rotY: 269.998871 + rotZ: 0.0141496556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' - Autoraise: true CardID: 235733 ColorDiffuse: @@ -697,7 +742,7 @@ ContainedObjects: Description: Hex. DragSelectable: true GMNotes: '' - GUID: 9aad5f + GUID: 54752a Grid: true GridProjection: false Hands: true @@ -714,12 +759,372 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 18.17159 - posY: 1.53291035 - posZ: 39.58129 - rotX: 359.923279 - rotY: 269.999023 - rotZ: 0.0134970415 + posX: 18.1425781 + posY: 1.48141217 + posZ: 39.4102 + rotX: 359.920258 + rotY: 269.999146 + rotZ: 0.0159195755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: 7b221b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Deep Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.4302654 + posY: 1.53989351 + posZ: 60.3248825 + rotX: 359.92157 + rotY: 269.999176 + rotZ: 0.0143620856 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Serpent. + DragSelectable: true + GMNotes: '' + GUID: 7a3a6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.218750983 + posY: 1.58100176 + posZ: 41.22056 + rotX: 359.9753 + rotY: 270.018524 + rotZ: 0.503650546 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Serpent. + DragSelectable: true + GMNotes: '' + GUID: 631fd0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.05291896 + posY: 1.52927518 + posZ: 41.9523277 + rotX: 359.865723 + rotY: 270.066772 + rotZ: 1.0062083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hex. + DragSelectable: true + GMNotes: '' + GUID: 09fa5b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Tear in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.8707352 + posY: 1.48277044 + posZ: 42.71366 + rotX: 359.920227 + rotY: 269.998749 + rotZ: 0.0163513962 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Curse. + DragSelectable: true + GMNotes: '' + GUID: 0b33ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Curse of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.32107234 + posY: 1.54362023 + posZ: 33.4066658 + rotX: 359.941 + rotY: 269.999939 + rotZ: 0.0141428877 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Serpent. + DragSelectable: true + GMNotes: '' + GUID: 35dd7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fang of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.402748 + posY: 2.4839747 + posZ: -34.9153023 + rotX: 359.920135 + rotY: 270.000336 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hex. + DragSelectable: true + GMNotes: '' + GUID: bfddb7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Tear in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.92174 + posY: 1.55716217 + posZ: 43.04463 + rotX: 359.921417 + rotY: 269.9989 + rotZ: 0.014410777 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Curse. + DragSelectable: true + GMNotes: '' + GUID: b7a7ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Curse of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.77082253 + posY: 1.50112176 + posZ: 33.68941 + rotX: 359.9206 + rotY: 269.9998 + rotZ: 0.0135837728 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -769,231 +1174,6 @@ ContainedObjects: scaleY: 1.0 scaleZ: 1.0 XmlUI: '' -- Autoraise: true - CardID: 235741 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Curse. - DragSelectable: true - GMNotes: '' - GUID: 0555a6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Snakescourge - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 18.1629276 - posY: 1.54146063 - posZ: 63.6715736 - rotX: 359.918518 - rotY: 269.998871 - rotZ: 0.0141496556 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235735 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Terror. - DragSelectable: true - GMNotes: '' - GUID: 61806c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ancestral Fear - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.9276278 - posY: 1.916111 - posZ: 5.757129 - rotX: 359.920044 - rotY: 270.0003 - rotZ: 180.016739 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235730 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Trap. - DragSelectable: true - GMNotes: '' - GUID: bcaed6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Final Mistake - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 17.5773048 - posY: 1.53593814 - posZ: 45.3714676 - rotX: 359.918274 - rotY: 269.999023 - rotZ: 0.0145744616 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235735 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Terror. - DragSelectable: true - GMNotes: '' - GUID: e7b322 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ancestral Fear - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.92762733 - posY: 1.92567611 - posZ: 5.757129 - rotX: 359.920166 - rotY: 270.000183 - rotZ: 180.016815 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235731 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Trap. - DragSelectable: true - GMNotes: '' - GUID: de9a86 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Entombed - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 18.17258 - posY: 1.48389673 - posZ: 47.9415779 - rotX: 359.920135 - rotY: 270.000122 - rotZ: 0.0168718565 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' - Autoraise: true CardID: 235741 ColorDiffuse: @@ -1040,7 +1220,7 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 235725 + CardID: 235733 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -1054,10 +1234,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Humanoid. Monster. Serpent. + Description: Hex. DragSelectable: true GMNotes: '' - GUID: 631fd0 + GUID: 9aad5f Grid: true GridProjection: false Hands: true @@ -1068,33 +1248,33 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Brood of Yig + Nickname: Lost in Time SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -0.05291896 - posY: 1.52927518 - posZ: 41.9523277 - rotX: 359.865723 - rotY: 270.066772 - rotZ: 1.0062083 + posX: 18.17159 + posY: 1.53291035 + posZ: 39.58129 + rotX: 359.923279 + rotY: 269.999023 + rotZ: 0.0134970415 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 235736 + CardID: 539620 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2357': + '2317': BackIsHidden: true BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ NumHeight: 7 NumWidth: 10 Type: 0 @@ -1102,7 +1282,7 @@ ContainedObjects: Description: Hazard. DragSelectable: true GMNotes: '' - GUID: 7b221b + GUID: ab3719 Grid: true GridProjection: false Hands: true @@ -1113,198 +1293,18 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Deep Dark + Nickname: Crypt Chill SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 18.4302654 - posY: 1.53989351 - posZ: 60.3248825 - rotX: 359.92157 - rotY: 269.999176 - rotZ: 0.0143620856 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235730 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Trap. - DragSelectable: true - GMNotes: '' - GUID: 49130a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Final Mistake - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 17.8433247 - posY: 1.48355341 - posZ: 45.2783966 - rotX: 359.920319 - rotY: 269.999 - rotZ: 0.0156590287 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235743 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Poison. - DragSelectable: true - GMNotes: '' - GUID: 3ae801 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Creeping Poison - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 38.5182 - posY: 1.47169614 - posZ: -40.74573 - rotX: 359.934235 - rotY: 269.999664 - rotZ: 0.0112709245 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235736 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hazard. - DragSelectable: true - GMNotes: '' - GUID: 89b67a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Deep Dark - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 18.1757374 - posY: 1.48745537 - posZ: 60.0669 - rotX: 359.9202 - rotY: 269.999359 - rotZ: 0.01637041 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235727 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Curse. - DragSelectable: true - GMNotes: '' - GUID: 0b33ea - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Curse of Yig - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 2.32107234 - posY: 1.54362023 - posZ: 33.4066658 - rotX: 359.941 - rotY: 269.999939 - rotZ: 0.0141428877 + posX: -14.5550861 + posY: 1.57516873 + posZ: 5.69822454 + rotX: 359.92038 + rotY: 270.002563 + rotZ: 0.0152713312 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1318,6 +1318,14 @@ CustomDeck: NumWidth: 10 Type: 0 UniqueBack: false + '2699': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1597043896927310894/224D88E486BCF3DCCA4F956CA928CC7FD510EECA/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false '5396': BackIsHidden: true BackURL: https://i.imgur.com/sRsWiSG.jpg/ @@ -1327,35 +1335,35 @@ CustomDeck: Type: 0 UniqueBack: false DeckIDs: -- 235727 -- 235725 +- 235732 +- 269900 +- 235735 +- 235743 - 235726 -- 235740 -- 235733 -- 539620 -- 235732 -- 235732 - 539621 -- 235742 -- 235732 -- 235740 -- 235725 +- 235731 +- 235736 - 539621 - 235743 +- 235730 +- 235725 +- 235740 +- 235735 +- 235730 +- 235741 - 235733 +- 235736 +- 235725 +- 235725 +- 235732 +- 235727 +- 235740 +- 235732 +- 235727 - 235734 - 235741 -- 235735 -- 235730 -- 235735 -- 235731 -- 235741 -- 235725 -- 235736 -- 235730 -- 235743 -- 235736 -- 235727 +- 235733 +- 539620 Description: '' DragSelectable: true GMNotes: '' @@ -1376,9 +1384,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.92773771 + posX: -3.92771959 posY: 1.74919271 - posZ: 5.757213 + posZ: 5.7572093 rotX: 359.919739 rotY: 270.000244 rotZ: 180.016815 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Exploration deck 187eb8.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Exploration deck 187eb8.yaml index c83efc9ab..049f26ce1 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Exploration deck 187eb8.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Exploration deck 187eb8.yaml @@ -502,9 +502,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.76742 + posX: -3.76742029 posY: 1.66015065 - posZ: 14.77302 + posZ: 14.7730207 rotX: 359.919739 rotY: 269.9844 rotZ: 180.016846 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Curiositie Shoppe f61f6c.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Curiositie Shoppe f61f6c.yaml index fd38abd4a..2c6b6cf9d 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Curiositie Shoppe f61f6c.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Curiositie Shoppe f61f6c.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -17.12 - posY: 1.61896908 - posZ: -0.0300004669 + posY: 1.6189239 + posZ: -0.03000047 rotX: 359.9201 rotY: 269.999756 - rotZ: 0.0168725718 + rotZ: 0.0168399476 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Downtown 377b20.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Downtown 377b20.yaml index 851567c0b..2168e50a8 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Downtown 377b20.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Downtown 377b20.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -23.6765 - posY: 1.62585318 - posZ: -7.700001 + posY: 1.62581241 + posZ: -7.70000029 rotX: 359.9201 rotY: 269.9775 - rotZ: 0.0169035811 + rotZ: 0.0168710463 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Easttown 9cdd5a.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Easttown 9cdd5a.yaml index 81c5dd763..4588de531 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Easttown 9cdd5a.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Easttown 9cdd5a.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -30.2242 - posY: 1.63498342 - posZ: -7.70000124 + posY: 1.63494277 + posZ: -7.70000029 rotX: 359.9201 rotY: 269.98288 - rotZ: 0.016896056 + rotZ: 0.016863456 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Miskatonic University 84cd30.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Miskatonic University 84cd30.yaml index f1c9bf2e8..3e51ea6ab 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Miskatonic University 84cd30.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Miskatonic University 84cd30.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -23.6764984 - posY: 1.63034952 - posZ: 7.56999969 + posX: -23.6765 + posY: 1.6303 + posZ: 7.569999 rotX: 359.9201 rotY: 269.973572 - rotZ: 0.0169092473 + rotZ: 0.016876502 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Northside 247af3.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Northside 247af3.yaml index c7bc86f17..61f86957e 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Northside 247af3.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Northside 247af3.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -23.6765 - posY: 1.6281116 - posZ: -0.0300003644 + posY: 1.62806654 + posZ: -0.0300003663 rotX: 359.9201 rotY: 269.975281 - rotZ: 0.016906606 + rotZ: 0.0168740135 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Rivertown fa17f8.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Rivertown fa17f8.yaml index 158fbce5b..3014381da 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Rivertown fa17f8.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Rivertown fa17f8.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -30.2242 - posY: 1.637242 - posZ: -0.0300004184 + posY: 1.6371969 + posZ: -0.0300004315 rotX: 359.9201 rotY: 269.9784 - rotZ: 0.0169024058 + rotZ: 0.0168697815 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Scenario bd51a7.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Scenario bd51a7.yaml index 332873b62..2b9c88d92 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Scenario bd51a7.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Scenario bd51a7.yaml @@ -37,8 +37,8 @@ Transform: posY: 1.59753942 posZ: -10.4412012 rotX: 359.919739 - rotY: 269.9997 - rotZ: 0.016837649 + rotY: 269.999664 + rotZ: 0.0168376416 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Velma's Diner 007d36.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Velma's Diner 007d36.yaml index 02d1b4ff0..d651c59af 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Velma's Diner 007d36.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Velma's Diner 007d36.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -36.7733 - posY: 1.64411569 - posZ: -7.7 + posY: 1.644075 + posZ: -7.70000124 rotX: 359.9201 rotY: 269.9998 - rotZ: 0.0168724842 + rotZ: 0.0168398675 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Model_Bag Set-aside a45247.yaml index 22c200495..9678969dc 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Model_Bag Set-aside a45247.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Model_Bag Set-aside a45247.yaml @@ -50,12 +50,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 1.696601 - posY: 1.55831587 + posX: 1.69660091 + posY: 1.558316 posZ: 14.2787018 rotX: 359.955139 - rotY: 224.998 - rotZ: 0.06867236 + rotY: 224.997986 + rotZ: 0.06867324 scaleX: 2.0 scaleY: 2.0 scaleZ: 2.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 061a07.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 061a07.yaml index 8d69837e4..05ef216e0 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 061a07.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 061a07.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -20.4536 - posY: 1.60998881 - posZ: -0.111300305 - rotX: 0.07989094 + posY: 1.60994375 + posZ: -0.111300282 + rotX: 0.07989097 rotY: 89.9883041 - rotZ: 359.9831 + rotZ: 359.983124 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 07f90c.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 07f90c.yaml index 7821b5408..13b2f021b 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 07f90c.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 07f90c.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -27.1247 - posY: 1.61707664 - posZ: -7.632101 + posY: 1.61703575 + posZ: -7.63210058 rotX: 359.9201 - rotY: 270.0081 - rotZ: 0.0168886222 + rotY: 270.008118 + rotZ: 0.0168563873 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 34e74c.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 34e74c.yaml index a4ff1f5dd..f458e96e4 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 34e74c.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 34e74c.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -33.506 - posY: 1.62602425 - posZ: -7.464102 + posY: 1.62598336 + posZ: -7.464101 rotX: 359.9201 rotY: 270.002 - rotZ: 0.0168993548 + rotZ: 0.016864812 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 5789a0.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 5789a0.yaml index 67cc60672..4396529b3 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 5789a0.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 5789a0.yaml @@ -124,10 +124,10 @@ Sticky: true Tooltip: true Transform: posX: -23.6765 - posY: 1.61338782 - posZ: -3.82999969 - rotX: 359.983154 - rotY: 0.01793836 + posY: 1.61334491 + posZ: -3.82999921 + rotX: 359.9832 + rotY: 0.0179546438 rotZ: 359.920044 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 7234af.yaml index 28d8c3725..d07567228 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 7234af.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 7234af.yaml @@ -124,10 +124,10 @@ Sticky: true Tooltip: true Transform: posX: -23.6765 - posY: 1.61565232 - posZ: 3.86000061 - rotX: 359.983154 - rotY: 0.0184099171 + posY: 1.61560512 + posZ: 3.86000013 + rotX: 359.9832 + rotY: 0.01843458 rotZ: 359.920044 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 99909c.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 99909c.yaml index e490bc2d8..5e21cf355 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 99909c.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 99909c.yaml @@ -124,10 +124,10 @@ Sticky: true Tooltip: true Transform: posX: -30.2243 - posY: 1.62251854 + posY: 1.62247562 posZ: -3.83 - rotX: 359.983154 - rotY: 0.0181085579 + rotX: 359.9832 + rotY: 0.0181580987 rotZ: 359.920044 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile adebd8.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile adebd8.yaml index 55594d3d8..7ee2e0da7 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile adebd8.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile adebd8.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -27.4881 - posY: 1.6210494 - posZ: 4.1396 - rotX: 359.9554 + posY: 1.621002 + posZ: 4.13960028 + rotX: 359.955383 rotY: 225.012238 - rotZ: 0.06839508 + rotZ: 0.06837434 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile Threads of Fate 7a95f6.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile Threads of Fate 7a95f6.yaml index 400446d3d..a0662c27f 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile Threads of Fate 7a95f6.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile Threads of Fate 7a95f6.yaml @@ -32,12 +32,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.98660016 + posX: -3.9866 posY: 1.58274519 - posZ: -14.6355038 + posZ: -14.6355047 rotX: 359.919739 rotY: 270.0305 - rotZ: 0.0167951416 + rotZ: 0.0167952441 scaleX: 2.2 scaleY: 1.0 scaleZ: 2.2 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Act ab 830c08.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Act ab 830c08.yaml index 2b35d2809..8f11d16d5 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Act ab 830c08.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Act ab 830c08.yaml @@ -410,12 +410,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -2.68859982 + posX: -2.6886 posY: 1.64318693 posZ: -5.0485 - rotX: 0.01683584 + rotX: 0.0168358739 rotY: 179.9996 - rotZ: 0.0802568346 + rotZ: 0.0802568644 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Act cd 84c77d.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Act cd 84c77d.yaml index 024d8e04f..11b7fd3a1 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Act cd 84c77d.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Act cd 84c77d.yaml @@ -410,12 +410,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0.5568004 + posX: 0.5568008 posY: 1.63913429 - posZ: -3.36990023 - rotX: 0.016834138 + posZ: -3.3699 + rotX: 0.0168342 rotY: 180.0008 - rotZ: 0.080257155 + rotZ: 0.08025711 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Act ef 77af79.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Act ef 77af79.yaml index 52d02c845..1c88af9c6 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Act ef 77af79.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Act ef 77af79.yaml @@ -410,12 +410,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0.5533004 + posX: 0.5533003 posY: 1.63819349 posZ: -6.588201 - rotX: 0.0168529879 + rotX: 0.0168529674 rotY: 179.987381 - rotZ: 0.08025319 + rotZ: 0.08025328 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Agenda deck 3ab30d.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Agenda deck 3ab30d.yaml index 5f9e34203..7990a172c 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Agenda deck 3ab30d.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Agenda deck 3ab30d.yaml @@ -174,10 +174,10 @@ Tooltip: true Transform: posX: -2.7248 posY: 1.62076056 - posZ: 0.373300165 - rotX: 0.0168383569 - rotY: 179.998077 - rotZ: 0.0802554339 + posZ: 0.373300254 + rotX: 0.0168383382 + rotY: 179.9981 + rotZ: 0.08025541 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Encounter deck da7d6f.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Encounter deck da7d6f.yaml index 34cfa65a1..cf0abce06 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Encounter deck da7d6f.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Encounter deck da7d6f.yaml @@ -1423,8 +1423,8 @@ Sticky: true Tooltip: true Transform: posX: -3.92770028 - posY: 1.75400662 - posZ: 5.757201 + posY: 1.75400674 + posZ: 5.75720072 rotX: 359.919739 rotY: 270.0005 rotZ: 180.016815 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Bag Encounter Setup b198c8.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Bag Encounter Setup b198c8.yaml index c210fc4a3..5ef2833f4 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Bag Encounter Setup b198c8.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Bag Encounter Setup b198c8.yaml @@ -28,12 +28,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.92197943 - posY: 1.56076694 - posZ: 5.75167751 + posX: -3.92197871 + posY: 1.56076646 + posZ: 5.751678 rotX: 359.923248 - rotY: 270.012146 - rotZ: 0.0194652081 + rotY: 270.012329 + rotZ: 0.0194634218 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Bag Encounter Setup b198c8/Deck 2 or more Tablet Tokens af38eb.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Bag Encounter Setup b198c8/Deck 2 or more Tablet Tokens af38eb.yaml index 865d0d972..df5130c96 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Bag Encounter Setup b198c8/Deck 2 or more Tablet Tokens af38eb.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Bag Encounter Setup b198c8/Deck 2 or more Tablet Tokens af38eb.yaml @@ -365,24 +365,24 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 235742 + CardID: 269900 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2357': + '2699': BackIsHidden: true BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 + FaceURL: http://cloud-3.steamusercontent.com/ugc/1597043896927310894/224D88E486BCF3DCCA4F956CA928CC7FD510EECA/ + NumHeight: 1 + NumWidth: 1 Type: 0 UniqueBack: false Description: Power. DragSelectable: true GMNotes: '' - GUID: 5bcb26 + GUID: 40b279 Grid: true GridProjection: false Hands: true @@ -392,19 +392,19 @@ ContainedObjects: LuaScript: '' LuaScriptState: '' MeasureMovement: false - Name: Card + Name: CardCustom Nickname: Serpent's Call SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -25.054512 - posY: 1.52718151 - posZ: -9.716385 - rotX: 359.920135 - rotY: 269.9883 - rotZ: 0.0168884024 + posX: -11.9282322 + posY: 1.71791184 + posZ: 35.63141 + rotX: 359.9417 + rotY: 269.988 + rotZ: 357.291229 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -418,6 +418,14 @@ CustomDeck: NumWidth: 10 Type: 0 UniqueBack: false + '2699': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1597043896927310894/224D88E486BCF3DCCA4F956CA928CC7FD510EECA/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false DeckIDs: - 235741 - 235741 @@ -427,7 +435,7 @@ DeckIDs: - 235728 - 235740 - 235740 -- 235742 +- 269900 Description: '' DragSelectable: true GMNotes: '' @@ -448,12 +456,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.92762756 - posY: 3.89391446 - posZ: 5.757129 - rotX: 0.0103662675 - rotY: 269.9998 - rotZ: 359.9661 + posX: 6.35492 + posY: 3.5140152 + posZ: 11.26856 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 0.0168725662 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Chapultepec Park c8f441.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Chapultepec Park c8f441.yaml index 91592bb86..b9ec8cd22 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Chapultepec Park c8f441.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Chapultepec Park c8f441.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -23.6766 - posY: 1.63034964 - posZ: 7.56999874 + posY: 1.63030028 + posZ: 7.569999 rotX: 359.9201 - rotY: 269.994171 - rotZ: 0.016880393 + rotY: 269.994141 + rotZ: 0.01684761 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Coyoacán db1ed3.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Coyoacán db1ed3.yaml index b69daa71b..6184ba875 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Coyoacán db1ed3.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Coyoacán db1ed3.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -23.6766 - posY: 1.62811172 - posZ: -0.03000081 + posY: 1.62806666 + posZ: -0.0300009549 rotX: 359.9201 rotY: 269.998169 - rotZ: 0.01687474 + rotZ: 0.0168422386 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Metropolitan Cathedral 158c7c.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Metropolitan Cathedral 158c7c.yaml index 56444e7c0..86c1f2415 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Metropolitan Cathedral 158c7c.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Metropolitan Cathedral 158c7c.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -30.2243 - posY: 1.63498366 + posY: 1.63494289 posZ: -7.700002 rotX: 359.9201 rotY: 269.998749 - rotZ: 0.01687395 + rotZ: 0.0168413911 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Relic of Ages 7667ef.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Relic of Ages 7667ef.yaml index 01b499bb2..9b3b86af5 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Relic of Ages 7667ef.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Relic of Ages 7667ef.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -12.6623726 - posY: 1.61582911 - posZ: 10.4157877 + posX: -12.6623735 + posY: 1.615778 + posZ: 10.4157867 rotX: 359.9201 rotY: 270.001465 - rotZ: 0.0168700889 + rotZ: 0.01683744 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Scenario 4185cc.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Scenario 4185cc.yaml index 1d85e7896..845eec8a8 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Scenario 4185cc.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Scenario 4185cc.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.95600057 + posX: -3.9560008 posY: 1.59753942 posZ: -10.4412041 rotX: 359.919739 rotY: 269.999542 - rotZ: 0.016837785 + rotZ: 0.0168377515 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Temple Ruins d71f61.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Temple Ruins d71f61.yaml index 6807c3e24..2656fd172 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Temple Ruins d71f61.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Temple Ruins d71f61.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -30.2243 - posY: 1.63724208 - posZ: -0.0300006811 + posY: 1.637197 + posZ: -0.03000078 rotX: 359.9201 - rotY: 269.9987 - rotZ: 0.0168740638 + rotY: 269.998657 + rotZ: 0.0168414656 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Xochimilco 22f371.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Xochimilco 22f371.yaml index 9bea2a13f..f7b55532b 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Xochimilco 22f371.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Xochimilco 22f371.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -17.12 - posY: 1.61896908 - posZ: -0.0300009 + posY: 1.6189239 + posZ: -0.03000096 rotX: 359.9201 rotY: 269.9987 - rotZ: 0.0168740172 + rotZ: 0.016841514 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Zócalo 941f46.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Zócalo 941f46.yaml index 1e2db925f..e8b237293 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Zócalo 941f46.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Zócalo 941f46.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -23.6766 - posY: 1.6258533 - posZ: -7.70000124 + posY: 1.62581253 + posZ: -7.700001 rotX: 359.9201 rotY: 269.998871 - rotZ: 0.0168737881 + rotZ: 0.0168411713 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247.yaml index e4b8be617..1977576da 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247.yaml @@ -49,12 +49,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 1.69660187 - posY: 1.558317 + posX: 1.696602 + posY: 1.55831718 posZ: 14.2790031 rotX: 359.955139 rotY: 224.998032 - rotZ: 0.06867217 + rotZ: 0.0686716139 scaleX: 2.0 scaleY: 2.0 scaleZ: 2.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 3b6840.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 3b6840.yaml index fcfc9bb68..d4b0973c9 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 3b6840.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 3b6840.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -23.6765 - posY: 1.61565208 + posY: 1.61560476 posZ: 3.86 - rotX: 0.0168719254 - rotY: 179.999878 - rotZ: 0.07994 + rotX: 0.0168394763 + rotY: 179.999832 + rotZ: 0.07994043 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 55a1cc.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 55a1cc.yaml index 4a7f0727e..ef3fc0377 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 55a1cc.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 55a1cc.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -20.6854 - posY: 1.61029792 - posZ: -0.158900142 - rotX: 0.0798942745 - rotY: 89.9997559 - rotZ: 359.9831 + posY: 1.6102531 + posZ: -0.158900321 + rotX: 0.07989431 + rotY: 89.99983 + rotZ: 359.983124 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 7234af.yaml index eb672aefa..0f8db43d2 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 7234af.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 7234af.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -23.6764984 - posY: 1.6133877 - posZ: -3.83000064 - rotX: 0.01687203 + posY: 1.61334479 + posZ: -3.8300004 + rotX: 0.0168394782 rotY: 179.999847 - rotZ: 0.07993959 + rotZ: 0.07994011 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 929e75.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 929e75.yaml index a4e8c908b..2fb91428e 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 929e75.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 929e75.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -27.5017 - posY: 1.61883032 - posZ: -3.46120024 - rotX: 0.0684308559 + posY: 1.61878717 + posZ: -3.4612 + rotX: 0.0684078038 rotY: 135.000275 - rotZ: 0.04456235 + rotZ: 0.04458518 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile a08ca6.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile a08ca6.yaml index 6c5342caf..55c5bab0f 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile a08ca6.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile a08ca6.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -26.72 - posY: 1.61870825 - posZ: -0.174700588 - rotX: 0.07989438 + posY: 1.61866331 + posZ: -0.174700513 + rotX: 0.07989434 rotY: 89.9999161 - rotZ: 359.9831 + rotZ: 359.983124 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile bc76d7.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile bc76d7.yaml index a91d1ed94..5315b0d16 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile bc76d7.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile bc76d7.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -26.9092 - posY: 1.61681378 - posZ: -7.50410128 - rotX: 0.07989446 - rotY: 89.99984 - rotZ: 359.9831 + posY: 1.61677289 + posZ: -7.50410175 + rotX: 0.07989443 + rotY: 89.9998245 + rotZ: 359.983124 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile c1ff41.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile c1ff41.yaml index 8447dfffe..5b7b7bdb9 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile c1ff41.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile c1ff41.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -19.9986954 - posY: 1.60826409 - posZ: -3.81389928 - rotX: 359.955444 - rotY: 224.999954 - rotZ: 0.0684071556 + posY: 1.60822117 + posZ: -3.81389952 + rotX: 359.9554 + rotY: 224.999924 + rotZ: 0.0683841 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile The Boundary Beyond 010761.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile The Boundary Beyond 010761.yaml index e6866a053..47dd91fc8 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile The Boundary Beyond 010761.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile The Boundary Beyond 010761.yaml @@ -37,7 +37,7 @@ Transform: posZ: -14.856308 rotX: 359.919739 rotY: 270.029724 - rotZ: 0.0167963188 + rotZ: 0.0167963784 scaleX: 2.2 scaleY: 1.0 scaleZ: 2.2 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Act deck 4c91d7.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Act deck 4c91d7.yaml index fb989804a..e19be4397 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Act deck 4c91d7.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Act deck 4c91d7.yaml @@ -129,9 +129,9 @@ Transform: posX: -2.6886 posY: 1.61430264 posZ: -5.04850054 - rotX: 0.0168467741 + rotX: 0.0168467443 rotY: 179.992111 - rotZ: 0.08025349 + rotZ: 0.08025348 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Agenda deck 0653df.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Agenda deck 0653df.yaml index ce711ede9..16f4bc5b2 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Agenda deck 0653df.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Agenda deck 0653df.yaml @@ -126,12 +126,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -2.72479987 + posX: -2.7248 posY: 1.61594653 - posZ: 0.3733008 - rotX: 0.0168476366 + posZ: 0.373300672 + rotX: 0.01684763 rotY: 179.9915 - rotZ: 0.08025329 + rotZ: 0.08025322 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Encounter deck 7860a5.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Encounter deck 7860a5.yaml index 89440367a..4f89ffc90 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Encounter deck 7860a5.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Encounter deck 7860a5.yaml @@ -586,7 +586,7 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.92769957 + posX: -3.9276998 posY: 1.66729915 posZ: 5.757094 rotX: 359.920319 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Card Mouth of K'n-yan 1a75e4.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Card Mouth of K'n-yan 1a75e4.yaml index 3ecb5a7c1..278105f90 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Card Mouth of K'n-yan 1a75e4.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Card Mouth of K'n-yan 1a75e4.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -43.3699379 - posY: 1.65557277 - posZ: -0.0300143547 + posY: 1.65552771 + posZ: -0.0300145652 rotX: 359.9201 rotY: 269.999939 - rotZ: 0.0168723166 + rotZ: 0.01683967 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Card Scenario 523c3d.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Card Scenario 523c3d.yaml index fb1f07b41..c47e40a78 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Card Scenario 523c3d.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Card Scenario 523c3d.yaml @@ -38,7 +38,7 @@ Transform: posZ: -10.441206 rotX: 359.919739 rotY: 269.999146 - rotZ: 0.016838396 + rotZ: 0.0168383457 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/CardCustom Exploration Reference ff5342.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/CardCustom Exploration Reference ff5342.yaml index be1795ae6..e5d0a7c1f 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/CardCustom Exploration Reference ff5342.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/CardCustom Exploration Reference ff5342.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -11.9308987 - posY: 1.607848 - posZ: -13.2240019 - rotX: 0.0168718155 + posY: 1.6078105 + posZ: -13.2240009 + rotX: 0.0168392137 rotY: 179.999619 - rotZ: 0.07989503 + rotZ: 0.07989504 scaleX: 2.17822933 scaleY: 1.0 scaleZ: 2.17822933 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Custom_Model_Bag Set-aside a45247.yaml index 52d7004ed..e6bee28ef 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Custom_Model_Bag Set-aside a45247.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Custom_Model_Bag Set-aside a45247.yaml @@ -276,11 +276,11 @@ Sticky: true Tooltip: true Transform: posX: 1.69330406 - posY: 1.5583216 + posY: 1.55832148 posZ: 14.2793055 rotX: 359.955139 rotY: 224.997833 - rotZ: 0.06867327 + rotZ: 0.0686728954 scaleX: 2.0 scaleY: 2.0 scaleZ: 2.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Custom_Tile Heart of the Elders 493cb1.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Custom_Tile Heart of the Elders 493cb1.yaml index db65e54fc..9b9994f07 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Custom_Tile Heart of the Elders 493cb1.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Custom_Tile Heart of the Elders 493cb1.yaml @@ -32,12 +32,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.917601 + posX: -3.91760135 posY: 1.58228362 - posZ: -15.8770094 + posZ: -15.8770084 rotX: 359.919739 - rotY: 269.99353 - rotZ: 0.016846817 + rotY: 269.9935 + rotZ: 0.0168469269 scaleX: 2.2 scaleY: 1.0 scaleZ: 2.2 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Act deck eb5427.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Act deck eb5427.yaml index 09172cec2..d1be3e261 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Act deck eb5427.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Act deck eb5427.yaml @@ -137,9 +137,9 @@ Transform: posX: -2.6886 posY: 1.61430264 posZ: -5.0485 - rotX: 0.0168356784 + rotX: 0.0168357231 rotY: 180.0 - rotZ: 0.08025575 + rotZ: 0.0802557245 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Agenda Deck 7779f3.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Agenda Deck 7779f3.yaml index e060c33d3..9c5989842 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Agenda Deck 7779f3.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Agenda Deck 7779f3.yaml @@ -126,12 +126,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -2.72479916 + posX: -2.72479939 posY: 1.61594653 - posZ: 0.373301148 - rotX: 0.01683576 + posZ: 0.3733011 + rotX: 0.0168357044 rotY: 180.0 - rotZ: 0.0802557543 + rotZ: 0.0802558139 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Encounter Deck efdae8.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Encounter Deck efdae8.yaml index 5dd44a889..2114fd7c3 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Encounter Deck efdae8.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Encounter Deck efdae8.yaml @@ -1284,9 +1284,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.92760015 + posX: -3.92760038 posY: 1.73956442 - posZ: 5.757102 + posZ: 5.75710249 rotX: 359.919739 rotY: 270.0 rotZ: 180.016815 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Exploration Deck 1a1eae.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Exploration Deck 1a1eae.yaml index aafa24247..c434bf219 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Exploration Deck 1a1eae.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Exploration Deck 1a1eae.yaml @@ -502,9 +502,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.792379 + posX: -3.79237866 posY: 1.66016817 - posZ: 14.7135267 + posZ: 14.7135277 rotX: 359.919739 rotY: 270.000366 rotZ: 180.01683 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Ruins a25525.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Ruins a25525.yaml index 4bfa025fb..ef91a2c60 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Ruins a25525.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Ruins a25525.yaml @@ -181,11 +181,11 @@ Sticky: true Tooltip: true Transform: posX: -11.4852858 - posY: 1.63528514 - posZ: 8.139168 + posY: 1.63523543 + posZ: 8.139169 rotX: 359.9201 rotY: 269.999542 - rotZ: 180.016861 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403.yaml index bca9803aa..183aecfd3 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403.yaml @@ -19,6 +19,8 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: +- !include 'Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Card Mouth of K''n-yan + 38a3e5.yaml' - !include 'Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Part 1 Vengeance Cards 0498ce.yaml' - !include 'Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Custom_Model_Bag @@ -32,8 +34,6 @@ ContainedObjects: Reference 9170ad.yaml' - !include 'Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Exploration Deck b307ea.yaml' -- !include 'Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Card Mouth of K''n-yan - e12dc3.yaml' - !include 'Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Card Scenario ec85f3.yaml' CustomMesh: CastShadows: true @@ -55,7 +55,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: false LuaScript: !include 'Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403.ttslua' -LuaScriptState: '{"ml":{"0498ce":{"lock":false,"pos":{"x":-11.341,"y":1.65,"z":9.867},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"10ce27":{"lock":false,"pos":{"x":-3.9274,"y":1.7717,"z":5.7571},"rot":{"x":359.9197,"y":270.0076,"z":180.0168}},"20d884":{"lock":false,"pos":{"x":-3.9274,"y":1.754,"z":5.7571},"rot":{"x":359.9197,"y":270,"z":180.0168}},"30a2e4":{"lock":false,"pos":{"x":-12.759,"y":1.6727,"z":7.598},"rot":{"x":359.9201,"y":270.0002,"z":180.0169}},"340f04":{"lock":false,"pos":{"x":1.69640076160431,"y":1.55831682682037,"z":14.2788019180298},"rot":{"x":359.955139160156,"y":224.998001098633,"z":0.0686737820506096}},"3deb0d":{"lock":false,"pos":{"x":-2.68860006332397,"y":1.61430263519287,"z":-5.04850006103516},"rot":{"x":0.0168485846370459,"y":179.990798950195,"z":0.0802530571818352}},"4662da":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9961,"z":0.0168}},"584ca4":{"lock":false,"pos":{"x":-23.6764755249023,"y":1.62808072566986,"z":-0.030033590272069},"rot":{"x":359.919769287109,"y":270.000244140625,"z":180.020416259766}},"5b969a":{"lock":false,"pos":{"x":-12.8393,"y":1.6659,"z":7.4705},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"5e6b98":{"lock":false,"pos":{"x":-13.0642013549805,"y":1.60906398296356,"z":-14.461501121521},"rot":{"x":359.920104980469,"y":269.992492675781,"z":180.016876220703}},"6ee3ce":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"7b059d":{"lock":false,"pos":{"x":-2.7247998714447,"y":1.61594653129578,"z":0.373300045728683},"rot":{"x":0.0168356820940971,"y":180,"z":0.0802557319402695}},"7fd536":{"lock":false,"pos":{"x":-3.9274,"y":1.754,"z":5.7572},"rot":{"x":359.9197,"y":270.0002,"z":180.0168}},"88bd9e":{"lock":false,"pos":{"x":-2.7207,"y":1.664,"z":0.3785},"rot":{"x":0.017,"y":179.883,"z":0.0802}},"9170ad":{"lock":false,"pos":{"x":-13.7181,"y":1.6102,"z":-13.8655},"rot":{"x":359.9201,"y":270,"z":0.0169}},"b307ea":{"lock":false,"pos":{"x":-3.9756,"y":1.6556,"z":14.7253},"rot":{"x":359.9197,"y":270.011,"z":180.0168}},"df31c5":{"lock":false,"pos":{"x":-2.6884,"y":1.6623,"z":-5.0485},"rot":{"x":0.0168,"y":180.0008,"z":0.0803}},"e12dc3":{"lock":false,"pos":{"x":-23.6765,"y":1.6281,"z":-0.03},"rot":{"x":359.9201,"y":270.0002,"z":180.0169}},"ec85f3":{"lock":false,"pos":{"x":-3.95600008964539,"y":1.59753942489624,"z":-10.441201210022},"rot":{"x":359.919738769531,"y":269.999908447266,"z":0.0168373119086027}}}}' +LuaScriptState: '{"ml":{"0498ce":{"lock":false,"pos":{"x":-11.341,"y":1.65,"z":9.867},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"10ce27":{"lock":false,"pos":{"x":-3.9274,"y":1.7717,"z":5.7571},"rot":{"x":359.9197,"y":270.0076,"z":180.0168}},"20d884":{"lock":false,"pos":{"x":-3.9274,"y":1.754,"z":5.7571},"rot":{"x":359.9197,"y":270,"z":180.0168}},"30a2e4":{"lock":false,"pos":{"x":-12.759,"y":1.6727,"z":7.598},"rot":{"x":359.9201,"y":270.0002,"z":180.0169}},"340f04":{"lock":false,"pos":{"x":1.69640076160431,"y":1.55831682682037,"z":14.2788019180298},"rot":{"x":359.955139160156,"y":224.998001098633,"z":0.0686737820506096}},"38a3e5":{"lock":false,"pos":{"x":-23.6765,"y":1.6281,"z":-0.03},"rot":{"x":359.9201,"y":270.0002,"z":180.0168}},"3deb0d":{"lock":false,"pos":{"x":-2.68860006332397,"y":1.61430263519287,"z":-5.04850006103516},"rot":{"x":0.0168485846370459,"y":179.990798950195,"z":0.0802530571818352}},"4662da":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9961,"z":0.0168}},"584ca4":{"lock":false,"pos":{"x":-23.6764755249023,"y":1.62808072566986,"z":-0.030033590272069},"rot":{"x":359.919769287109,"y":270.000244140625,"z":180.020416259766}},"5b969a":{"lock":false,"pos":{"x":-12.8393,"y":1.6659,"z":7.4705},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"5e6b98":{"lock":false,"pos":{"x":-13.0642013549805,"y":1.60906398296356,"z":-14.461501121521},"rot":{"x":359.920104980469,"y":269.992492675781,"z":180.016876220703}},"6ee3ce":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"7b059d":{"lock":false,"pos":{"x":-2.7247998714447,"y":1.61594653129578,"z":0.373300045728683},"rot":{"x":0.0168356820940971,"y":180,"z":0.0802557319402695}},"7fd536":{"lock":false,"pos":{"x":-3.9274,"y":1.754,"z":5.7572},"rot":{"x":359.9197,"y":270.0002,"z":180.0168}},"88bd9e":{"lock":false,"pos":{"x":-2.7207,"y":1.664,"z":0.3785},"rot":{"x":0.017,"y":179.883,"z":0.0802}},"9170ad":{"lock":false,"pos":{"x":-13.7181,"y":1.6102,"z":-13.8655},"rot":{"x":359.9201,"y":270,"z":0.0169}},"b307ea":{"lock":false,"pos":{"x":-3.9756,"y":1.6556,"z":14.7253},"rot":{"x":359.9197,"y":270.011,"z":180.0168}},"df31c5":{"lock":false,"pos":{"x":-2.6884,"y":1.6623,"z":-5.0485},"rot":{"x":0.0168,"y":180.0008,"z":0.0803}},"e12dc3":{"lock":false,"pos":{"x":-23.6765,"y":1.6281,"z":-0.03},"rot":{"x":359.9201,"y":270.0002,"z":180.0169}},"ec85f3":{"lock":false,"pos":{"x":-3.95600008964539,"y":1.59753942489624,"z":-10.441201210022},"rot":{"x":359.919738769531,"y":269.999908447266,"z":0.0168373119086027}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 diff --git a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Card Mouth of K'n-yan e12dc3.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Card Mouth of K'n-yan 38a3e5.yaml similarity index 92% rename from unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Card Mouth of K'n-yan e12dc3.yaml rename to unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Card Mouth of K'n-yan 38a3e5.yaml index 57c24d09a..dd4af0efc 100644 --- a/unpacked/Custom_Model_Bag Return to The Forgotten Age 479ff3/Custom_Model_Bag 5 Return to Heart of the Elders Part 2 3ccabf/Card Mouth of K'n-yan e12dc3.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Card Mouth of K'n-yan 38a3e5.yaml @@ -16,7 +16,7 @@ CustomDeck: Description: Cave. DragSelectable: true GMNotes: '' -GUID: e12dc3 +GUID: 38a3e5 Grid: true GridProjection: false Hands: true @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -23.6765 - posY: 1.6281116 - posZ: -0.0299998783 + posY: 1.62806654 + posZ: -0.0299998913 rotX: 359.9201 rotY: 270.0002 - rotZ: 180.016861 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Card Scenario ec85f3.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Card Scenario ec85f3.yaml index 77b9ce727..b84a03095 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Card Scenario ec85f3.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Card Scenario ec85f3.yaml @@ -38,7 +38,7 @@ Transform: posZ: -10.4412022 rotX: 359.919739 rotY: 269.9999 - rotZ: 0.0168373063 + rotZ: 0.0168373156 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/CardCustom Exploration Reference 9170ad.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/CardCustom Exploration Reference 9170ad.yaml index 438ed3f0b..d7ad96bd4 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/CardCustom Exploration Reference 9170ad.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/CardCustom Exploration Reference 9170ad.yaml @@ -1,11 +1,11 @@ Autoraise: true -CardID: 269900 +CardID: 270000 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2699': + '2700': BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1487830416930566026/98C9A9BCF5B31C75ECD796ECA64C48AA97B191AF/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1487830416930566026/98C9A9BCF5B31C75ECD796ECA64C48AA97B191AF/ @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -13.7180815 - posY: 1.61015129 - posZ: -13.8655062 + posX: -13.7181005 + posY: 1.6101141 + posZ: -13.8655 rotX: 359.9201 - rotY: 270.000031 - rotZ: 0.0168714114 + rotY: 270.0 + rotZ: 0.01683886 scaleX: 2.17822933 scaleY: 1.0 scaleZ: 2.17822933 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Custom_Model_Bag Set-aside 340f04.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Custom_Model_Bag Set-aside 340f04.yaml index 21192ab3d..48d1a492b 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Custom_Model_Bag Set-aside 340f04.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Custom_Model_Bag Set-aside 340f04.yaml @@ -49,11 +49,11 @@ Sticky: true Tooltip: true Transform: posX: 1.69640148 - posY: 1.558317 + posY: 1.55831718 posZ: 14.2788038 rotX: 359.955139 rotY: 224.998 - rotZ: 0.0686731562 + rotZ: 0.0686725453 scaleX: 2.0 scaleY: 2.0 scaleZ: 2.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Act deck 3deb0d.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Act deck 3deb0d.yaml index b25b0402b..48a2a9451 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Act deck 3deb0d.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Act deck 3deb0d.yaml @@ -126,12 +126,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -2.68859982 + posX: -2.6886 posY: 1.61430264 posZ: -5.0485 - rotX: 0.0168485716 + rotX: 0.016848607 rotY: 179.9908 - rotZ: 0.08025307 + rotZ: 0.08025297 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Agenda Deck 7b059d.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Agenda Deck 7b059d.yaml index 567da4eda..ee1f6bd72 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Agenda Deck 7b059d.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Agenda Deck 7b059d.yaml @@ -129,9 +129,9 @@ Transform: posX: -2.72479963 posY: 1.61594653 posZ: 0.373300374 - rotX: 0.01683569 + rotX: 0.0168356672 rotY: 180.0 - rotZ: 0.0802557841 + rotZ: 0.08025576 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Encounter Deck 7fd536.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Encounter Deck 7fd536.yaml index 480c70325..5dc60e66f 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Encounter Deck 7fd536.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Encounter Deck 7fd536.yaml @@ -4,6 +4,141 @@ ColorDiffuse: g: 0.713235259 r: 0.713235259 ContainedObjects: +- Autoraise: true + CardID: 235740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Serpent. + DragSelectable: true + GMNotes: '' + GUID: 5eac6e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fang of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.209852 + posY: 1.65759242 + posZ: 15.5676947 + rotX: 359.9197 + rotY: 270.0007 + rotZ: 359.42038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Serpent. + DragSelectable: true + GMNotes: '' + GUID: 7a3a6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.84535861 + posY: 1.64358854 + posZ: 10.3834381 + rotX: 359.9358 + rotY: 269.999969 + rotZ: 180.035156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Trap. + DragSelectable: true + GMNotes: '' + GUID: de9a86 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Entombed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.415193 + posY: 1.669188 + posZ: 13.2977581 + rotX: 359.426575 + rotY: 270.008728 + rotZ: 0.0167107359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' - Autoraise: true CardID: 235901 ColorDiffuse: @@ -22,7 +157,7 @@ ContainedObjects: Description: Hazard. DragSelectable: true GMNotes: '' - GUID: 3f5bb6 + GUID: dcdfc4 Grid: true GridProjection: false Hands: true @@ -39,8 +174,8 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -3.9558847 - posY: 1.70915866 + posX: -3.95588446 + posY: 1.69950676 posZ: -10.4411745 rotX: 359.919739 rotY: 270.0 @@ -49,6 +184,726 @@ ContainedObjects: scaleY: 1.0 scaleZ: 1.0 XmlUI: '' +- Autoraise: true + CardID: 235735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Terror. + DragSelectable: true + GMNotes: '' + GUID: e7b322 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ancestral Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.84543252 + posY: 1.60350382 + posZ: 10.3832359 + rotX: 359.919739 + rotY: 270.0006 + rotZ: 0.0168367121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Serpent. + DragSelectable: true + GMNotes: '' + GUID: 35dd7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fang of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.20269632 + posY: 1.6211468 + posZ: 15.5052032 + rotX: 359.919678 + rotY: 269.9983 + rotZ: 359.272064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235734 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Omen. Terror. + DragSelectable: true + GMNotes: '' + GUID: 6bff4f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ill Omen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.35918 + posY: 1.63676143 + posZ: 13.5888414 + rotX: 359.9325 + rotY: 270.0001 + rotZ: 0.0141381165 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Curse. + DragSelectable: true + GMNotes: '' + GUID: 0b33ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Curse of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.84542 + posY: 1.73278 + posZ: 10.3834515 + rotX: 359.892 + rotY: 270.011047 + rotZ: 178.285187 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Serpent. + DragSelectable: true + GMNotes: '' + GUID: dfc63f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.84540725 + posY: 1.71499848 + posZ: 10.3834486 + rotX: 359.922729 + rotY: 270.002319 + rotZ: 359.536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2359': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: a98010 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Poisonous Spores + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.955874 + posY: 1.71688378 + posZ: -10.4411764 + rotX: 359.919739 + rotY: 270.0 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235743 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Poison. + DragSelectable: true + GMNotes: '' + GUID: 3ae801 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Creeping Poison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5530853 + posY: 1.28225565 + posZ: 51.0702133 + rotX: 0.0208083689 + rotY: 270.000244 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235913 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2359': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: 4b7bfa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: No Turning Back + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.02900469 + posY: 1.7520107 + posZ: 3.34763455 + rotX: 359.9358 + rotY: 270.000061 + rotZ: 180.013458 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Serpent. + DragSelectable: true + GMNotes: '' + GUID: 716be4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Serpent from Yoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.84551263 + posY: 1.686646 + posZ: 10.3834095 + rotX: 359.9516 + rotY: 269.999969 + rotZ: 180.0225 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Curse. + DragSelectable: true + GMNotes: '' + GUID: b7a7ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Curse of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.845416 + posY: 1.71556461 + posZ: 10.3834505 + rotX: 0.00138490426 + rotY: 269.999329 + rotZ: 179.936508 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: 89b67a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Deep Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.177555 + posY: 1.67374921 + posZ: 10.8885822 + rotX: 359.920166 + rotY: 270.0003 + rotZ: 0.01655488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235741 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Curse. + DragSelectable: true + GMNotes: '' + GUID: 4e8b8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Snakescourge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.4687295 + posY: 1.60526717 + posZ: 13.4129829 + rotX: 359.919739 + rotY: 270.000061 + rotZ: 0.0168371182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235913 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2359': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: 2f5cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: No Turning Back + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.701179445 + posY: 1.63623619 + posZ: 7.65943432 + rotX: 359.919739 + rotY: 269.999878 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Trap. + DragSelectable: true + GMNotes: '' + GUID: a8e039 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Final Mistake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.459292 + posY: 1.68159187 + posZ: 15.59271 + rotX: 359.34024 + rotY: 270.0401 + rotZ: 358.563019 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Trap. + DragSelectable: true + GMNotes: '' + GUID: bcaed6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Final Mistake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.773127 + posY: 1.65454268 + posZ: 15.25761 + rotX: 359.30426 + rotY: 270.0348 + rotZ: 358.5675 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Trap. + DragSelectable: true + GMNotes: '' + GUID: d21d50 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Entombed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.720097 + posY: 1.62765157 + posZ: 13.2428265 + rotX: 359.303284 + rotY: 269.997345 + rotZ: 0.0168848876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' - Autoraise: true CardID: 235735 ColorDiffuse: @@ -94,6 +949,141 @@ ContainedObjects: scaleY: 1.0 scaleZ: 1.0 XmlUI: '' +- Autoraise: true + CardID: 235743 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Poison. + DragSelectable: true + GMNotes: '' + GUID: '410638' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Creeping Poison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5530548 + posY: 1.32554781 + posZ: 51.07132 + rotX: 0.0165842474 + rotY: 269.999817 + rotZ: 180.370926 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235741 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Curse. + DragSelectable: true + GMNotes: '' + GUID: 0555a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Snakescourge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.876907 + posY: 1.618174 + posZ: 10.3995371 + rotX: 359.919739 + rotY: 269.999237 + rotZ: 359.250824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2699': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1597043896927310894/224D88E486BCF3DCCA4F956CA928CC7FD510EECA/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Power. + DragSelectable: true + GMNotes: '' + GUID: 2338d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Serpent's Call + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.96253 + posY: 3.49405146 + posZ: -12.8314152 + rotX: 359.920135 + rotY: 269.984161 + rotZ: 0.0168940537 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' - Autoraise: true CardID: 235725 ColorDiffuse: @@ -140,7 +1130,7 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 235901 + CardID: 235900 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -154,10 +1144,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Hazard. + Description: Trap. DragSelectable: true GMNotes: '' - GUID: dcdfc4 + GUID: 82cc2b Grid: true GridProjection: false Hands: true @@ -168,14 +1158,59 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Poisonous Spores + Nickname: Pitfall SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: posX: -3.95588446 - posY: 1.69950676 + posY: 1.68025053 + posZ: -10.4411745 + rotX: 359.919739 + rotY: 270.0 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2359': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Trap. + DragSelectable: true + GMNotes: '' + GUID: b888e1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Pitfall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.95588446 + posY: 1.68989468 posZ: -10.4411745 rotX: 359.919739 rotY: 270.0 @@ -229,1041 +1264,6 @@ ContainedObjects: scaleY: 1.0 scaleZ: 1.0 XmlUI: '' -- Autoraise: true - CardID: 235725 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Humanoid. Monster. Serpent. - DragSelectable: true - GMNotes: '' - GUID: 7a3a6a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Brood of Yig - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.84535861 - posY: 1.64358854 - posZ: 10.3834381 - rotX: 359.9358 - rotY: 269.999969 - rotZ: 180.035156 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235913 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2359': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hazard. - DragSelectable: true - GMNotes: '' - GUID: 4b7bfa - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: No Turning Back - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 1.02900469 - posY: 1.7520107 - posZ: 3.34763455 - rotX: 359.9358 - rotY: 270.000061 - rotZ: 180.013458 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235730 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Trap. - DragSelectable: true - GMNotes: '' - GUID: bcaed6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Final Mistake - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -7.773127 - posY: 1.65454268 - posZ: 15.25761 - rotX: 359.30426 - rotY: 270.0348 - rotZ: 358.5675 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235734 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Omen. Terror. - DragSelectable: true - GMNotes: '' - GUID: 6bff4f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ill Omen - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -4.35918 - posY: 1.63676143 - posZ: 13.5888414 - rotX: 359.9325 - rotY: 270.0001 - rotZ: 0.0141381165 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235731 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Trap. - DragSelectable: true - GMNotes: '' - GUID: d21d50 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Entombed - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -8.720097 - posY: 1.62765157 - posZ: 13.2428265 - rotX: 359.303284 - rotY: 269.997345 - rotZ: 0.0168848876 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235900 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2359': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Trap. - DragSelectable: true - GMNotes: '' - GUID: 82cc2b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Pitfall - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.95588446 - posY: 1.68025053 - posZ: -10.4411745 - rotX: 359.919739 - rotY: 270.0 - rotZ: 180.016815 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235727 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Curse. - DragSelectable: true - GMNotes: '' - GUID: b7a7ec - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Curse of Yig - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.845416 - posY: 1.71556461 - posZ: 10.3834505 - rotX: 0.00138490426 - rotY: 269.999329 - rotZ: 179.936508 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235726 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Humanoid. Monster. Serpent. - DragSelectable: true - GMNotes: '' - GUID: 716be4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Serpent from Yoth - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.84551263 - posY: 1.686646 - posZ: 10.3834095 - rotX: 359.9516 - rotY: 269.999969 - rotZ: 180.0225 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235900 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2359': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Trap. - DragSelectable: true - GMNotes: '' - GUID: b888e1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Pitfall - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.95588446 - posY: 1.68989468 - posZ: -10.4411745 - rotX: 359.919739 - rotY: 270.0 - rotZ: 180.016815 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235727 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Curse. - DragSelectable: true - GMNotes: '' - GUID: 0b33ea - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Curse of Yig - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.84542 - posY: 1.73278 - posZ: 10.3834515 - rotX: 359.892 - rotY: 270.011047 - rotZ: 178.285187 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235741 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Curse. - DragSelectable: true - GMNotes: '' - GUID: 4e8b8c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Snakescourge - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -4.4687295 - posY: 1.60526717 - posZ: 13.4129829 - rotX: 359.919739 - rotY: 270.000061 - rotZ: 0.0168371182 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235735 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Terror. - DragSelectable: true - GMNotes: '' - GUID: e7b322 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ancestral Fear - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.84543252 - posY: 1.60350382 - posZ: 10.3832359 - rotX: 359.919739 - rotY: 270.0006 - rotZ: 0.0168367121 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235743 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Poison. - DragSelectable: true - GMNotes: '' - GUID: '410638' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Creeping Poison - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 10.5530548 - posY: 1.32554781 - posZ: 51.07132 - rotX: 0.0165842474 - rotY: 269.999817 - rotZ: 180.370926 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235901 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2359': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hazard. - DragSelectable: true - GMNotes: '' - GUID: a98010 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Poisonous Spores - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.955874 - posY: 1.71688378 - posZ: -10.4411764 - rotX: 359.919739 - rotY: 270.0 - rotZ: 180.016815 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235730 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Trap. - DragSelectable: true - GMNotes: '' - GUID: a8e039 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Final Mistake - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -7.459292 - posY: 1.68159187 - posZ: 15.59271 - rotX: 359.34024 - rotY: 270.0401 - rotZ: 358.563019 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235743 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Poison. - DragSelectable: true - GMNotes: '' - GUID: 3ae801 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Creeping Poison - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 10.5530853 - posY: 1.28225565 - posZ: 51.0702133 - rotX: 0.0208083689 - rotY: 270.000244 - rotZ: 180.016769 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235741 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Curse. - DragSelectable: true - GMNotes: '' - GUID: 0555a6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Snakescourge - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.876907 - posY: 1.618174 - posZ: 10.3995371 - rotX: 359.919739 - rotY: 269.999237 - rotZ: 359.250824 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235913 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2359': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hazard. - DragSelectable: true - GMNotes: '' - GUID: 2f5cce - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: No Turning Back - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -0.701179445 - posY: 1.63623619 - posZ: 7.65943432 - rotX: 359.919739 - rotY: 269.999878 - rotZ: 180.01683 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235740 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Humanoid. Monster. Serpent. - DragSelectable: true - GMNotes: '' - GUID: 35dd7c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fang of Yig - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -5.20269632 - posY: 1.6211468 - posZ: 15.5052032 - rotX: 359.919678 - rotY: 269.9983 - rotZ: 359.272064 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235725 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Humanoid. Monster. Serpent. - DragSelectable: true - GMNotes: '' - GUID: dfc63f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Brood of Yig - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.84540725 - posY: 1.71499848 - posZ: 10.3834486 - rotX: 359.922729 - rotY: 270.002319 - rotZ: 359.536 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235742 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Power. - DragSelectable: true - GMNotes: '' - GUID: 84a2af - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Serpent's Call - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -4.091322 - posY: 1.604437 - posZ: 12.38707 - rotX: 359.919739 - rotY: 270.001282 - rotZ: 0.0168352034 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235731 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Trap. - DragSelectable: true - GMNotes: '' - GUID: de9a86 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Entombed - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -8.415193 - posY: 1.669188 - posZ: 13.2977581 - rotX: 359.426575 - rotY: 270.008728 - rotZ: 0.0167107359 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235736 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hazard. - DragSelectable: true - GMNotes: '' - GUID: 89b67a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Deep Dark - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -7.177555 - posY: 1.67374921 - posZ: 10.8885822 - rotX: 359.920166 - rotY: 270.0003 - rotZ: 0.01655488 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' - Autoraise: true CardID: 235734 ColorDiffuse: @@ -1310,24 +1310,24 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 235740 + CardID: 235901 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2357': + '2359': BackIsHidden: true BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777501236/D145C8B748FB42258EB442B9DF36797851CEECC3/ NumHeight: 7 NumWidth: 10 Type: 0 UniqueBack: false - Description: Humanoid. Monster. Serpent. + Description: Hazard. DragSelectable: true GMNotes: '' - GUID: 5eac6e + GUID: 3f5bb6 Grid: true GridProjection: false Hands: true @@ -1338,18 +1338,18 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Fang of Yig + Nickname: Poisonous Spores SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -5.209852 - posY: 1.65759242 - posZ: 15.5676947 - rotX: 359.9197 - rotY: 270.0007 - rotZ: 359.42038 + posX: -3.9558847 + posY: 1.70915866 + posZ: -10.4411745 + rotX: 359.919739 + rotY: 270.0 + rotZ: 180.016815 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1371,37 +1371,45 @@ CustomDeck: NumWidth: 10 Type: 0 UniqueBack: false + '2699': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1597043896927310894/224D88E486BCF3DCCA4F956CA928CC7FD510EECA/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false DeckIDs: +- 235740 +- 235725 +- 235731 - 235901 - 235735 +- 235740 +- 235734 +- 235727 - 235725 - 235901 -- 235736 -- 235725 +- 235743 - 235913 -- 235730 -- 235734 -- 235731 -- 235900 -- 235727 - 235726 -- 235900 - 235727 -- 235741 -- 235735 -- 235743 -- 235901 -- 235730 -- 235743 +- 235736 - 235741 - 235913 -- 235740 -- 235725 -- 235742 +- 235730 +- 235730 - 235731 +- 235735 +- 235743 +- 235741 +- 269900 +- 235725 +- 235900 +- 235900 - 235736 - 235734 -- 235740 +- 235901 Description: '' DragSelectable: true GMNotes: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Part 1 Vengeance Cards 0498ce.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Part 1 Vengeance Cards 0498ce.yaml index fedeee557..df2921d13 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Part 1 Vengeance Cards 0498ce.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Part 1 Vengeance Cards 0498ce.yaml @@ -318,12 +318,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -11.3409986 - posY: 1.6500349 + posX: -11.3409977 + posY: 1.64998412 posZ: 9.867001 rotX: 359.9201 - rotY: 270.000122 - rotZ: 180.016861 + rotY: 270.000153 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce.yaml index 9be90c6a2..451e24240 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce.yaml @@ -19,10 +19,6 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: -- !include 'Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian - fb5d6e.yaml' -- !include 'Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian - eb7345.yaml' - !include 'Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile The City of Archives 2fb6dc.yaml' - !include 'Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian @@ -47,7 +43,11 @@ ContainedObjects: d11752.yaml' - !include 'Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian d57c4b.yaml' +- !include 'Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian + eb7345.yaml' - !include 'Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile f893ca.yaml' +- !include 'Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian + fb5d6e.yaml' CustomMesh: CastShadows: true ColliderURL: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Cooperated with Yithian 412d82.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Cooperated with Yithian 412d82.yaml index 284d495f1..675b74e7a 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Cooperated with Yithian 412d82.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Cooperated with Yithian 412d82.yaml @@ -1,7 +1,7 @@ Autoraise: true ColorDiffuse: - b: 0.2775267 - g: 0.05097969 + b: 0.277526647 + g: 0.0509796441 r: 0.6313726 ContainedObjects: - !include 'Bag Cooperated with Yithian 412d82/Card Yithian Observer 4c04b5.yaml' @@ -28,11 +28,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0.580243 + posX: 0.5802428 posY: 1.39521408 posZ: -1.36518717 rotX: 359.9833 - rotY: 0.120771155 + rotY: 0.120765738 rotZ: 359.919647 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Resisted the Yithian 8f462b.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Resisted the Yithian 8f462b.yaml index a64d07366..37813cced 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Resisted the Yithian 8f462b.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Resisted the Yithian 8f462b.yaml @@ -1,7 +1,7 @@ Autoraise: true ColorDiffuse: - b: 0.277526677 - g: 0.0509796664 + b: 0.277526617 + g: 0.05097963 r: 0.6313726 ContainedObjects: - !include 'Bag Resisted the Yithian 8f462b/Card Yithian Observer 4c04b5.yaml' @@ -28,11 +28,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0.6304995 - posY: 1.39610815 - posZ: 1.91800165 + posX: 0.6304994 + posY: 1.39610887 + posZ: 1.91800177 rotX: 359.983154 - rotY: 0.000291528268 + rotY: 0.0002774562 rotZ: 359.919678 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian 3efc0f.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian 3efc0f.yaml index 7c1cf3af2..903be443b 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian 3efc0f.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian 3efc0f.yaml @@ -36,9 +36,9 @@ Transform: posX: -55.0555 posY: 1.65219247 posZ: -18.6654987 - rotX: 0.0168715157 + rotX: 0.0168715045 rotY: 180.000015 - rotZ: 0.07987964 + rotZ: 0.07987966 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian d57c4b.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian d57c4b.yaml index 42caef919..db71daf08 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian d57c4b.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian d57c4b.yaml @@ -36,8 +36,8 @@ Transform: posX: -22.9045 posY: 1.60809314 posZ: -26.6478 - rotX: 0.07987654 - rotY: 90.0000458 + rotX: 0.07987658 + rotY: 90.00005 rotZ: 359.983124 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian eb7345.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian eb7345.yaml index 0ee1b8271..88ff6896a 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian eb7345.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian eb7345.yaml @@ -38,7 +38,7 @@ Transform: posZ: 26.62179 rotX: 359.9201 rotY: 269.985443 - rotZ: 0.0168975461 + rotZ: 0.0168975331 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian fb5d6e.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian fb5d6e.yaml index 9cfdd818a..88b1c4884 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian fb5d6e.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian fb5d6e.yaml @@ -36,9 +36,9 @@ Transform: posX: -54.99725 posY: 1.65613067 posZ: 8.510994 - rotX: 0.0182473734 + rotX: 0.0182474162 rotY: 179.011 - rotZ: 0.07958068 + rotZ: 0.0795807242 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Halls of Pnakotus 438b63.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Halls of Pnakotus 438b63.yaml index 11280da92..723523402 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Halls of Pnakotus 438b63.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Halls of Pnakotus 438b63.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -17.12 - posY: 1.61896908 - posZ: -0.0300006345 + posY: 1.6189239 + posZ: -0.0300003551 rotX: 359.9201 rotY: 269.9737 - rotZ: 0.0169090778 + rotZ: 0.0168762188 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Halls of Pnakotus 692d40.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Halls of Pnakotus 692d40.yaml index 096ba489f..f2d82c22d 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Halls of Pnakotus 692d40.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Halls of Pnakotus 692d40.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -23.6766 - posY: 1.63034964 - posZ: 7.56999874 + posY: 1.63030028 + posZ: 7.569999 rotX: 359.9201 rotY: 269.994446 - rotZ: 0.0168800037 + rotZ: 0.01684743 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Halls of Pnakotus d11752.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Halls of Pnakotus d11752.yaml index 799b842b8..e0e6b9001 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Halls of Pnakotus d11752.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Halls of Pnakotus d11752.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -23.6766 - posY: 1.6258533 + posY: 1.62581253 posZ: -7.70000124 rotX: 359.9201 rotY: 269.994476 - rotZ: 0.01688 + rotZ: 0.0168473665 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Scenario 65b2ab.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Scenario 65b2ab.yaml index b9dca3722..883dad9f0 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Scenario 65b2ab.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Card Scenario 65b2ab.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.9560008 + posX: -3.956001 posY: 1.59753942 - posZ: -10.4412041 + posZ: -10.4412031 rotX: 359.919739 - rotY: 269.9955 - rotZ: 0.0168433879 + rotY: 269.995483 + rotZ: 0.0168435816 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Model_Bag Set-aside a45247.yaml index 1e6c777e0..75662ed4a 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Model_Bag Set-aside a45247.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Model_Bag Set-aside a45247.yaml @@ -49,11 +49,11 @@ Sticky: true Tooltip: true Transform: posX: 1.69650149 - posY: 1.55831659 + posY: 1.55831742 posZ: 14.2787046 rotX: 359.955139 rotY: 224.997986 - rotZ: 0.06867339 + rotZ: 0.06867355 scaleX: 2.0 scaleY: 2.0 scaleZ: 2.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile 7234af.yaml index 9e637b552..9f6e39d99 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile 7234af.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile 7234af.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -20.4629 - posY: 1.61118782 + posY: 1.61114049 posZ: 3.91670012 - rotX: 359.93158 + rotX: 359.9316 rotY: 315.0153 - rotZ: 359.9554 + rotZ: 359.955383 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile 80b566.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile 80b566.yaml index d4b2f74f4..11a572047 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile 80b566.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile 80b566.yaml @@ -124,10 +124,10 @@ Sticky: true Tooltip: true Transform: posX: -20.5734 - posY: 1.60905719 + posY: 1.60901427 posZ: -3.8425 - rotX: 0.0445657969 - rotY: 45.0001869 + rotX: 0.0445888378 + rotY: 45.00019 rotZ: 359.9316 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile f893ca.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile f893ca.yaml index 83f2900f0..32feabfd9 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile f893ca.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile f893ca.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -23.6765 - posY: 1.6145066 - posZ: -0.02999939 - rotX: 0.01687212 - rotY: 179.9998 - rotZ: 0.07993922 + posY: 1.61446154 + posZ: -0.0299992934 + rotX: 0.0168394763 + rotY: 179.999847 + rotZ: 0.07993952 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile The City of Archives 2fb6dc.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile The City of Archives 2fb6dc.yaml index 19bc7ff83..11f5d98cf 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile The City of Archives 2fb6dc.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile The City of Archives 2fb6dc.yaml @@ -32,12 +32,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.9281 + posX: -3.92810059 posY: 1.5823983 - posZ: -15.5368061 + posZ: -15.5368052 rotX: 359.919739 rotY: 270.0274 - rotZ: 0.01679931 + rotZ: 0.016799476 scaleX: 2.2 scaleY: 1.0 scaleZ: 2.2 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Deck Act deck b1c502.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Deck Act deck b1c502.yaml index d0d92e862..7d15e3237 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Deck Act deck b1c502.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Deck Act deck b1c502.yaml @@ -175,9 +175,9 @@ Transform: posX: -2.6886 posY: 1.61911666 posZ: -5.048501 - rotX: 0.0168356411 + rotX: 0.0168356262 rotY: 180.0 - rotZ: 0.08025607 + rotZ: 0.0802559853 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Deck Agenda deck 56e988.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Deck Agenda deck 56e988.yaml index f20e880c2..fd36f7f1a 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Deck Agenda deck 56e988.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Deck Agenda deck 56e988.yaml @@ -174,10 +174,10 @@ Tooltip: true Transform: posX: -2.72479987 posY: 1.62076056 - posZ: 0.3733003 - rotX: 0.0168355517 - rotY: 180.000092 - rotZ: 0.08025596 + posZ: 0.373300254 + rotX: 0.0168354865 + rotY: 180.0001 + rotZ: 0.080256 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Deck Encounter deck 4a5f7e.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Deck Encounter deck 4a5f7e.yaml index efd077ff9..29a63d725 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Deck Encounter deck 4a5f7e.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 6 The City of Archives 3170ce/Deck Encounter deck 4a5f7e.yaml @@ -1564,7 +1564,7 @@ Transform: posY: 1.76844883 posZ: 5.757102 rotX: 359.919739 - rotY: 269.9999 + rotY: 269.999939 rotZ: 180.016815 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Bag New Chaos Token 7e7eba.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Bag New Chaos Token 7e7eba.yaml index f4bce146b..3c35faf14 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Bag New Chaos Token 7e7eba.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Bag New Chaos Token 7e7eba.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: - b: 0.249999791 - g: 0.249999791 - r: 0.249999791 + b: 0.249999732 + g: 0.249999732 + r: 0.249999732 ContainedObjects: - Autoraise: true ColorDiffuse: @@ -69,12 +69,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.10002351 - posY: 1.37758148 - posZ: -17.7676334 - rotX: 355.063141 - rotY: 359.9815 - rotZ: 359.921021 + posX: -3.10000968 + posY: 1.37755108 + posZ: -17.7676277 + rotX: 355.061737 + rotY: 359.981873 + rotZ: 359.9222 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Card Journey to the Nexus 597592.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Card Journey to the Nexus 597592.yaml index e068feea6..03d3deecf 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Card Journey to the Nexus 597592.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Card Journey to the Nexus 597592.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -2.68859959 + posX: -2.68859982 posY: 1.59734881 posZ: -5.0485 - rotX: 0.0168474577 + rotX: 0.0168474168 rotY: 179.9918 - rotZ: 0.08025269 + rotZ: 0.0802526847 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Card Steps of Yoth 6c48a2.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Card Steps of Yoth 6c48a2.yaml index b110dea83..aac5ba201 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Card Steps of Yoth 6c48a2.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Card Steps of Yoth 6c48a2.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -7.63322544 - posY: 1.60996985 - posZ: 14.3366241 - rotX: 359.919861 - rotY: 269.999023 - rotZ: 0.0167611185 + posY: 1.6099534 + posZ: 14.3366232 + rotX: 359.9215 + rotY: 269.999 + rotZ: 0.0167509988 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Model_Bag Set-aside a45247.yaml index b7190d865..3e2604b6b 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Model_Bag Set-aside a45247.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Model_Bag Set-aside a45247.yaml @@ -50,11 +50,11 @@ Sticky: true Tooltip: true Transform: posX: 1.69660151 - posY: 1.55831707 + posY: 1.558317 posZ: 14.2787037 rotX: 359.955139 - rotY: 224.998016 - rotZ: 0.06867323 + rotY: 224.998032 + rotZ: 0.0686718151 scaleX: 2.0 scaleY: 2.0 scaleZ: 2.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Tile The Depths of Yoth 7aa4e3.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Tile The Depths of Yoth 7aa4e3.yaml index d1c86eace..c764a7430 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Tile The Depths of Yoth 7aa4e3.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Tile The Depths of Yoth 7aa4e3.yaml @@ -34,10 +34,10 @@ Tooltip: true Transform: posX: -3.84080029 posY: 1.5825299 - posZ: -14.6727028 + posZ: -14.6727018 rotX: 359.919739 rotY: 270.0325 - rotZ: 0.0167921726 + rotZ: 0.0167924948 scaleX: 2.2 scaleY: 1.0 scaleZ: 2.2 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Token Scenario - EasyStandard dd61f1.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Token Scenario - EasyStandard dd61f1.yaml index d639dc799..e983076fb 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Token Scenario - EasyStandard dd61f1.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Token Scenario - EasyStandard dd61f1.yaml @@ -39,7 +39,7 @@ Transform: posZ: -10.4412165 rotX: 359.9204 rotY: 269.99646 - rotZ: 0.01809033 + rotZ: 0.0180903561 scaleX: 0.7 scaleY: 1.0 scaleZ: 0.7 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Token Scenario - HardExpert 2da146.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Token Scenario - HardExpert 2da146.yaml index 62692ab5f..f7066f052 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Token Scenario - HardExpert 2da146.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Token Scenario - HardExpert 2da146.yaml @@ -37,9 +37,9 @@ Transform: posX: -5.544376 posY: 1.73338282 posZ: -10.4705944 - rotX: 3.51474667 + rotX: 3.51474547 rotY: 269.999146 - rotZ: 0.007888979 + rotZ: 0.007888766 scaleX: 0.7 scaleY: 1.0 scaleZ: 0.7 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Deck Agenda deck 7543ad.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Deck Agenda deck 7543ad.yaml index a2f14ce9b..47c2817fb 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Deck Agenda deck 7543ad.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Deck Agenda deck 7543ad.yaml @@ -359,9 +359,9 @@ Transform: posX: -2.7246995 posY: 1.64001656 posZ: 0.3733005 - rotX: 0.0168469623 + rotX: 0.01684701 rotY: 179.9917 - rotZ: 0.080254294 + rotZ: 0.08025428 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Deck Encounter deck 7d8400.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Deck Encounter deck 7d8400.yaml index d5059f64e..1fadae1a4 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Deck Encounter deck 7d8400.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Deck Encounter deck 7d8400.yaml @@ -769,6 +769,51 @@ ContainedObjects: scaleY: 1.0 scaleZ: 1.0 XmlUI: '' +- Autoraise: true + CardID: 269900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2699': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1597043896927310894/224D88E486BCF3DCCA4F956CA928CC7FD510EECA/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: Power. + DragSelectable: true + GMNotes: '' + GUID: 140abb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: Serpent's Call + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.0122042 + posY: 3.48555064 + posZ: -4.27463627 + rotX: 359.920135 + rotY: 269.979279 + rotZ: 0.0169003215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' - Autoraise: true CardID: 235736 ColorDiffuse: @@ -859,51 +904,6 @@ ContainedObjects: scaleY: 1.0 scaleZ: 1.0 XmlUI: '' -- Autoraise: true - CardID: 235742 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Power. - DragSelectable: true - GMNotes: '' - GUID: '891084' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Serpent's Call - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -35.0037231 - posY: 1.5478493 - posZ: 13.3664083 - rotX: 359.920135 - rotY: 269.998016 - rotZ: 0.0168776624 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' - Autoraise: true CardID: 235937 ColorDiffuse: @@ -1821,6 +1821,14 @@ CustomDeck: NumWidth: 10 Type: 0 UniqueBack: false + '2699': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1597043896927310894/224D88E486BCF3DCCA4F956CA928CC7FD510EECA/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false DeckIDs: - 235936 - 235934 @@ -1839,9 +1847,9 @@ DeckIDs: - 235740 - 235735 - 235938 +- 269900 - 235736 - 235937 -- 235742 - 235937 - 235743 - 235734 @@ -1882,9 +1890,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.92770052 - posY: 1.80214715 - posZ: 5.75720167 + posX: -3.927726 + posY: 1.80214739 + posZ: 5.75721 rotX: 359.919739 rotY: 270.00116 rotZ: 180.016815 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Deck Single-Sided Locations 884b67.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Deck Single-Sided Locations 884b67.yaml index 1f94ecd0c..1e568d9b9 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Deck Single-Sided Locations 884b67.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 7 The Depths of Yoth 85286a/Deck Single-Sided Locations 884b67.yaml @@ -448,7 +448,7 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.99384165 + posX: -3.99384141 posY: 1.655531 posZ: 14.3554688 rotX: 359.919739 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d.yaml index 23064883b..e45d86bcf 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d.yaml @@ -19,7 +19,6 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: -- !include 'Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Encounter deck a5cf33.yaml' - !include 'Custom_Model_Bag 8 Shattered Aeons 737c5d/Bag New Chaos Token 270b8b.yaml' - !include 'Custom_Model_Bag 8 Shattered Aeons 737c5d/Bag Encounter setup 32b13c.yaml' - !include 'Custom_Model_Bag 8 Shattered Aeons 737c5d/Card Nexus of N''kai 4d493f.yaml' @@ -28,6 +27,7 @@ ContainedObjects: - !include 'Custom_Model_Bag 8 Shattered Aeons 737c5d/Card Scenario 8a1642.yaml' - !include 'Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Exploration deck 9219b1.yaml' - !include 'Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247.yaml' +- !include 'Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Encounter deck a5cf33.yaml' - !include 'Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Act deck b31078.yaml' - !include 'Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Agenda deck cae847.yaml' CustomMesh: diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Bag Encounter setup 32b13c.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Bag Encounter setup 32b13c.yaml index cf19a1cac..f1d7ed82c 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Bag Encounter setup 32b13c.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Bag Encounter setup 32b13c.yaml @@ -28,11 +28,11 @@ Sticky: true Tooltip: true Transform: posX: -3.928392 - posY: 1.657095 + posY: 1.65709472 posZ: 5.757265 rotX: 359.92276 - rotY: 270.000031 - rotZ: 0.0189924184 + rotY: 269.999756 + rotZ: 0.0189908966 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Bag New Chaos Token 270b8b.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Bag New Chaos Token 270b8b.yaml index f2c933f42..15da37ec4 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Bag New Chaos Token 270b8b.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Bag New Chaos Token 270b8b.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: - b: 0.2499997 - g: 0.2499997 - r: 0.2499997 + b: 0.249999672 + g: 0.249999672 + r: 0.249999672 ContainedObjects: - !include 'Bag New Chaos Token 270b8b/Custom_Tile f44605.yaml' - !include 'Bag New Chaos Token 270b8b/Custom_Tile 0cbb9b.yaml' @@ -29,12 +29,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.72131824 - posY: 1.369392 + posX: -3.721332 + posY: 1.3694129 posZ: -17.9113235 - rotX: 355.5992 - rotY: 359.977661 - rotZ: 359.922241 + rotX: 355.599854 + rotY: 359.9773 + rotZ: 359.921051 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Card Nexus of N'kai 4d493f.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Card Nexus of N'kai 4d493f.yaml index 13ffbd3b0..84c48f1a9 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Card Nexus of N'kai 4d493f.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Card Nexus of N'kai 4d493f.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -17.1199989 - posY: 1.61896908 - posZ: -0.0300014969 + posY: 1.6189239 + posZ: -0.0300014988 rotX: 359.9201 - rotY: 269.999847 - rotZ: 0.01687245 + rotY: 269.999817 + rotZ: 0.0168398134 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Card Scenario 8a1642.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Card Scenario 8a1642.yaml index b3b59a558..3f0d98a61 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Card Scenario 8a1642.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Card Scenario 8a1642.yaml @@ -38,7 +38,7 @@ Transform: posZ: -10.4412031 rotX: 359.919739 rotY: 269.971863 - rotZ: 0.01687656 + rotZ: 0.0168765672 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247.yaml index b8328a50a..bab819bd7 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247.yaml @@ -54,11 +54,11 @@ Sticky: true Tooltip: true Transform: posX: 1.69390118 - posY: 1.55831861 + posY: 1.55831873 posZ: 14.2736034 rotX: 359.955139 - rotY: 224.998749 - rotZ: 0.0686723739 + rotY: 224.998764 + rotZ: 0.06867218 scaleX: 2.0 scaleY: 2.0 scaleZ: 2.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Tile Shattered Aeons 6dc72a.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Tile Shattered Aeons 6dc72a.yaml index 2b8d5bc7f..50500a703 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Tile Shattered Aeons 6dc72a.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Tile Shattered Aeons 6dc72a.yaml @@ -37,7 +37,7 @@ Transform: posZ: -14.75271 rotX: 359.919739 rotY: 270.004456 - rotZ: 0.01683148 + rotZ: 0.01683142 scaleX: 2.2 scaleY: 1.0 scaleZ: 2.2 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Act deck b31078.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Act deck b31078.yaml index 391fa3032..a0d44e4e9 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Act deck b31078.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Act deck b31078.yaml @@ -221,7 +221,7 @@ Transform: posX: -2.68859959 posY: 1.62393069 posZ: -5.048501 - rotX: 0.0168458167 + rotX: 0.01684584 rotY: 179.9927 rotZ: 0.0802540258 scaleX: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Agenda deck cae847.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Agenda deck cae847.yaml index d9f46586a..400888062 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Agenda deck cae847.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Agenda deck cae847.yaml @@ -174,10 +174,10 @@ Tooltip: true Transform: posX: -2.72479963 posY: 1.62076056 - posZ: 0.37330097 - rotX: 0.01684633 + posZ: 0.373301 + rotX: 0.01684625 rotY: 179.9924 - rotZ: 0.08025379 + rotZ: 0.0802538246 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Encounter deck a5cf33.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Encounter deck a5cf33.yaml index 9841a8404..8dccab9bb 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Encounter deck a5cf33.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Encounter deck a5cf33.yaml @@ -1062,12 +1062,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.92769957 + posX: -3.9276998 posY: 1.71544755 posZ: 5.75709152 rotX: 359.920227 rotY: 269.9999 - rotZ: 180.02002 + rotZ: 180.02 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079.yaml index 27f813077..9e4f7f816 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079.yaml @@ -64,7 +64,7 @@ Transform: posZ: -36.0138054 rotX: 359.920135 rotY: 270.0046 - rotZ: 0.0168673266 + rotZ: 0.0168673117 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Card Entryway b6501d.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Card Entryway b6501d.yaml index 743a6fe88..85ce8d4b0 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Card Entryway b6501d.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Card Entryway b6501d.yaml @@ -35,10 +35,10 @@ Tooltip: true Transform: posX: -17.1199989 posY: 1.6189239 - posZ: -0.0300014243 + posZ: -0.0300015 rotX: 359.9201 rotY: 269.9995 - rotZ: 0.0168402735 + rotZ: 0.0168402661 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Card Scenario 34a31c.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Card Scenario 34a31c.yaml index 0260e372a..49454d5cc 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Card Scenario 34a31c.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Card Scenario 34a31c.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.9560008 + posX: -3.95600057 posY: 1.59753942 posZ: -10.4412031 rotX: 359.919739 rotY: 269.9729 - rotZ: 0.0168752056 + rotZ: 0.0168750957 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/CardCustom Exploration Reference 5eb2aa.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/CardCustom Exploration Reference 5eb2aa.yaml index 4985bb320..fb18ee90f 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/CardCustom Exploration Reference 5eb2aa.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/CardCustom Exploration Reference 5eb2aa.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -13.283 - posY: 1.60955632 - posZ: -13.6987991 + posY: 1.60955644 + posZ: -13.6988 rotX: 359.9201 rotY: 270.0 - rotZ: 0.0168388989 + rotZ: 0.0168388858 scaleX: 2.17822933 scaleY: 1.0 scaleZ: 2.17822933 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Model_Bag Set-aside a45247.yaml index 3a64e9be5..4f5c343f1 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Model_Bag Set-aside a45247.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Model_Bag Set-aside a45247.yaml @@ -50,11 +50,11 @@ Sticky: true Tooltip: true Transform: posX: 1.68550181 - posY: 1.55833292 - posZ: 14.2799053 + posY: 1.5583322 + posZ: 14.2799034 rotX: 359.955139 - rotY: 224.995743 - rotZ: 0.06867388 + rotY: 224.995758 + rotZ: 0.06867397 scaleX: 2.0 scaleY: 2.0 scaleZ: 2.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Tile d3d96a.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Tile d3d96a.yaml index 3560ae5ae..ae252a0b1 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Tile d3d96a.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Tile d3d96a.yaml @@ -37,7 +37,7 @@ Transform: posZ: -14.5314379 rotX: 359.919739 rotY: 270.0251 - rotZ: 0.016804032 + rotZ: 0.0168041885 scaleX: 0.81 scaleY: 1.0 scaleZ: 0.81 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Deck Act deck 467ee2.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Deck Act deck 467ee2.yaml index 2096023c0..dd153d4e1 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Deck Act deck 467ee2.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Deck Act deck 467ee2.yaml @@ -175,9 +175,9 @@ Transform: posX: -2.6886 posY: 1.61911666 posZ: -5.04850054 - rotX: 0.0168390442 + rotX: 0.0168390572 rotY: 179.9976 - rotZ: 0.08025518 + rotZ: 0.0802552253 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Deck Agenda deck 8eded9.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Deck Agenda deck 8eded9.yaml index 7e3cd0685..7a3ef9bfa 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Deck Agenda deck 8eded9.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Deck Agenda deck 8eded9.yaml @@ -129,9 +129,9 @@ Transform: posX: -2.72479963 posY: 1.61594653 posZ: 0.373301059 - rotX: 0.0168429632 + rotX: 0.01684298 rotY: 179.9948 - rotZ: 0.08025423 + rotZ: 0.0802542642 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Deck Encounter deck 09da6b.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Deck Encounter deck 09da6b.yaml index d45797ef4..efd5323f8 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Deck Encounter deck 09da6b.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Model_Bag 9 Secret Scenario c52079/Deck Encounter deck 09da6b.yaml @@ -4,771 +4,6 @@ ColorDiffuse: g: 0.713235259 r: 0.713235259 ContainedObjects: -- Autoraise: true - CardID: 235726 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Humanoid. Monster. Serpent. - DragSelectable: true - GMNotes: '' - GUID: 716be4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Serpent from Yoth - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 0.274004847 - posY: 1.61202288 - posZ: 42.2745972 - rotX: 359.941 - rotY: 270.0177 - rotZ: 357.78418 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 539621 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2317': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hazard. - DragSelectable: true - GMNotes: '' - GUID: c4ce76 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Obscuring Fog - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -13.9735909 - posY: 1.73492968 - posZ: 1.969332 - rotX: 359.9267 - rotY: 270.0006 - rotZ: 0.0145301558 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235743 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Poison. - DragSelectable: true - GMNotes: '' - GUID: 3ae801 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Creeping Poison - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 38.5182 - posY: 1.47169614 - posZ: -40.74573 - rotX: 359.934235 - rotY: 269.999664 - rotZ: 0.0112709245 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235740 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Humanoid. Monster. Serpent. - DragSelectable: true - GMNotes: '' - GUID: 6ede20 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fang of Yig - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -20.5314713 - posY: 2.53121519 - posZ: -19.2158031 - rotX: 359.9201 - rotY: 270.000366 - rotZ: 180.016983 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 539621 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2317': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hazard. - DragSelectable: true - GMNotes: '' - GUID: 50e716 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Obscuring Fog - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -13.8034887 - posY: 1.57302034 - posZ: 1.99893022 - rotX: 359.920471 - rotY: 270.000641 - rotZ: 0.0145632224 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235742 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Power. - DragSelectable: true - GMNotes: '' - GUID: 84a2af - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Serpent's Call - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 18.6316471 - posY: 1.4798516 - posZ: 36.3780632 - rotX: 359.920135 - rotY: 269.998718 - rotZ: 0.01687367 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235732 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hex. - DragSelectable: true - GMNotes: '' - GUID: d53fea - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: A Tear in Time - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 17.9216671 - posY: 1.53453684 - posZ: 43.0446434 - rotX: 359.922455 - rotY: 269.9989 - rotZ: 0.0119736325 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235727 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Curse. - DragSelectable: true - GMNotes: '' - GUID: 0b33ea - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Curse of Yig - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 2.32107234 - posY: 1.54362023 - posZ: 33.4066658 - rotX: 359.941 - rotY: 269.999939 - rotZ: 0.0141428877 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235736 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hazard. - DragSelectable: true - GMNotes: '' - GUID: 7b221b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Deep Dark - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 18.4302654 - posY: 1.53989351 - posZ: 60.3248825 - rotX: 359.92157 - rotY: 269.999176 - rotZ: 0.0143620856 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235733 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hex. - DragSelectable: true - GMNotes: '' - GUID: 54752a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Lost in Time - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 18.1425781 - posY: 1.48141217 - posZ: 39.4102 - rotX: 359.920258 - rotY: 269.999146 - rotZ: 0.0159195755 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235725 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Humanoid. Monster. Serpent. - DragSelectable: true - GMNotes: '' - GUID: 7a3a6a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Brood of Yig - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 0.218750983 - posY: 1.58100176 - posZ: 41.22056 - rotX: 359.9753 - rotY: 270.018524 - rotZ: 0.503650546 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235732 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hex. - DragSelectable: true - GMNotes: '' - GUID: 09fa5b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: A Tear in Time - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 17.8707352 - posY: 1.48277044 - posZ: 42.71366 - rotX: 359.920227 - rotY: 269.998749 - rotZ: 0.0163513962 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235734 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Omen. Terror. - DragSelectable: true - GMNotes: '' - GUID: 81edd7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Ill Omen - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 18.40126 - posY: 1.48529148 - posZ: 53.76087 - rotX: 359.920135 - rotY: 269.998779 - rotZ: 0.0168749541 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235740 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Humanoid. Monster. Serpent. - DragSelectable: true - GMNotes: '' - GUID: 35dd7c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Fang of Yig - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -17.4593277 - posY: 2.525863 - posZ: -23.1652966 - rotX: 359.920135 - rotY: 270.000366 - rotZ: 180.016861 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235730 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Trap. - DragSelectable: true - GMNotes: '' - GUID: bcaed6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Final Mistake - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 17.5773048 - posY: 1.53593814 - posZ: 45.3714676 - rotX: 359.918274 - rotY: 269.999023 - rotZ: 0.0145744616 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 539620 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2317': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hazard. - DragSelectable: true - GMNotes: '' - GUID: ab3719 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Crypt Chill - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -14.5550861 - posY: 1.57516873 - posZ: 5.69822454 - rotX: 359.92038 - rotY: 270.002563 - rotZ: 0.0152713312 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 235741 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Curse. - DragSelectable: true - GMNotes: '' - GUID: 0555a6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Snakescourge - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 18.1629276 - posY: 1.54146063 - posZ: 63.6715736 - rotX: 359.918518 - rotY: 269.998871 - rotZ: 0.0141496556 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' - Autoraise: true CardID: 235743 ColorDiffuse: @@ -814,6 +49,51 @@ ContainedObjects: scaleY: 1.0 scaleZ: 1.0 XmlUI: '' +- Autoraise: true + CardID: 235732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hex. + DragSelectable: true + GMNotes: '' + GUID: bfddb7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Tear in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.92174 + posY: 1.55716217 + posZ: 43.04463 + rotX: 359.921417 + rotY: 269.9989 + rotZ: 0.014410777 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' - Autoraise: true CardID: 235730 ColorDiffuse: @@ -860,24 +140,24 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 235736 + CardID: 269900 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2357': + '2699': BackIsHidden: true BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 + FaceURL: http://cloud-3.steamusercontent.com/ugc/1597043896927310894/224D88E486BCF3DCCA4F956CA928CC7FD510EECA/ + NumHeight: 1 + NumWidth: 1 Type: 0 UniqueBack: false - Description: Hazard. + Description: Power. DragSelectable: true GMNotes: '' - GUID: 89b67a + GUID: 4ff633 Grid: true GridProjection: false Hands: true @@ -887,25 +167,25 @@ ContainedObjects: LuaScript: '' LuaScriptState: '' MeasureMovement: false - Name: Card - Nickname: Deep Dark + Name: CardCustom + Nickname: Serpent's Call SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 18.1757374 - posY: 1.48745537 - posZ: 60.0669 - rotX: 359.9202 - rotY: 269.999359 - rotZ: 0.01637041 + posX: -13.0712414 + posY: 3.485357 + posZ: 0.9823309 + rotX: 359.920746 + rotY: 270.000122 + rotZ: 0.0009798663 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 235735 + CardID: 235732 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -919,10 +199,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Terror. + Description: Hex. DragSelectable: true GMNotes: '' - GUID: ffcd86 + GUID: d53fea Grid: true GridProjection: false Hands: true @@ -933,18 +213,198 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Ancestral Fear + Nickname: A Tear in Time SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -3.92764926 - posY: 1.919941 - posZ: 5.757134 - rotX: 359.919739 - rotY: 270.0016 - rotZ: 179.8103 + posX: 17.9216671 + posY: 1.53453684 + posZ: 43.0446434 + rotX: 359.922455 + rotY: 269.9989 + rotZ: 0.0119736325 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235741 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Curse. + DragSelectable: true + GMNotes: '' + GUID: 4e8b8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Snakescourge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.264658 + posY: 1.48832071 + posZ: 63.42711 + rotX: 359.9202 + rotY: 269.998962 + rotZ: 0.0163511951 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235734 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Omen. Terror. + DragSelectable: true + GMNotes: '' + GUID: 81edd7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Ill Omen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.40126 + posY: 1.48529148 + posZ: 53.76087 + rotX: 359.920135 + rotY: 269.998779 + rotZ: 0.0168749541 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Curse. + DragSelectable: true + GMNotes: '' + GUID: 0b33ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Curse of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.32107234 + posY: 1.54362023 + posZ: 33.4066658 + rotX: 359.941 + rotY: 269.999939 + rotZ: 0.0141428877 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Curse. + DragSelectable: true + GMNotes: '' + GUID: b7a7ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Curse of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.77082253 + posY: 1.50112176 + posZ: 33.68941 + rotX: 359.9206 + rotY: 269.9998 + rotZ: 0.0135837728 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1012,7 +472,7 @@ ContainedObjects: Description: Curse. DragSelectable: true GMNotes: '' - GUID: 4e8b8c + GUID: 0555a6 Grid: true GridProjection: false Hands: true @@ -1029,18 +489,63 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 18.264658 - posY: 1.48832071 - posZ: 63.42711 - rotX: 359.9202 - rotY: 269.998962 - rotZ: 0.0163511951 + posX: 18.1629276 + posY: 1.54146063 + posZ: 63.6715736 + rotX: 359.918518 + rotY: 269.998871 + rotZ: 0.0141496556 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 235727 + CardID: 539621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: c4ce76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.9735909 + posY: 1.73492968 + posZ: 1.969332 + rotX: 359.9267 + rotY: 270.0006 + rotZ: 0.0145301558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235735 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -1054,10 +559,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Curse. + Description: Terror. DragSelectable: true GMNotes: '' - GUID: b7a7ec + GUID: ffcd86 Grid: true GridProjection: false Hands: true @@ -1068,18 +573,63 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Curse of Yig + Nickname: Ancestral Fear SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 2.77082253 - posY: 1.50112176 - posZ: 33.68941 - rotX: 359.9206 - rotY: 269.9998 - rotZ: 0.0135837728 + posX: -3.92764926 + posY: 1.919941 + posZ: 5.757134 + rotX: 359.919739 + rotY: 270.0016 + rotZ: 179.8103 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Serpent. + DragSelectable: true + GMNotes: '' + GUID: 716be4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Serpent from Yoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.274004847 + posY: 1.61202288 + posZ: 42.2745972 + rotX: 359.941 + rotY: 270.0177 + rotZ: 357.78418 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1129,6 +679,366 @@ ContainedObjects: scaleY: 1.0 scaleZ: 1.0 XmlUI: '' +- Autoraise: true + CardID: 539620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.5550861 + posY: 1.57516873 + posZ: 5.69822454 + rotX: 359.92038 + rotY: 270.002563 + rotZ: 0.0152713312 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Serpent. + DragSelectable: true + GMNotes: '' + GUID: 7a3a6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.218750983 + posY: 1.58100176 + posZ: 41.22056 + rotX: 359.9753 + rotY: 270.018524 + rotZ: 0.503650546 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Serpent. + DragSelectable: true + GMNotes: '' + GUID: 35dd7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fang of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.4593277 + posY: 2.525863 + posZ: -23.1652966 + rotX: 359.920135 + rotY: 270.000366 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Serpent. + DragSelectable: true + GMNotes: '' + GUID: 6ede20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Fang of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5314713 + posY: 2.53121519 + posZ: -19.2158031 + rotX: 359.9201 + rotY: 270.000366 + rotZ: 180.016983 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Humanoid. Monster. Serpent. + DragSelectable: true + GMNotes: '' + GUID: 631fd0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.05291896 + posY: 1.52927518 + posZ: 41.9523277 + rotX: 359.865723 + rotY: 270.066772 + rotZ: 1.0062083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235743 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Poison. + DragSelectable: true + GMNotes: '' + GUID: 3ae801 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Creeping Poison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.5182 + posY: 1.47169614 + posZ: -40.74573 + rotX: 359.934235 + rotY: 269.999664 + rotZ: 0.0112709245 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hex. + DragSelectable: true + GMNotes: '' + GUID: 09fa5b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: A Tear in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.8707352 + posY: 1.48277044 + posZ: 42.71366 + rotX: 359.920227 + rotY: 269.998749 + rotZ: 0.0163513962 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Trap. + DragSelectable: true + GMNotes: '' + GUID: bcaed6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Final Mistake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.5773048 + posY: 1.53593814 + posZ: 45.3714676 + rotX: 359.918274 + rotY: 269.999023 + rotZ: 0.0145744616 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' - Autoraise: true CardID: 235731 ColorDiffuse: @@ -1174,51 +1084,6 @@ ContainedObjects: scaleY: 1.0 scaleZ: 1.0 XmlUI: '' -- Autoraise: true - CardID: 235732 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2357': - BackIsHidden: true - BackURL: https://i.imgur.com/sRsWiSG.jpg/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ - NumHeight: 7 - NumWidth: 10 - Type: 0 - UniqueBack: false - Description: Hex. - DragSelectable: true - GMNotes: '' - GUID: bfddb7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: A Tear in Time - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 17.92174 - posY: 1.55716217 - posZ: 43.04463 - rotX: 359.921417 - rotY: 269.9989 - rotZ: 0.014410777 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' - Autoraise: true CardID: 235733 ColorDiffuse: @@ -1265,7 +1130,7 @@ ContainedObjects: scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 235725 + CardID: 235736 ColorDiffuse: b: 0.713235259 g: 0.713235259 @@ -1279,10 +1144,10 @@ ContainedObjects: NumWidth: 10 Type: 0 UniqueBack: false - Description: Humanoid. Monster. Serpent. + Description: Hazard. DragSelectable: true GMNotes: '' - GUID: 631fd0 + GUID: 7b221b Grid: true GridProjection: false Hands: true @@ -1293,18 +1158,153 @@ ContainedObjects: LuaScriptState: '' MeasureMovement: false Name: Card - Nickname: Brood of Yig + Nickname: Deep Dark SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: -0.05291896 - posY: 1.52927518 - posZ: 41.9523277 - rotX: 359.865723 - rotY: 270.066772 - rotZ: 1.0062083 + posX: 18.4302654 + posY: 1.53989351 + posZ: 60.3248825 + rotX: 359.92157 + rotY: 269.999176 + rotZ: 0.0143620856 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 539621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: 50e716 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.8034887 + posY: 1.57302034 + posZ: 1.99893022 + rotX: 359.920471 + rotY: 270.000641 + rotZ: 0.0145632224 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hazard. + DragSelectable: true + GMNotes: '' + GUID: 89b67a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Deep Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.1757374 + posY: 1.48745537 + posZ: 60.0669 + rotX: 359.9202 + rotY: 269.999359 + rotZ: 0.01637041 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2357': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1467561769777497046/3003A76996378249E6AAA4A60D85AE7EE59C1B8B/ + NumHeight: 7 + NumWidth: 10 + Type: 0 + UniqueBack: false + Description: Hex. + DragSelectable: true + GMNotes: '' + GUID: 54752a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Lost in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.1425781 + posY: 1.48141217 + posZ: 39.4102 + rotX: 359.920258 + rotY: 269.999146 + rotZ: 0.0159195755 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -1318,6 +1318,14 @@ CustomDeck: NumWidth: 10 Type: 0 UniqueBack: false + '2699': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1597043896927310894/224D88E486BCF3DCCA4F956CA928CC7FD510EECA/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false '5396': BackIsHidden: true BackURL: https://i.imgur.com/sRsWiSG.jpg/ @@ -1327,35 +1335,35 @@ CustomDeck: Type: 0 UniqueBack: false DeckIDs: -- 235726 -- 539621 - 235743 -- 235740 -- 539621 -- 235742 - 235732 -- 235727 -- 235736 -- 235733 -- 235725 +- 235730 +- 269900 - 235732 +- 235741 - 235734 -- 235740 -- 235730 -- 539620 -- 235741 -- 235743 -- 235730 -- 235736 -- 235735 -- 235735 -- 235741 - 235727 +- 235727 +- 235735 +- 235741 +- 539621 +- 235735 +- 235726 - 235725 -- 235731 +- 539620 +- 235725 +- 235740 +- 235740 +- 235725 +- 235743 - 235732 +- 235730 +- 235731 +- 235733 +- 235736 +- 539621 +- 235736 - 235733 -- 235725 Description: '' DragSelectable: true GMNotes: '' @@ -1376,11 +1384,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.92773724 - posY: 1.74919283 - posZ: 5.757114 + posX: -3.92771959 + posY: 1.74919271 + posZ: 5.75710869 rotX: 359.919739 - rotY: 270.0003 + rotY: 270.000336 rotZ: 180.016815 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_PDF The Forgotten Age Campaign Guide 267216.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_PDF The Forgotten Age Campaign Guide 267216.yaml index b27afc0a2..ef976fe9f 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_PDF The Forgotten Age Campaign Guide 267216.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_PDF The Forgotten Age Campaign Guide 267216.yaml @@ -28,11 +28,11 @@ Sticky: true Tooltip: true Transform: posX: 0.2698999 - posY: 1.48960721 + posY: 1.4896071 posZ: 28.7770042 rotX: 359.920135 rotY: 270.0027 - rotZ: 0.0168682281 + rotZ: 0.0168681145 scaleX: 2.18 scaleY: 1.0 scaleZ: 2.18 diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Tile Forgotten Age Campaign Log 48b154.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Tile Forgotten Age Campaign Log 48b154.yaml index aeec2a3e6..83a610dac 100644 --- a/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Tile Forgotten Age Campaign Log 48b154.yaml +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0bcf19/Custom_Tile Forgotten Age Campaign Log 48b154.yaml @@ -263,12 +263,12 @@ States: Sticky: true Tooltip: true Transform: - posX: -1.35348988 - posY: 1.47556293 + posX: -1.35348785 + posY: 1.47556257 posZ: -26.6032066 rotX: 359.920135 - rotY: 270.002 - rotZ: 0.016868528 + rotY: 270.001984 + rotZ: 0.0168689117 scaleX: 6.5 scaleY: 1.0 scaleZ: 6.5 diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a.yaml index 4661547a9..bef403a40 100644 --- a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a.yaml +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a.yaml @@ -97,11 +97,11 @@ Sticky: true Tooltip: true Transform: posX: -9.742785 - posY: 1.30284023 + posY: 1.30284011 posZ: -66.52 - rotX: 0.0208124369 + rotX: 0.0208125375 rotY: 269.9932 - rotZ: 0.0167679954 + rotZ: 0.0167680383 scaleX: 0.5 scaleY: 0.139652729 scaleZ: 0.5 diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa aca04c.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa aca04c.yaml index 14433c40c..1a5e40671 100644 --- a/unpacked/Custom_Model_Bag The Path to Carcosa aca04c.yaml +++ b/unpacked/Custom_Model_Bag The Path to Carcosa aca04c.yaml @@ -62,12 +62,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 51.65556 - posY: 1.40953612 - posZ: 0.14025557 + posX: 51.65569 + posY: 1.40953672 + posZ: 0.140261278 rotX: 359.920135 rotY: 270.000061 - rotZ: 0.0168729536 + rotZ: 0.0168720838 scaleX: 1.0 scaleY: 0.139652729 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1.ttslua new file mode 100644 index 000000000..beb7e9fed --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1.ttslua @@ -0,0 +1,503 @@ +-- 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,-6}, rotation={0,0,0}, height=500, width=1200, + font_size=350, 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 + 4 + 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=1000, width=1000, + 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.25,0.1,-6}, rotation={0,0,0}, height=500, width=1200, + font_size=350, color={0,0,0}, font_color={1,1,1} + }) + + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={-1.25,0.3,-7}, rotation={0,0,0}, height=500, width=1200, + font_size=350, 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.25,0.3,-6}, rotation={0,0,0}, height=500, width=1200, + font_size=350, 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.25,0.3,-8}, rotation={0,0,0}, height=500, width=1200, + font_size=350, color={0,0,0}, font_color={0.75,0.75,1} + }) + self.createButton({ + label="Remove", click_function="buttonClick_remove", function_owner=self, + position={1.25,0.3,-7}, rotation={0,0,0}, height=500, width=1200, + font_size=350, 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.25,0.3,-8}, rotation={0,0,0}, height=500, width=1200, + font_size=350, 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.35,1,6}, rotation={0,0,0}, height=500, width=1200, + font_size=350, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={-1.25,1,6}, rotation={0,0,0}, height=500, width=1200, + font_size=350, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.1,-6}, rotation={0,0,0}, height=500, width=1200, + font_size=350, 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 The Side Missions 2d16e1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1.yaml new file mode 100644 index 000000000..a1a7d6c26 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1.yaml @@ -0,0 +1,154 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Bag Secret Objectives & Ultimatums + b2077d.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds + 754057.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of + the Worlds 19d469.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in + the Woods c90c49.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony + of Erich Zann 18aa54.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard + Event 7bc42b.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things + 408301.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room + fa4327.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons + 2abdd6.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen + Baillius bfefd4.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe + 28e0a1.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher + Wyrm 504f38.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider + 3c175c.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi + Orientis 7cf202.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and + Sands eeeb50.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country + Cycle aaceca.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew + Calls 3ddd12.yaml' +- !include "Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Masks of Nyarlathotep\ + \ \u2013 New York 94a1f8.yaml" +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London + Set 0f96ac.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at + Roxie''s c6a1ca.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall + df62e8.yaml' +- !include "Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Staj\u0105\ + \ si\u0119 Rzeczywi\u015Bci\u0105 acdf16.yaml" +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny''s Choice + a61b48.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands + 019847.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest + Pits 68380c.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts + 2d417b.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy''s Funhouse + e7d9f8.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak + Hotel 4255b1.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival + 29d22a.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star + bcfff6.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green + Convergence ac164e.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls + c6a612.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of + Amulotep 0d7a8d.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation + on the Constellation 0ec730.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour + out of Space 5b81ff.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector + 9810eb.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of + Spiders e57017.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs + 578e97.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled + in Salem 4237da.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching + Storm 0fad66.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland + b58202.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the + Wendigo 4d5fa0.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the + Excelsior Hotel 01d780.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of + Horrors 23dd51.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths + of Lunacy 4c173f.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that + Ate Everything 4dee5a.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing + 72ab92.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die + 9e73fa.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the + Rougarou db7039.yaml' +- !include 'Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of + the Abyss ee987d.yaml' +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/1597043896927229631/F8C950620F886182DD2BB1FD351E41D0B77B4827/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 2d16e1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Side Missions 2d16e1.ttslua' +LuaScriptState: '{"ml":{"01d780":{"lock":false,"pos":{"x":12.2495,"y":1.4633,"z":-4.0136},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"23dd51":{"lock":false,"pos":{"x":12.25,"y":1.4703,"z":19.9864},"rot":{"x":359.9201,"y":270,"z":0.0169}},"4c173f":{"lock":false,"pos":{"x":12.2521,"y":1.468,"z":11.9864},"rot":{"x":359.9201,"y":270,"z":0.0169}},"4dee5a":{"lock":false,"pos":{"x":12.25,"y":1.4609,"z":-12.0136},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"72ab92":{"lock":false,"pos":{"x":12.2495,"y":1.4562,"z":-28.0136},"rot":{"x":359.9201,"y":270,"z":0.0169}},"9e73fa":{"lock":false,"pos":{"x":12.2504,"y":1.4585,"z":-20.0136},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"db7039":{"lock":false,"pos":{"x":12.2502,"y":1.4727,"z":27.9864},"rot":{"x":359.9201,"y":270,"z":0.0169}},"ee987d":{"lock":false,"pos":{"x":12.2499,"y":1.4656,"z":3.9864},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Side Missions +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.2997971 + posY: 1.44055223 + posZ: 0.140060648 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687261 + scaleX: 1.0 + scaleY: 0.139652729 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Bag Secret Objectives & Ultimatums b2077d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Bag Secret Objectives & Ultimatums b2077d.yaml similarity index 91% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Bag Secret Objectives & Ultimatums b2077d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Bag Secret Objectives & Ultimatums b2077d.yaml index 1acc6df03..49af93151 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Bag Secret Objectives & Ultimatums b2077d.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Bag Secret Objectives & Ultimatums b2077d.yaml @@ -31,11 +31,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 18.5561562 - posY: 2.27709126 - posZ: -10.92607 + posX: -0.390007764 + posY: 3.16023779 + posZ: -24.1208916 rotX: 359.993958 - rotY: 2.55166688e-05 + rotY: 2.53691032e-05 rotZ: 359.9714 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Bag Secret Objectives & Ultimatums b2077d/Deck 1e8a13.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Bag Secret Objectives & Ultimatums b2077d/Deck 1e8a13.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Bag Secret Objectives & Ultimatums b2077d/Deck 1e8a13.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Bag Secret Objectives & Ultimatums b2077d/Deck 1e8a13.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Bag Secret Objectives & Ultimatums b2077d/Deck 5f3cba.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Bag Secret Objectives & Ultimatums b2077d/Deck 5f3cba.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Bag Secret Objectives & Ultimatums b2077d/Deck 5f3cba.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Bag Secret Objectives & Ultimatums b2077d/Deck 5f3cba.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE SECRET OBJ. f3dfc9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE SECRET OBJ. f3dfc9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE SECRET OBJ. f3dfc9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE SECRET OBJ. f3dfc9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE ULTIMATUMS ed4645.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE ULTIMATUMS ed4645.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE ULTIMATUMS ed4645.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE ULTIMATUMS ed4645.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0.yaml index c6a55ccdb..949895ab1 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0.yaml @@ -81,12 +81,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 55.85155 - posY: 8.468403 - posZ: -7.05418253 - rotX: 0.0208126847 - rotY: 269.996552 - rotZ: 0.0167699382 + posX: 14.9488039 + posY: 3.32594371 + posZ: -24.2361069 + rotX: 359.969879 + rotY: 269.99823 + rotZ: 0.008491066 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae/Card acefbf.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae/Card acefbf.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae/Card acefbf.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae/Card acefbf.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae/Card Anger Issues b67ef8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae/Card Anger Issues b67ef8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae/Card Anger Issues b67ef8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae/Card Anger Issues b67ef8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae/Card Dave Harrison 359a15.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae/Card Dave Harrison 359a15.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae/Card Dave Harrison 359a15.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae/Card Dave Harrison 359a15.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae/Card Harrison's MP5 039291.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae/Card Harrison's MP5 039291.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae/Card Harrison's MP5 039291.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae/Card Harrison's MP5 039291.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381/Card 0d7398.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381/Card 0d7398.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381/Card 0d7398.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381/Card 0d7398.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381/Card Between bda031.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381/Card Between bda031.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381/Card Between bda031.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381/Card Between bda031.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381/Card Martin Fuller 597c69.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381/Card Martin Fuller 597c69.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381/Card Martin Fuller 597c69.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381/Card Martin Fuller 597c69.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381/Card The Holographic Universe af067a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381/Card The Holographic Universe af067a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381/Card The Holographic Universe af067a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381/Card The Holographic Universe af067a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b/Card 6e601f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b/Card 6e601f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b/Card 6e601f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b/Card 6e601f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b/Card Company Connections cb5f8b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b/Card Company Connections cb5f8b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b/Card Company Connections cb5f8b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b/Card Company Connections cb5f8b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b/Card Maxine Benson 03052d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b/Card Maxine Benson 03052d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b/Card Maxine Benson 03052d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b/Card Maxine Benson 03052d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b/Card Vengeful Assassin 83c027.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b/Card Vengeful Assassin 83c027.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b/Card Vengeful Assassin 83c027.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b/Card Vengeful Assassin 83c027.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d/Card f64ead.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d/Card f64ead.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d/Card f64ead.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d/Card f64ead.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d/Card Haunted By Vengeance d1005d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d/Card Haunted By Vengeance d1005d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d/Card Haunted By Vengeance d1005d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d/Card Haunted By Vengeance d1005d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d/Card Mia Takamura 498a00.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d/Card Mia Takamura 498a00.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d/Card Mia Takamura 498a00.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d/Card Mia Takamura 498a00.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d/Card The Bride 0a3e7c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d/Card The Bride 0a3e7c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d/Card The Bride 0a3e7c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d/Card The Bride 0a3e7c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b/Card 76d8e1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b/Card 76d8e1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b/Card 76d8e1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b/Card 76d8e1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b/Card Phil Duke 74db2c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b/Card Phil Duke 74db2c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b/Card Phil Duke 74db2c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b/Card Phil Duke 74db2c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b/Card St Christopher's Pendant 57a01b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b/Card St Christopher's Pendant 57a01b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b/Card St Christopher's Pendant 57a01b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b/Card St Christopher's Pendant 57a01b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b/Card Survivor's Guilt 86aecd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b/Card Survivor's Guilt 86aecd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b/Card Survivor's Guilt 86aecd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b/Card Survivor's Guilt 86aecd.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Deck FBI Credentials e07f79.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Deck FBI Credentials e07f79.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Deck FBI Credentials e07f79.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Deck FBI Credentials e07f79.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Credits 45ae28.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Credits 45ae28.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Credits 45ae28.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Credits 45ae28.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Fort McDonald 88a1cf.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Fort McDonald 88a1cf.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Fort McDonald 88a1cf.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Fort McDonald 88a1cf.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Indian Territory 686672.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Indian Territory 686672.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Indian Territory 686672.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Indian Territory 686672.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Jetty 0e52c8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Jetty 0e52c8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Jetty 0e52c8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Jetty 0e52c8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Scenario 1ac3ac.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Scenario 1ac3ac.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Scenario 1ac3ac.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Scenario 1ac3ac.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Assets 35a314.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Assets 35a314.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Assets 35a314.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Assets 35a314.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Bernard's Fate c0187f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Bernard's Fate c0187f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Bernard's Fate c0187f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Bernard's Fate c0187f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Norman's Fate bbb654.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Norman's Fate bbb654.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Norman's Fate bbb654.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Norman's Fate bbb654.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Old Injury 71121c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Old Injury 71121c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Old Injury 71121c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Old Injury 71121c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Story Cards 0b5e2d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Story Cards 0b5e2d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Story Cards 0b5e2d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Story Cards 0b5e2d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Sylvia's Fate fe9b2c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Sylvia's Fate fe9b2c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Sylvia's Fate fe9b2c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Sylvia's Fate fe9b2c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Wendigo's Myth 0917d6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Wendigo's Myth 0917d6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Wendigo's Myth 0917d6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Wendigo's Myth 0917d6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 0f6d69.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 0f6d69.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 0f6d69.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 0f6d69.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 1ee2a5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 1ee2a5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 1ee2a5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 1ee2a5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 201524.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 201524.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 201524.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 201524.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 60ad05.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 60ad05.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 60ad05.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 60ad05.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 86cbee.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 86cbee.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 86cbee.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 86cbee.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 9caa1f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 9caa1f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 9caa1f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 9caa1f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile b6a235.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile b6a235.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile b6a235.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile b6a235.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile d807d4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile d807d4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile d807d4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile d807d4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile dda3d5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile dda3d5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile dda3d5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile dda3d5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile e47eca.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile e47eca.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile e47eca.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile e47eca.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile Against the Wendigo 82e1ed.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile Against the Wendigo 82e1ed.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile Against the Wendigo 82e1ed.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile Against the Wendigo 82e1ed.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile Against the Wendigo 82e1ed.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile Against the Wendigo 82e1ed.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile Against the Wendigo 82e1ed.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile Against the Wendigo 82e1ed.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Act Deck 5f661f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Act Deck 5f661f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Act Deck 5f661f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Act Deck 5f661f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Agenda Deck 9e701d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Agenda Deck 9e701d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Agenda Deck 9e701d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Agenda Deck 9e701d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Encounter Deck 6f2827.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Encounter Deck 6f2827.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Encounter Deck 6f2827.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Encounter Deck 6f2827.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Locations (random shuffle) b3ec68.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Locations (random shuffle) b3ec68.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Locations (random shuffle) b3ec68.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Locations (random shuffle) b3ec68.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Mountain Range 309b74.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Mountain Range 309b74.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Mountain Range 309b74.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Mountain Range 309b74.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Shuffle and place north of Jetty a69955.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Shuffle and place north of Jetty a69955.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Shuffle and place north of Jetty a69955.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Shuffle and place north of Jetty a69955.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/ScriptingTrigger 06f882.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/ScriptingTrigger 06f882.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/ScriptingTrigger 06f882.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/ScriptingTrigger 06f882.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Tablet Against the Wendigo Campaign Guide ad6736.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Tablet Against the Wendigo Campaign Guide ad6736.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the Wendigo 4d5fa0/Tablet Against the Wendigo Campaign Guide ad6736.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Against the Wendigo 4d5fa0/Tablet Against the Wendigo Campaign Guide ad6736.yaml diff --git a/unpacked/Custom_Model_Bag Darkness Falls c6a612.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Darkness Falls c6a612.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202.ttslua diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202.yaml similarity index 77% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202.yaml index ccb964a82..8a416a191 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202.yaml @@ -19,31 +19,31 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: -- !include 'Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling +- !include 'Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6.yaml' -- !include 'Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham +- !include 'Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54.yaml' -- !include 'Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Tokens for Interludes +- !include 'Custom_Model_Bag Alice in Wonderland b58202/Bag Tokens for Interludes 1cc5a6.yaml' -- !include 'Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Epilogue (SPOILER ALERT) +- !include 'Custom_Model_Bag Alice in Wonderland b58202/Bag Epilogue (SPOILER ALERT) 2ec188.yaml' -- !include 'Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_PDF Alice in Wonderland +- !include 'Custom_Model_Bag Alice in Wonderland b58202/Custom_PDF Alice in Wonderland Campaign Guide 7ff86f.yaml' -- !include 'Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest +- !include 'Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8.yaml' -- !include 'Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding +- !include 'Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793.yaml' -- !include 'Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea +- !include 'Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572.yaml' -- !include 'Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild +- !include 'Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0.yaml' -- !include 'Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Tile Alice in Wonderland +- !include 'Custom_Model_Bag Alice in Wonderland b58202/Custom_Tile Alice in Wonderland b5928a.yaml' -- !include 'Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool''s +- !include 'Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool''s Mate bd556e.yaml' -- !include 'Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare +- !include 'Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63.yaml' -- !include 'Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Token Alice in Wonderland +- !include 'Custom_Model_Bag Alice in Wonderland b58202/Custom_Token Alice in Wonderland Campaign Log eda22b.yaml' CustomMesh: CastShadows: true @@ -62,17 +62,17 @@ CustomMesh: MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj NormalURL: '' TypeIndex: 6 -Description: Place directuly underneath the Side Missions box for easiest setup +Description: Place directly underneath the Side Missions box for easiest setup DragSelectable: true GMNotes: '' -GUID: 4dfdcb +GUID: b58202 Grid: true GridProjection: false Hands: false HideWhenFaceDown: false IgnoreFoW: false Locked: false -LuaScript: !include 'Custom_Model_Bag Alice in Wonderland 4dfdcb.ttslua' +LuaScript: !include 'Custom_Model_Bag Alice in Wonderland b58202.ttslua' LuaScriptState: '{"ml":{"0916b6":{"lock":false,"pos":{"x":12.2504,"y":1.4609,"z":-12.014},"rot":{"x":359.9201,"y":270.0144,"z":0.0169}},"18aa54":{"lock":false,"pos":{"x":12.25,"y":1.4727,"z":27.9863},"rot":{"x":359.9201,"y":270.0166,"z":0.0169}},"1cc5a6":{"lock":false,"pos":{"x":12.2486,"y":1.29,"z":35.9865},"rot":{"x":359.9831,"y":0.0007,"z":359.92}},"1f17b8":{"lock":false,"pos":{"x":-26.8191,"y":1.4322,"z":-5.5144},"rot":{"x":359.9831,"y":0.0008,"z":359.92}},"2b0eb8":{"lock":false,"pos":{"x":-26.8195,"y":1.4333,"z":-1.9003},"rot":{"x":359.9831,"y":0.001,"z":359.92}},"2ec188":{"lock":false,"pos":{"x":12.2495,"y":1.2688,"z":-36.0137},"rot":{"x":359.9831,"y":-0.0008,"z":359.92}},"7ff86f":{"lock":false,"pos":{"x":-2.4334,"y":1.5,"z":-42.5732},"rot":{"x":0.0003,"y":270.0719,"z":0.0009}},"87028b":{"lock":false,"pos":{"x":-26.82,"y":1.4344,"z":1.7829},"rot":{"x":359.9831,"y":0.0016,"z":359.92}},"8d88c8":{"lock":false,"pos":{"x":12.252,"y":1.468,"z":11.9864},"rot":{"x":359.9201,"y":270.0018,"z":0.0169}},"8eb793":{"lock":false,"pos":{"x":12.25,"y":1.4656,"z":3.9864},"rot":{"x":359.9201,"y":269.9991,"z":0.0169}},"952572":{"lock":false,"pos":{"x":12.25,"y":1.4703,"z":19.9864},"rot":{"x":359.9201,"y":269.9984,"z":0.0169}},"9e33a0":{"lock":false,"pos":{"x":12.2495,"y":1.4633,"z":-4.0139},"rot":{"x":359.9201,"y":270.0063,"z":0.0169}},"b5928a":{"lock":false,"pos":{"x":-3.6896,"y":1.5822,"z":-15.0618},"rot":{"x":359.9198,"y":269.9681,"z":0.0169}},"bd556e":{"lock":false,"pos":{"x":12.2504,"y":1.4585,"z":-20.0152},"rot":{"x":359.9201,"y":270.0493,"z":0.0168}},"c38946":{"lock":false,"pos":{"x":-26.7424,"y":1.4354,"z":5.4708},"rot":{"x":359.9831,"y":0.0009,"z":359.92}},"e6bb63":{"lock":false,"pos":{"x":12.2491,"y":1.4562,"z":-28.0147},"rot":{"x":359.9201,"y":270.0374,"z":0.0168}},"eda22b":{"lock":false,"pos":{"x":-1.466,"y":1.5756,"z":-26.9366},"rot":{"x":359.9201,"y":270.0121,"z":0.0169}}}}' MaterialIndex: -1 MeasureMovement: false @@ -83,12 +83,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 32.23003 - posY: 1.43352652 - posZ: -10.3601675 - rotX: 359.920135 - rotY: 269.999817 - rotZ: 0.016874209 + posX: 20.4123 + posY: 4.312019 + posZ: -26.59907 + rotX: 359.983246 + rotY: 269.9996 + rotZ: 0.003538322 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Epilogue (SPOILER ALERT) 2ec188.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Epilogue (SPOILER ALERT) 2ec188.yaml similarity index 93% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Epilogue (SPOILER ALERT) 2ec188.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Epilogue (SPOILER ALERT) 2ec188.yaml index 5334ba018..3110662a6 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Epilogue (SPOILER ALERT) 2ec188.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Epilogue (SPOILER ALERT) 2ec188.yaml @@ -31,10 +31,10 @@ Sticky: true Tooltip: true Transform: posX: 12.2495022 - posY: 1.26879239 - posZ: -36.0137024 + posY: 1.26879263 + posZ: -36.01369 rotX: 359.983124 - rotY: -0.0009047766 + rotY: -0.0009012687 rotZ: 359.920044 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Epilogue (SPOILER ALERT) 2ec188/CardCustom Alice Liddell 15e87b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Epilogue (SPOILER ALERT) 2ec188/CardCustom Alice Liddell 15e87b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Epilogue (SPOILER ALERT) 2ec188/CardCustom Alice Liddell 15e87b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Epilogue (SPOILER ALERT) 2ec188/CardCustom Alice Liddell 15e87b.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Epilogue (SPOILER ALERT) 2ec188/CardCustom Alice Liddell 9538a5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Epilogue (SPOILER ALERT) 2ec188/CardCustom Alice Liddell 9538a5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Epilogue (SPOILER ALERT) 2ec188/CardCustom Alice Liddell 9538a5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Epilogue (SPOILER ALERT) 2ec188/CardCustom Alice Liddell 9538a5.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Epilogue (SPOILER ALERT) 2ec188/CardCustom Lost in Thought 9be708.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Epilogue (SPOILER ALERT) 2ec188/CardCustom Lost in Thought 9be708.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Epilogue (SPOILER ALERT) 2ec188/CardCustom Lost in Thought 9be708.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Epilogue (SPOILER ALERT) 2ec188/CardCustom Lost in Thought 9be708.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Epilogue (SPOILER ALERT) 2ec188/CardCustom Mysteries of Wonderland 764e3f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Epilogue (SPOILER ALERT) 2ec188/CardCustom Mysteries of Wonderland 764e3f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Epilogue (SPOILER ALERT) 2ec188/CardCustom Mysteries of Wonderland 764e3f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Epilogue (SPOILER ALERT) 2ec188/CardCustom Mysteries of Wonderland 764e3f.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Tokens for Interludes 1cc5a6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Tokens for Interludes 1cc5a6.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Tokens for Interludes 1cc5a6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Tokens for Interludes 1cc5a6.yaml index 9547a5242..677f556a5 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Tokens for Interludes 1cc5a6.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Tokens for Interludes 1cc5a6.yaml @@ -36,10 +36,10 @@ Sticky: true Tooltip: true Transform: posX: 12.2486038 - posY: 1.28999543 + posY: 1.28999567 posZ: 35.9865074 rotX: 359.9831 - rotY: 0.0007680028 + rotY: 0.0007195595 rotZ: 359.920044 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Tokens for Interludes 1cc5a6/Custom_Tile 0fd2b9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Tokens for Interludes 1cc5a6/Custom_Tile 0fd2b9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Tokens for Interludes 1cc5a6/Custom_Tile 0fd2b9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Tokens for Interludes 1cc5a6/Custom_Tile 0fd2b9.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Tokens for Interludes 1cc5a6/Custom_Tile 1fef97.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Tokens for Interludes 1cc5a6/Custom_Tile 1fef97.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Tokens for Interludes 1cc5a6/Custom_Tile 1fef97.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Tokens for Interludes 1cc5a6/Custom_Tile 1fef97.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Tokens for Interludes 1cc5a6/Custom_Tile 4f5fc7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Tokens for Interludes 1cc5a6/Custom_Tile 4f5fc7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Tokens for Interludes 1cc5a6/Custom_Tile 4f5fc7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Tokens for Interludes 1cc5a6/Custom_Tile 4f5fc7.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Tokens for Interludes 1cc5a6/Custom_Tile 606624.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Tokens for Interludes 1cc5a6/Custom_Tile 606624.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Tokens for Interludes 1cc5a6/Custom_Tile 606624.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Tokens for Interludes 1cc5a6/Custom_Tile 606624.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Tokens for Interludes 1cc5a6/Custom_Tile 814549.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Tokens for Interludes 1cc5a6/Custom_Tile 814549.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Tokens for Interludes 1cc5a6/Custom_Tile 814549.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Tokens for Interludes 1cc5a6/Custom_Tile 814549.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Tokens for Interludes 1cc5a6/Custom_Tile 9bd832.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Tokens for Interludes 1cc5a6/Custom_Tile 9bd832.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Tokens for Interludes 1cc5a6/Custom_Tile 9bd832.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Tokens for Interludes 1cc5a6/Custom_Tile 9bd832.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Tokens for Interludes 1cc5a6/Custom_Tile a42ec2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Tokens for Interludes 1cc5a6/Custom_Tile a42ec2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Tokens for Interludes 1cc5a6/Custom_Tile a42ec2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Tokens for Interludes 1cc5a6/Custom_Tile a42ec2.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Tokens for Interludes 1cc5a6/Custom_Tile a5512d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Tokens for Interludes 1cc5a6/Custom_Tile a5512d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Tokens for Interludes 1cc5a6/Custom_Tile a5512d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Tokens for Interludes 1cc5a6/Custom_Tile a5512d.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Tokens for Interludes 1cc5a6/Custom_Tile e05e21.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Tokens for Interludes 1cc5a6/Custom_Tile e05e21.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Tokens for Interludes 1cc5a6/Custom_Tile e05e21.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Tokens for Interludes 1cc5a6/Custom_Tile e05e21.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Tokens for Interludes 1cc5a6/Custom_Tile fc842c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Tokens for Interludes 1cc5a6/Custom_Tile fc842c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Bag Tokens for Interludes 1cc5a6/Custom_Tile fc842c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Bag Tokens for Interludes 1cc5a6/Custom_Tile fc842c.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54.ttslua diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54.yaml similarity index 56% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54.yaml index 8b9d67b89..c68f9a908 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54.yaml @@ -19,32 +19,32 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: +- !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Token Effects 043f29.yaml' - !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Deck Act Deck 05075d.yaml' -- !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Curiositie Shoppe - (Arkham in Wonderland) 059df5.yaml' - !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Bank of Arkham (Arkham - in Wonderland) 1a5552.yaml' + in Wonderland) 248d83.yaml' - !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Independence Square - (Arkham in Wonderland) 39b7ef.yaml' + (Arkham in Wonderland) 2e3164.yaml' +- !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 3ee63d.yaml' +- !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Train Station (Arkham + in Wonderland) 424998.yaml' - !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 4dcc72.yaml' +- !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Newspaper Office (Arkham + in Wonderland) 578c5e.yaml' - !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 601e77.yaml' - !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 6585c5.yaml' -- !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Token Effects 6f9c99.yaml' - !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Arkham Asylum (Arkham + in Wonderland) 77af74.yaml' - !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a.yaml' -- !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Train Station (Arkham - in Wonderland) 98b93d.yaml' +- !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Curiositie Shoppe + (Arkham in Wonderland) 9d11ee.yaml' - !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 9d8748.yaml' -- !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Arkham Asylum (Arkham - in Wonderland) a2cb96.yaml' - !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile a38f02.yaml' -- !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Newspaper Office (Arkham - in Wonderland) c22d99.yaml' -- !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile eed276.yaml' -- !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Agenda 1 - A Tide - of Madness f2dee9.yaml' - !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Deck Encounter Deck f48f95.yaml' +- !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Agenda 1 - A Tide + of Madness f7c840.yaml' CustomMesh: CastShadows: true ColliderURL: '' @@ -73,7 +73,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: false LuaScript: !include 'Custom_Model_Bag 1 Arkham in Wonderland 18aa54.ttslua' -LuaScriptState: '{"ml":{"05075d":{"lock":false,"pos":{"x":-2.6886,"y":1.6239,"z":-5.0485},"rot":{"x":0.0168,"y":180,"z":0.0803}},"059df5":{"lock":false,"pos":{"x":-30.2243,"y":1.6406,"z":11.46},"rot":{"x":359.9201,"y":269.9981,"z":0.0169}},"1a5552":{"lock":false,"pos":{"x":-30.2243,"y":1.6361,"z":-3.8301},"rot":{"x":359.9201,"y":269.998,"z":0.0169}},"39b7ef":{"lock":false,"pos":{"x":-30.2243,"y":1.6339,"z":-11.51},"rot":{"x":359.9201,"y":269.9982,"z":0.0169}},"4dcc72":{"lock":false,"pos":{"x":-31.5447,"y":1.6232,"z":-7.771},"rot":{"x":0.0169,"y":179.9915,"z":0.08}},"601e77":{"lock":false,"pos":{"x":-26.6576,"y":1.617,"z":-5.7381},"rot":{"x":359.9224,"y":300.0097,"z":359.9747}},"6585c5":{"lock":false,"pos":{"x":-26.7535,"y":1.6216,"z":9.5994},"rot":{"x":359.9224,"y":299.9948,"z":359.9747}},"6f9c99":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9985,"z":0.0168}},"7234af":{"lock":false,"pos":{"x":-31.7095,"y":1.628,"z":7.7212},"rot":{"x":0.0169,"y":180.0156,"z":0.08}},"7a167a":{"lock":false,"pos":{"x":1.6966,"y":1.5583,"z":14.2792},"rot":{"x":359.9551,"y":225.0086,"z":0.0687}},"98b93d":{"lock":false,"pos":{"x":-23.6766,"y":1.6303,"z":7.57},"rot":{"x":359.9201,"y":269.9978,"z":0.0169}},"9d8748":{"lock":false,"pos":{"x":-27.0961,"y":1.6209,"z":5.4561},"rot":{"x":359.9393,"y":239.8966,"z":0.0547}},"a2cb96":{"lock":false,"pos":{"x":-23.6766,"y":1.6259,"z":-7.7},"rot":{"x":359.9201,"y":269.9966,"z":0.0169}},"a38f02":{"lock":false,"pos":{"x":-31.7375,"y":1.6257,"z":-0.2468},"rot":{"x":0.0169,"y":179.9969,"z":0.08}},"c22d99":{"lock":false,"pos":{"x":-30.2243,"y":1.6384,"z":3.86},"rot":{"x":359.9201,"y":269.9982,"z":0.0169}},"eed276":{"lock":false,"pos":{"x":-27.2178,"y":1.6166,"z":-9.7433},"rot":{"x":359.9392,"y":240.0152,"z":0.0545}},"f2dee9":{"lock":false,"pos":{"x":-2.7247,"y":1.599,"z":0.3733},"rot":{"x":0.0168,"y":180.0002,"z":0.0803}},"f48f95":{"lock":false,"pos":{"x":-3.9275,"y":1.7588,"z":5.757},"rot":{"x":359.9197,"y":269.9999,"z":180.0168}}}}' +LuaScriptState: '{"ml":{"043f29":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"05075d":{"lock":false,"pos":{"x":-2.6886,"y":1.6239,"z":-5.0485},"rot":{"x":0.0168,"y":180,"z":0.0803}},"248d83":{"lock":false,"pos":{"x":-30.2243,"y":1.6361,"z":-3.83},"rot":{"x":359.9201,"y":270,"z":0.0168}},"2e3164":{"lock":false,"pos":{"x":-30.2243,"y":1.6338,"z":-11.51},"rot":{"x":359.9201,"y":270,"z":0.0168}},"3ee63d":{"lock":false,"pos":{"x":-26.8411,"y":1.616,"z":-9.8295},"rot":{"x":359.9392,"y":239.9893,"z":0.0545}},"424998":{"lock":false,"pos":{"x":-23.6766,"y":1.6303,"z":7.57},"rot":{"x":359.9201,"y":270,"z":0.0168}},"4dcc72":{"lock":false,"pos":{"x":-31.5447,"y":1.6232,"z":-7.771},"rot":{"x":0.0169,"y":179.9915,"z":0.0799}},"578c5e":{"lock":false,"pos":{"x":-30.2243,"y":1.6383,"z":3.86},"rot":{"x":359.9201,"y":270,"z":0.0168}},"601e77":{"lock":false,"pos":{"x":-26.6576,"y":1.6169,"z":-5.7381},"rot":{"x":359.9224,"y":300.0096,"z":359.9747}},"6585c5":{"lock":false,"pos":{"x":-26.7535,"y":1.6216,"z":9.5994},"rot":{"x":359.9224,"y":299.9948,"z":359.9747}},"7234af":{"lock":false,"pos":{"x":-31.7095,"y":1.6279,"z":7.7212},"rot":{"x":0.0168,"y":180.0155,"z":0.0799}},"77af74":{"lock":false,"pos":{"x":-23.6766,"y":1.6258,"z":-7.7},"rot":{"x":359.9201,"y":270.0005,"z":0.0168}},"7a167a":{"lock":false,"pos":{"x":1.6966,"y":1.5583,"z":14.2792},"rot":{"x":359.9551,"y":225.0085,"z":0.0687}},"9d11ee":{"lock":false,"pos":{"x":-30.2243,"y":1.6406,"z":11.46},"rot":{"x":359.9201,"y":270.0002,"z":0.0168}},"9d8748":{"lock":false,"pos":{"x":-27.0961,"y":1.6208,"z":5.4561},"rot":{"x":359.9393,"y":239.8966,"z":0.0546}},"a38f02":{"lock":false,"pos":{"x":-31.7375,"y":1.6256,"z":-0.2468},"rot":{"x":0.0168,"y":179.9965,"z":0.0799}},"f48f95":{"lock":false,"pos":{"x":-3.9275,"y":1.7588,"z":5.757},"rot":{"x":359.9197,"y":269.9999,"z":180.0168}},"f7c840":{"lock":false,"pos":{"x":-2.7091,"y":1.599,"z":0.3737},"rot":{"x":0.0168,"y":180.0136,"z":0.0803}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Agenda 1 - A Tide of Madness f2dee9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Agenda 1 - A Tide of Madness f7c840.yaml similarity index 71% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Agenda 1 - A Tide of Madness f2dee9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Agenda 1 - A Tide of Madness f7c840.yaml index 079a057d4..b71ebee1e 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Agenda 1 - A Tide of Madness f2dee9.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Agenda 1 - A Tide of Madness f7c840.yaml @@ -1,13 +1,13 @@ Autoraise: true -CardID: 266245 +CardID: 269345 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '2693': BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1478823218923886366/DD38027FEBB6486E6A00C8D08C2780BB1E167582/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1478823585996584006/F7053E65463D39F3470F7BE736C6C755DAF511DC/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823218923882613/D94014A41D35C6609155D0C7F810A30BB3EB04CC/ NumHeight: 6 NumWidth: 8 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: f2dee9 +GUID: f7c840 Grid: true GridProjection: false Hands: true @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -2.72469974 - posY: 1.59899259 - posZ: 0.373300254 - rotX: 0.01683573 - rotY: 180.000168 - rotZ: 0.08025514 + posX: -2.7091 + posY: 1.59897089 + posZ: 0.373700321 + rotX: 0.0168169979 + rotY: 180.01358 + rotZ: 0.08025912 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Arkham Asylum (Arkham in Wonderland) a2cb96.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Arkham Asylum (Arkham in Wonderland) 77af74.yaml similarity index 65% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Arkham Asylum (Arkham in Wonderland) a2cb96.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Arkham Asylum (Arkham in Wonderland) 77af74.yaml index 915bca6b6..2dfbe5523 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Arkham Asylum (Arkham in Wonderland) a2cb96.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Arkham Asylum (Arkham in Wonderland) 77af74.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 266506 +CardID: 269206 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2665': + '2692': BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1478823218923925125/B379EBEB474E0F36E73E31D92D57B1A609749E00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823218923924138/A5E4FAFF7F051840BF22FC5D55120DFD388DB851/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1478823585996565980/82212EC5FFC29E7D9D1A86B86D60D9C790741B73/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996564956/6D8F60B87859D2083B4CCF23A3091F3AF5374F6C/ NumHeight: 2 NumWidth: 4 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: a2cb96 +GUID: 77af74 Grid: true GridProjection: false Hands: true @@ -35,10 +35,10 @@ Tooltip: true Transform: posX: -23.6766 posY: 1.62581253 - posZ: -7.700001 + posZ: -7.70000029 rotX: 359.9201 - rotY: 269.9963 - rotZ: 0.016844755 + rotY: 270.0005 + rotZ: 0.01683891 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Bank of Arkham (Arkham in Wonderland) 1a5552.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Bank of Arkham (Arkham in Wonderland) 248d83.yaml similarity index 63% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Bank of Arkham (Arkham in Wonderland) 1a5552.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Bank of Arkham (Arkham in Wonderland) 248d83.yaml index ea07d8ec0..04bb3eff3 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Bank of Arkham (Arkham in Wonderland) 1a5552.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Bank of Arkham (Arkham in Wonderland) 248d83.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 266505 +CardID: 269205 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2665': + '2692': BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1478823218923925125/B379EBEB474E0F36E73E31D92D57B1A609749E00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823218923924138/A5E4FAFF7F051840BF22FC5D55120DFD388DB851/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1478823585996565980/82212EC5FFC29E7D9D1A86B86D60D9C790741B73/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996564956/6D8F60B87859D2083B4CCF23A3091F3AF5374F6C/ NumHeight: 2 NumWidth: 4 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: 1a5552 +GUID: 248d83 Grid: true GridProjection: false Hands: true @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -30.2243 - posY: 1.63608015 - posZ: -3.83010054 + posY: 1.63608027 + posZ: -3.8300004 rotX: 359.9201 - rotY: 269.998 - rotZ: 0.0168424752 + rotY: 270.000031 + rotZ: 0.01683958 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Curiositie Shoppe (Arkham in Wonderland) 059df5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Curiositie Shoppe (Arkham in Wonderland) 9d11ee.yaml similarity index 65% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Curiositie Shoppe (Arkham in Wonderland) 059df5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Curiositie Shoppe (Arkham in Wonderland) 9d11ee.yaml index 422cb4ac6..4073fab5e 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Curiositie Shoppe (Arkham in Wonderland) 059df5.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Curiositie Shoppe (Arkham in Wonderland) 9d11ee.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 266502 +CardID: 269202 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2665': + '2692': BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1478823218923925125/B379EBEB474E0F36E73E31D92D57B1A609749E00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823218923924138/A5E4FAFF7F051840BF22FC5D55120DFD388DB851/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1478823585996565980/82212EC5FFC29E7D9D1A86B86D60D9C790741B73/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996564956/6D8F60B87859D2083B4CCF23A3091F3AF5374F6C/ NumHeight: 2 NumWidth: 4 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: 059df5 +GUID: 9d11ee Grid: true GridProjection: false Hands: true @@ -35,10 +35,10 @@ Tooltip: true Transform: posX: -30.2243 posY: 1.64057386 - posZ: 11.46 + posZ: 11.460001 rotX: 359.9201 - rotY: 269.998169 - rotZ: 0.0168421771 + rotY: 270.0002 + rotZ: 0.0168393571 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Independence Square (Arkham in Wonderland) 39b7ef.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Independence Square (Arkham in Wonderland) 2e3164.yaml similarity index 65% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Independence Square (Arkham in Wonderland) 39b7ef.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Independence Square (Arkham in Wonderland) 2e3164.yaml index fcfe1152f..bbc419f3a 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Independence Square (Arkham in Wonderland) 39b7ef.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Independence Square (Arkham in Wonderland) 2e3164.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 266504 +CardID: 269204 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2665': + '2692': BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1478823218923925125/B379EBEB474E0F36E73E31D92D57B1A609749E00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823218923924138/A5E4FAFF7F051840BF22FC5D55120DFD388DB851/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1478823585996565980/82212EC5FFC29E7D9D1A86B86D60D9C790741B73/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996564956/6D8F60B87859D2083B4CCF23A3091F3AF5374F6C/ NumHeight: 2 NumWidth: 4 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: 39b7ef +GUID: 2e3164 Grid: true GridProjection: false Hands: true @@ -35,10 +35,10 @@ Tooltip: true Transform: posX: -30.2243 posY: 1.63382316 - posZ: -11.5100012 + posZ: -11.51 rotX: 359.9201 - rotY: 269.997955 - rotZ: 0.0168425143 + rotY: 269.999939 + rotZ: 0.0168397427 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Newspaper Office (Arkham in Wonderland) c22d99.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Newspaper Office (Arkham in Wonderland) 578c5e.yaml similarity index 65% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Newspaper Office (Arkham in Wonderland) c22d99.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Newspaper Office (Arkham in Wonderland) 578c5e.yaml index db0b6dd8c..3c12d93b1 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Newspaper Office (Arkham in Wonderland) c22d99.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Newspaper Office (Arkham in Wonderland) 578c5e.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 266503 +CardID: 269203 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2665': + '2692': BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1478823218923925125/B379EBEB474E0F36E73E31D92D57B1A609749E00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823218923924138/A5E4FAFF7F051840BF22FC5D55120DFD388DB851/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1478823585996565980/82212EC5FFC29E7D9D1A86B86D60D9C790741B73/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996564956/6D8F60B87859D2083B4CCF23A3091F3AF5374F6C/ NumHeight: 2 NumWidth: 4 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: c22d99 +GUID: 578c5e Grid: true GridProjection: false Hands: true @@ -35,10 +35,10 @@ Tooltip: true Transform: posX: -30.2243 posY: 1.63834023 - posZ: 3.85999966 + posZ: 3.86 rotX: 359.9201 - rotY: 269.998138 - rotZ: 0.0168421883 + rotY: 270.0 + rotZ: 0.0168396067 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Token Effects 6f9c99.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Token Effects 043f29.yaml similarity index 66% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Token Effects 6f9c99.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Token Effects 043f29.yaml index d5fdf3103..de9a70b15 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Token Effects 6f9c99.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Token Effects 043f29.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 266507 +CardID: 269207 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2665': + '2692': BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1478823218923925125/B379EBEB474E0F36E73E31D92D57B1A609749E00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823218923924138/A5E4FAFF7F051840BF22FC5D55120DFD388DB851/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1478823585996565980/82212EC5FFC29E7D9D1A86B86D60D9C790741B73/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996564956/6D8F60B87859D2083B4CCF23A3091F3AF5374F6C/ NumHeight: 2 NumWidth: 4 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: 6f9c99 +GUID: 043f29 Grid: true GridProjection: false Hands: true @@ -37,8 +37,8 @@ Transform: posY: 1.59753942 posZ: -10.4412022 rotX: 359.919739 - rotY: 269.9984 - rotZ: 0.01683939 + rotY: 269.999939 + rotZ: 0.0168371927 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Train Station (Arkham in Wonderland) 98b93d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Train Station (Arkham in Wonderland) 424998.yaml similarity index 65% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Train Station (Arkham in Wonderland) 98b93d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Train Station (Arkham in Wonderland) 424998.yaml index 2d76fd41c..1d7b1f0c3 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Train Station (Arkham in Wonderland) 98b93d.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Card Train Station (Arkham in Wonderland) 424998.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 266501 +CardID: 269201 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2665': + '2692': BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1478823218923925125/B379EBEB474E0F36E73E31D92D57B1A609749E00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823218923924138/A5E4FAFF7F051840BF22FC5D55120DFD388DB851/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1478823585996565980/82212EC5FFC29E7D9D1A86B86D60D9C790741B73/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996564956/6D8F60B87859D2083B4CCF23A3091F3AF5374F6C/ NumHeight: 2 NumWidth: 4 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: 98b93d +GUID: '424998' Grid: true GridProjection: false Hands: true @@ -35,10 +35,10 @@ Tooltip: true Transform: posX: -23.6766 posY: 1.63030028 - posZ: 7.56999969 + posZ: 7.569999 rotX: 359.9201 - rotY: 269.9975 - rotZ: 0.0168431178 + rotY: 269.9999 + rotZ: 0.0168396626 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a.yaml similarity index 93% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a.yaml index e2086f71f..6611abdfa 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a.yaml @@ -9,7 +9,7 @@ ContainedObjects: - !include 'Custom_Model_Bag Set-aside 7a167a/Card The Looking-Glass 721d1e.yaml' - !include 'Custom_Model_Bag Set-aside 7a167a/Card The White Rabbit 45909e.yaml' - !include 'Custom_Model_Bag Set-aside 7a167a/Deck Cheshire Cat Encounter Set fddec5.yaml' -- !include 'Custom_Model_Bag Set-aside 7a167a/Card Abandoned House a7deb8.yaml' +- !include 'Custom_Model_Bag Set-aside 7a167a/Card Abandoned House 156789.yaml' CustomMesh: CastShadows: true ColliderURL: '' @@ -51,12 +51,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 1.72339416 - posY: 1.5580827 - posZ: 14.314 - rotX: 359.9551 + posX: 1.696601 + posY: 1.55831671 + posZ: 14.2792025 + rotX: 359.955139 rotY: 225.008545 - rotZ: 0.06866405 + rotZ: 0.06866473 scaleX: 2.0 scaleY: 2.0 scaleZ: 2.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Card Abandoned House a7deb8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Card Abandoned House 156789.yaml similarity index 58% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Card Abandoned House a7deb8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Card Abandoned House 156789.yaml index 8a7a78286..36ed238e4 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Card Abandoned House a7deb8.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Card Abandoned House 156789.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 266500 +CardID: 269200 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2665': + '2692': BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1478823218923925125/B379EBEB474E0F36E73E31D92D57B1A609749E00/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823218923924138/A5E4FAFF7F051840BF22FC5D55120DFD388DB851/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1478823585996565980/82212EC5FFC29E7D9D1A86B86D60D9C790741B73/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996564956/6D8F60B87859D2083B4CCF23A3091F3AF5374F6C/ NumHeight: 2 NumWidth: 4 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: a7deb8 +GUID: '156789' Grid: true GridProjection: false Hands: true @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 1.69641519 - posY: 3.65655661 - posZ: 14.2788382 - rotX: 359.954773 - rotY: 224.999924 - rotZ: 180.068909 + posX: 1.69648278 + posY: 3.65823245 + posZ: 14.2788811 + rotX: 359.982819 + rotY: 224.991669 + rotZ: 180.0643 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Card Looking-Glass Book d0b68d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Card Looking-Glass Book d0b68d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Card Looking-Glass Book d0b68d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Card Looking-Glass Book d0b68d.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Card Strange Refreshments 7ae28f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Card Strange Refreshments 7ae28f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Card Strange Refreshments 7ae28f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Card Strange Refreshments 7ae28f.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Card The Looking-Glass 721d1e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Card The Looking-Glass 721d1e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Card The Looking-Glass 721d1e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Card The Looking-Glass 721d1e.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Card The White Rabbit 45909e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Card The White Rabbit 45909e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Card The White Rabbit 45909e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Card The White Rabbit 45909e.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Deck Cheshire Cat Encounter Set fddec5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Deck Cheshire Cat Encounter Set fddec5.yaml similarity index 98% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Deck Cheshire Cat Encounter Set fddec5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Deck Cheshire Cat Encounter Set fddec5.yaml index f1afef0db..31750cac3 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Deck Cheshire Cat Encounter Set fddec5.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Model_Bag Set-aside 7a167a/Deck Cheshire Cat Encounter Set fddec5.yaml @@ -318,12 +318,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 3.6600852 - posY: 3.6989398 - posZ: 14.68968 - rotX: 359.561157 - rotY: 225.006485 - rotZ: 0.06896066 + posX: 1.69647729 + posY: 3.69308615 + posZ: 14.2788229 + rotX: 359.962341 + rotY: 225.000153 + rotZ: 0.0552298278 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 3ee63d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 3ee63d.yaml new file mode 100644 index 000000000..e2d516d9d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 3ee63d.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 3ee63d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -26.8411 + posY: 1.61599445 + posZ: -9.8295 + rotX: 359.93924 + rotY: 239.989258 + rotZ: 0.05452808 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 4dcc72.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 4dcc72.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 4dcc72.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 4dcc72.yaml index 7f0b897f8..42510f95c 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 4dcc72.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 4dcc72.yaml @@ -123,12 +123,12 @@ States: Sticky: true Tooltip: true Transform: - posX: -31.4565487 - posY: 1.62289691 - posZ: -7.699027 - rotX: 0.0168512054 + posX: -31.5447 + posY: 1.62315822 + posZ: -7.771 + rotX: 0.016851183 rotY: 179.9914 - rotZ: 0.0799379647 + rotZ: 0.0799394846 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 601e77.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 601e77.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 601e77.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 601e77.yaml index 79634fb0c..3f200bc6e 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 601e77.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 601e77.yaml @@ -123,12 +123,12 @@ States: Sticky: true Tooltip: true Transform: - posX: -26.5792847 - posY: 1.61670947 - posZ: -5.67021847 + posX: -26.6576 + posY: 1.61694109 + posZ: -5.73810148 rotX: 359.9224 - rotY: 300.0097 - rotZ: 359.9747 + rotY: 300.0096 + rotZ: 359.97467 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 6585c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 6585c5.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 6585c5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 6585c5.yaml index 0ed542f3d..ef57f649d 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 6585c5.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 6585c5.yaml @@ -123,9 +123,9 @@ States: Sticky: true Tooltip: true Transform: - posX: -26.6749954 - posY: 1.6213001 - posZ: 9.63641 + posX: -26.7535 + posY: 1.62158239 + posZ: 9.5994 rotX: 359.9224 rotY: 299.994843 rotZ: 359.97467 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 7234af.yaml similarity index 95% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 7234af.yaml index 3742ff798..d1afceea4 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 7234af.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 7234af.yaml @@ -123,12 +123,12 @@ States: Sticky: true Tooltip: true Transform: - posX: -31.6210155 - posY: 1.62768722 - posZ: 7.76199 - rotX: 0.0168176573 - rotY: 180.0155 - rotZ: 0.07994545 + posX: -31.7095 + posY: 1.62794113 + posZ: 7.72119951 + rotX: 0.01681756 + rotY: 180.015457 + rotZ: 0.07994402 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 9d8748.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 9d8748.yaml similarity index 95% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 9d8748.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 9d8748.yaml index 3d424070c..6ccb63c00 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 9d8748.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile 9d8748.yaml @@ -123,12 +123,12 @@ States: Sticky: true Tooltip: true Transform: - posX: -27.0169029 - posY: 1.62060165 - posZ: 5.50144863 - rotX: 359.9393 - rotY: 239.8966 - rotZ: 0.05469999 + posX: -27.0961 + posY: 1.62084246 + posZ: 5.45610046 + rotX: 359.939331 + rotY: 239.896576 + rotZ: 0.05462666 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile a38f02.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile a38f02.yaml similarity index 95% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile a38f02.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile a38f02.yaml index 2ce6ee05f..691ab27c1 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile a38f02.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Custom_Tile a38f02.yaml @@ -123,12 +123,12 @@ States: Sticky: true Tooltip: true Transform: - posX: -31.648962 - posY: 1.6253922 - posZ: -0.189971492 - rotX: 0.0168438517 - rotY: 179.9967 - rotZ: 0.0799393356 + posX: -31.7375 + posY: 1.62563837 + posZ: -0.246799931 + rotX: 0.01684407 + rotY: 179.996475 + rotZ: 0.0799385458 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Deck Act Deck 05075d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Deck Act Deck 05075d.yaml similarity index 98% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Deck Act Deck 05075d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Deck Act Deck 05075d.yaml index dd3bd26f9..748bcc731 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Deck Act Deck 05075d.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Deck Act Deck 05075d.yaml @@ -218,12 +218,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -2.67741966 - posY: 1.62400782 - posZ: -5.023775 - rotX: 0.0168355256 + posX: -2.68859982 + posY: 1.62393069 + posZ: -5.0485 + rotX: 0.01683552 rotY: 180.0 - rotZ: 0.08025614 + rotZ: 0.08025608 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Deck Encounter Deck f48f95.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Deck Encounter Deck f48f95.yaml similarity index 99% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Deck Encounter Deck f48f95.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Deck Encounter Deck f48f95.yaml index a4495968c..ee9f966e3 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Deck Encounter Deck f48f95.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 1 Arkham in Wonderland 18aa54/Deck Encounter Deck f48f95.yaml @@ -1476,9 +1476,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.90816569 - posY: 1.75881112 - posZ: 5.783566 + posX: -3.9275 + posY: 1.75882053 + posZ: 5.757001 rotX: 359.919739 rotY: 269.999939 rotZ: 180.016815 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572.ttslua diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd.yaml similarity index 90% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd.yaml index ba484aa5b..c98b157e7 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: b: 0.5647059 - g: 0.05098036 - r: 0.250980347 + g: 0.0509802774 + r: 0.250980228 ContainedObjects: - !include 'Bag Wonderland Banes 28fadd/Card The White Queen 687840.yaml' - !include 'Bag Wonderland Banes 28fadd/Card The Lion and the Unicorn c53461.yaml' @@ -32,11 +32,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -0.192699358 - posY: 1.39793181 - posZ: 4.20410156 + posX: -0.192698717 + posY: 1.397933 + posZ: 4.204102 rotX: 359.983154 - rotY: 0.0008200462 + rotY: 0.00083814247 rotZ: 359.919678 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card Humpty Dumpty 423030.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card Humpty Dumpty 423030.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card Humpty Dumpty 423030.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card Humpty Dumpty 423030.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card The Caterpillar f63593.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card The Caterpillar f63593.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card The Caterpillar f63593.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card The Caterpillar f63593.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card The Dodo 657254.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card The Dodo 657254.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card The Dodo 657254.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card The Dodo 657254.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card The Duchess 49d638.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card The Duchess 49d638.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card The Duchess 49d638.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card The Duchess 49d638.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card The Gryphon and the Mock Turtle 53c9d8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card The Gryphon and the Mock Turtle 53c9d8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card The Gryphon and the Mock Turtle 53c9d8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card The Gryphon and the Mock Turtle 53c9d8.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card The Lion and the Unicorn c53461.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card The Lion and the Unicorn c53461.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card The Lion and the Unicorn c53461.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card The Lion and the Unicorn c53461.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card The White Queen 687840.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card The White Queen 687840.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card The White Queen 687840.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Banes 28fadd/Card The White Queen 687840.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d.yaml similarity index 94% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d.yaml index d36dd8169..9089431e4 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d.yaml @@ -32,11 +32,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -0.213199034 - posY: 1.39879966 + posX: -0.213199079 + posY: 1.39879942 posZ: 7.055902 rotX: 359.983154 - rotY: 0.0007603897 + rotY: 0.000743413751 rotZ: 359.919678 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card Humpty Dumpty aa4c20.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card Humpty Dumpty aa4c20.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card Humpty Dumpty aa4c20.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card Humpty Dumpty aa4c20.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card The Caterpillar 3bf123.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card The Caterpillar 3bf123.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card The Caterpillar 3bf123.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card The Caterpillar 3bf123.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card The Dodo d57095.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card The Dodo d57095.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card The Dodo d57095.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card The Dodo d57095.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card The Duchess 93d9b6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card The Duchess 93d9b6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card The Duchess 93d9b6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card The Duchess 93d9b6.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card The Gryphon and the Mock Turtle 810020.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card The Gryphon and the Mock Turtle 810020.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card The Gryphon and the Mock Turtle 810020.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card The Gryphon and the Mock Turtle 810020.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card The Lion and the Unicorn 3abcb6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card The Lion and the Unicorn 3abcb6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card The Lion and the Unicorn 3abcb6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card The Lion and the Unicorn 3abcb6.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card The White Queen fca0a0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card The White Queen fca0a0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card The White Queen fca0a0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Bag Wonderland Boons fdf01d/Card The White Queen fca0a0.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Bill the Lizard 2fafda.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Bill the Lizard 2fafda.yaml similarity index 95% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Bill the Lizard 2fafda.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Bill the Lizard 2fafda.yaml index 70dd2dfc6..452a1dfb5 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Bill the Lizard 2fafda.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Bill the Lizard 2fafda.yaml @@ -35,10 +35,10 @@ Tooltip: true Transform: posX: -21.8794 posY: 1.62487876 - posZ: -2.35020041 + posZ: -2.35020018 rotX: 359.9201 rotY: 269.998657 - rotZ: 0.0168415979 + rotZ: 0.0168415532 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Rocky Outcropping 9349c4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Rocky Outcropping 9349c4.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Rocky Outcropping 9349c4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Rocky Outcropping 9349c4.yaml index 37da7aaad..224ccc02d 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Rocky Outcropping 9349c4.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Rocky Outcropping 9349c4.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: -30.2243 posY: 1.63494289 - posZ: -7.70000029 + posZ: -7.7 rotX: 359.9201 rotY: 270.0 rotZ: 180.01683 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Sandy Strand 16aa00.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Sandy Strand 16aa00.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Sandy Strand 16aa00.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Sandy Strand 16aa00.yaml index c07f26526..a03ddd5de 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Sandy Strand 16aa00.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Sandy Strand 16aa00.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: -30.2243 posY: 1.63719749 - posZ: -0.0284999 + posZ: -0.0284998249 rotX: 359.9201 rotY: 269.999023 rotZ: 180.01683 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Sheltered Shallows fc3b2e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Sheltered Shallows fc3b2e.yaml similarity index 95% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Sheltered Shallows fc3b2e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Sheltered Shallows fc3b2e.yaml index 82789ac4e..7be3901f8 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Sheltered Shallows fc3b2e.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Sheltered Shallows fc3b2e.yaml @@ -35,9 +35,9 @@ Tooltip: true Transform: posX: -36.7732 posY: 1.64747226 - posZ: 3.86000037 + posZ: 3.86000013 rotX: 359.9201 - rotY: 270.000763 + rotY: 270.000916 rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Tidal Pools 4473c2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Tidal Pools 4473c2.yaml similarity index 95% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Tidal Pools 4473c2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Tidal Pools 4473c2.yaml index f7990dfb3..2ddea7b6f 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Tidal Pools 4473c2.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Tidal Pools 4473c2.yaml @@ -35,9 +35,9 @@ Tooltip: true Transform: posX: -30.2242 posY: 1.6394304 - posZ: 7.56990051 + posZ: 7.5699 rotX: 359.9201 - rotY: 269.99762 + rotY: 269.9976 rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Token Effects 49c9d0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Token Effects 49c9d0.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Token Effects 49c9d0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Token Effects 49c9d0.yaml index 5a9112f9c..2913b6bb1 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Token Effects 49c9d0.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Token Effects 49c9d0.yaml @@ -33,7 +33,7 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.95600057 + posX: -3.95600033 posY: 1.59753942 posZ: -10.4413013 rotX: 359.919739 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Twining Reef 834308.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Twining Reef 834308.yaml similarity index 95% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Twining Reef 834308.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Twining Reef 834308.yaml index 15518280a..37369a9f2 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Twining Reef 834308.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card Twining Reef 834308.yaml @@ -34,8 +34,8 @@ Sticky: true Tooltip: true Transform: posX: -36.7732 - posY: 1.64521229 - posZ: -3.82999921 + posY: 1.64521217 + posZ: -3.82999945 rotX: 359.9201 rotY: 270.0011 rotZ: 180.01683 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card White Rabbit's House 5b26d9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card White Rabbit's House 5b26d9.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card White Rabbit's House 5b26d9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card White Rabbit's House 5b26d9.yaml index 966ffdf90..c20231cb3 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card White Rabbit's House 5b26d9.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Card White Rabbit's House 5b26d9.yaml @@ -35,7 +35,7 @@ Tooltip: true Transform: posX: -23.6765 posY: 1.62806654 - posZ: -0.0299996082 + posZ: -0.02999972 rotX: 359.9201 rotY: 270.0 rotZ: 180.01683 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/CardCustom The Cheshire Cat 4cb00e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/CardCustom The Cheshire Cat 4cb00e.yaml similarity index 89% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/CardCustom The Cheshire Cat 4cb00e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/CardCustom The Cheshire Cat 4cb00e.yaml index 999f92750..0ead74645 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/CardCustom The Cheshire Cat 4cb00e.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/CardCustom The Cheshire Cat 4cb00e.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -7.53120041 - posY: 1.60728955 + posX: -7.53120136 + posY: 1.60729992 posZ: 5.75750065 - rotX: 359.921417 - rotY: 269.99762 - rotZ: 0.0168079827 + rotX: 359.920258 + rotY: 269.9976 + rotZ: 0.0163281281 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d.yaml index b5c519ea4..7acd38644 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d.yaml @@ -52,11 +52,11 @@ Sticky: true Tooltip: true Transform: posX: 1.69630075 - posY: 1.55831647 + posY: 1.55831718 posZ: 14.2790022 rotX: 359.955139 rotY: 225.007584 - rotZ: 0.06866558 + rotZ: 0.06866579 scaleX: 2.0 scaleY: 2.0 scaleZ: 2.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d/Card Deep Lurker e4c419.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d/Card Deep Lurker e4c419.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d/Card Deep Lurker e4c419.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d/Card Deep Lurker e4c419.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d/Card The Carpenter 2d0ff1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d/Card The Carpenter 2d0ff1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d/Card The Carpenter 2d0ff1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d/Card The Carpenter 2d0ff1.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d/Card The Eldest Oyster 39d3f8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d/Card The Eldest Oyster 39d3f8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d/Card The Eldest Oyster 39d3f8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d/Card The Eldest Oyster 39d3f8.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d/Card The Walrus f00b9a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d/Card The Walrus f00b9a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d/Card The Walrus f00b9a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d/Card The Walrus f00b9a.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d/Deck Walrus and Carpenter Encounter Set 1cf616.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d/Deck Walrus and Carpenter Encounter Set 1cf616.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d/Deck Walrus and Carpenter Encounter Set 1cf616.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Model_Bag Set-aside 03732d/Deck Walrus and Carpenter Encounter Set 1cf616.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile 61ef75.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile 61ef75.yaml similarity index 98% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile 61ef75.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile 61ef75.yaml index 7a02f2956..4df701a8c 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile 61ef75.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile 61ef75.yaml @@ -125,10 +125,10 @@ Tooltip: true Transform: posX: -26.8521 posY: 1.61883175 - posZ: -0.227700263 + posZ: -0.227700233 rotX: 359.9201 rotY: 270.009918 - rotZ: 0.0168540981 + rotZ: 0.0168537013 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile 7234af.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile 7234af.yaml index 45729d85e..8ebce3884 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile 7234af.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile 7234af.yaml @@ -124,10 +124,10 @@ Sticky: true Tooltip: true Transform: posX: -33.2482 - posY: 1.62834632 - posZ: 1.79859972 + posY: 1.6283462 + posZ: 1.79859984 rotX: 359.9224 - rotY: 300.006744 + rotY: 300.006683 rotZ: 359.97467 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile c6db6c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile c6db6c.yaml similarity index 95% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile c6db6c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile c6db6c.yaml index 0dca7d428..48e4f5789 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile c6db6c.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile c6db6c.yaml @@ -123,12 +123,12 @@ States: Sticky: true Tooltip: true Transform: - posX: -27.0907631 - posY: 1.59755158 - posZ: -3.65280986 - rotX: 356.861145 - rotY: 225.17424 - rotZ: 350.098846 + posX: -27.0975 + posY: 1.61816883 + posZ: -3.6479 + rotX: 359.9554 + rotY: 225.001663 + rotZ: 0.06837986 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile cb80d8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile cb80d8.yaml similarity index 98% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile cb80d8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile cb80d8.yaml index fa01f8e1f..06ed9f3de 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile cb80d8.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile cb80d8.yaml @@ -125,10 +125,10 @@ Tooltip: true Transform: posX: -33.7089 posY: 1.627884 - posZ: -1.95979965 + posZ: -1.95979989 rotX: 359.9392 rotY: 240.014191 - rotZ: 0.054500863 + rotZ: 0.05450242 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile cda64f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile cda64f.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile cda64f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile cda64f.yaml index bb681bec1..021aef21f 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile cda64f.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile cda64f.yaml @@ -125,10 +125,10 @@ Tooltip: true Transform: posX: -30.2244 posY: 1.62247539 - posZ: -3.83 - rotX: 0.0167352166 - rotY: 180.0745 - rotZ: 0.07997558 + posZ: -3.82999969 + rotX: 0.0167356171 + rotY: 180.0743 + rotZ: 0.07996211 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile dc83e6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile dc83e6.yaml similarity index 95% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile dc83e6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile dc83e6.yaml index e73ffc789..bec6bd9dd 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile dc83e6.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile dc83e6.yaml @@ -123,12 +123,12 @@ States: Sticky: true Tooltip: true Transform: - posX: -26.9132557 - posY: 1.59760237 - posZ: 3.82146883 - rotX: 5.43773651 - rotY: 314.429138 - rotZ: 357.523956 + posX: -26.9233 + posY: 1.62012124 + posZ: 3.822 + rotX: 359.93158 + rotY: 315.0007 + rotZ: 359.9554 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile ec02eb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile ec02eb.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile ec02eb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile ec02eb.yaml index 864eff674..b450edf84 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile ec02eb.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile ec02eb.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -38.3526 - posY: 1.6349448 - posZ: 0.0333003178 - rotX: 0.0168256052 - rotY: 180.009766 - rotZ: 0.079942964 + posY: 1.634945 + posZ: 0.0333004929 + rotX: 0.0168258846 + rotY: 180.009674 + rotZ: 0.07995691 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile f38e7f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile f38e7f.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile f38e7f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile f38e7f.yaml index 063fec0e4..5ccfc9c62 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile f38e7f.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Custom_Tile f38e7f.yaml @@ -125,10 +125,10 @@ Tooltip: true Transform: posX: -30.2243 posY: 1.62473524 - posZ: 3.86000037 - rotX: 0.0166743565 - rotY: 180.118164 - rotZ: 0.07997457 + posZ: 3.86000085 + rotX: 0.01667447 + rotY: 180.1181 + rotZ: 0.0799752 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Deck Act Deck fe9391.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Deck Act Deck fe9391.yaml similarity index 95% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Deck Act Deck fe9391.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Deck Act Deck fe9391.yaml index 4b9bfc483..22c9e62a3 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Deck Act Deck fe9391.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Deck Act Deck fe9391.yaml @@ -4,51 +4,6 @@ ColorDiffuse: g: 0.713235259 r: 0.713235259 ContainedObjects: -- Autoraise: true - CardID: 266238 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1478823218923886366/DD38027FEBB6486E6A00C8D08C2780BB1E167582/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823218923882613/D94014A41D35C6609155D0C7F810A30BB3EB04CC/ - NumHeight: 6 - NumWidth: 8 - Type: 0 - UniqueBack: true - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 46843c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Act 1 - Search for the Eldest Oyster - SidewaysCard: true - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 2.348792 - posY: 1.278281 - posZ: 47.7110023 - rotX: 0.0168912634 - rotY: 180.000031 - rotZ: 179.97998 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' - Autoraise: true CardID: 266236 ColorDiffuse: @@ -139,6 +94,51 @@ ContainedObjects: scaleY: 1.0 scaleZ: 1.0 XmlUI: '' +- Autoraise: true + CardID: 266238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478823218923886366/DD38027FEBB6486E6A00C8D08C2780BB1E167582/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823218923882613/D94014A41D35C6609155D0C7F810A30BB3EB04CC/ + NumHeight: 6 + NumWidth: 8 + Type: 0 + UniqueBack: true + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 46843c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Act 1 - Search for the Eldest Oyster + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.68852282 + posY: 1.66219378 + posZ: -5.04852962 + rotX: 0.0171521418 + rotY: 179.999634 + rotZ: 0.06710118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' CustomDeck: '2662': BackIsHidden: false @@ -149,9 +149,9 @@ CustomDeck: Type: 0 UniqueBack: true DeckIDs: -- 266238 - 266236 - 266237 +- 266238 Description: '' DragSelectable: true GMNotes: '' @@ -175,9 +175,9 @@ Transform: posX: -2.68859982 posY: 1.61911666 posZ: -5.04850054 - rotX: 0.0168355852 - rotY: 180.000015 - rotZ: 0.08025599 + rotX: 0.01683557 + rotY: 180.000092 + rotZ: 0.08025608 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Deck Agenda Deck 704d0c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Deck Agenda Deck 704d0c.yaml similarity index 98% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Deck Agenda Deck 704d0c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Deck Agenda Deck 704d0c.yaml index a4320891a..71c57a673 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Deck Agenda Deck 704d0c.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Deck Agenda Deck 704d0c.yaml @@ -128,10 +128,10 @@ Tooltip: true Transform: posX: -2.7247 posY: 1.61594641 - posZ: 0.3734004 - rotX: 0.0168371182 + posZ: 0.3734005 + rotX: 0.0168371126 rotY: 179.999008 - rotZ: 0.08025548 + rotZ: 0.0802554563 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Deck Encounter Deck 4b824f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Deck Encounter Deck 4b824f.yaml similarity index 99% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Deck Encounter Deck 4b824f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Deck Encounter Deck 4b824f.yaml index 284bfa35d..21303f2f1 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-A A Sea of Troubles 952572/Deck Encounter Deck 4b824f.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-A A Sea of Troubles 952572/Deck Encounter Deck 4b824f.yaml @@ -1338,8 +1338,8 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.9272 - posY: 1.744379 + posX: -3.92720032 + posY: 1.74437892 posZ: 5.760801 rotX: 359.919739 rotY: 269.999756 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8.ttslua diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card Humpty Dumpty 423030.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card Humpty Dumpty 423030.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card Humpty Dumpty 423030.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card Humpty Dumpty 423030.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card The Caterpillar f63593.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card The Caterpillar f63593.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card The Caterpillar f63593.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card The Caterpillar f63593.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card The Dodo 657254.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card The Dodo 657254.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card The Dodo 657254.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card The Dodo 657254.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card The Duchess 49d638.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card The Duchess 49d638.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card The Duchess 49d638.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card The Duchess 49d638.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card The Gryphon and the Mock Turtle 53c9d8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card The Gryphon and the Mock Turtle 53c9d8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card The Gryphon and the Mock Turtle 53c9d8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card The Gryphon and the Mock Turtle 53c9d8.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card The Lion and the Unicorn c53461.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card The Lion and the Unicorn c53461.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card The Lion and the Unicorn c53461.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card The Lion and the Unicorn c53461.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card The White Queen 687840.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card The White Queen 687840.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card The White Queen 687840.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Banes df6263/Card The White Queen 687840.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card Humpty Dumpty aa4c20.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card Humpty Dumpty aa4c20.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card Humpty Dumpty aa4c20.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card Humpty Dumpty aa4c20.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card The Caterpillar 3bf123.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card The Caterpillar 3bf123.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card The Caterpillar 3bf123.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card The Caterpillar 3bf123.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card The Dodo d57095.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card The Dodo d57095.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card The Dodo d57095.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card The Dodo d57095.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card The Duchess 93d9b6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card The Duchess 93d9b6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card The Duchess 93d9b6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card The Duchess 93d9b6.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card The Gryphon and the Mock Turtle 810020.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card The Gryphon and the Mock Turtle 810020.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card The Gryphon and the Mock Turtle 810020.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card The Gryphon and the Mock Turtle 810020.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card The Lion and the Unicorn 3abcb6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card The Lion and the Unicorn 3abcb6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card The Lion and the Unicorn 3abcb6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card The Lion and the Unicorn 3abcb6.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card The White Queen fca0a0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card The White Queen fca0a0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card The White Queen fca0a0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Bag Wonderland Boons 5578b4/Card The White Queen fca0a0.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Card Center of the Table fc9015.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Card Center of the Table fc9015.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Card Center of the Table fc9015.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Card Center of the Table fc9015.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Card Head of the Table a00b51.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Card Head of the Table a00b51.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Card Head of the Table a00b51.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Card Head of the Table a00b51.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Card The Hare e777ab.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Card The Hare e777ab.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Card The Hare e777ab.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Card The Hare e777ab.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Card The Hatter 5245cc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Card The Hatter 5245cc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Card The Hatter 5245cc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Card The Hatter 5245cc.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Card Token Effects 7c7b41.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Card Token Effects 7c7b41.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Card Token Effects 7c7b41.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Card Token Effects 7c7b41.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/CardCustom The Cheshire Cat 4cb00e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/CardCustom The Cheshire Cat 4cb00e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/CardCustom The Cheshire Cat 4cb00e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/CardCustom The Cheshire Cat 4cb00e.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Custom_Model_Bag Set-aside 6206c4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Custom_Model_Bag Set-aside 6206c4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Custom_Model_Bag Set-aside 6206c4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Custom_Model_Bag Set-aside 6206c4.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Deck 64340f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Deck 64340f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Deck 64340f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Deck 64340f.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Deck 'A' Agenda Deck 4a00be.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Deck 'A' Agenda Deck 4a00be.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Deck 'A' Agenda Deck 4a00be.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Deck 'A' Agenda Deck 4a00be.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Deck 'C' Agenda Deck fbbcb5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Deck 'C' Agenda Deck fbbcb5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Deck 'C' Agenda Deck fbbcb5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Deck 'C' Agenda Deck fbbcb5.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Deck Encounter Deck 823c2a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Deck Encounter Deck 823c2a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Deck Encounter Deck 823c2a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Deck Encounter Deck 823c2a.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Deck Seat Deck e91ac5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Deck Seat Deck e91ac5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Deck Seat Deck e91ac5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-B Tempest in a Teapot 8d88c8/Deck Seat Deck e91ac5.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793.ttslua diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card Humpty Dumpty 423030.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card Humpty Dumpty 423030.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card Humpty Dumpty 423030.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card Humpty Dumpty 423030.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card The Caterpillar f63593.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card The Caterpillar f63593.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card The Caterpillar f63593.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card The Caterpillar f63593.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card The Dodo 657254.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card The Dodo 657254.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card The Dodo 657254.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card The Dodo 657254.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card The Duchess 49d638.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card The Duchess 49d638.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card The Duchess 49d638.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card The Duchess 49d638.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card The Gryphon and the Mock Turtle 53c9d8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card The Gryphon and the Mock Turtle 53c9d8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card The Gryphon and the Mock Turtle 53c9d8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card The Gryphon and the Mock Turtle 53c9d8.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card The Lion and the Unicorn c53461.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card The Lion and the Unicorn c53461.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card The Lion and the Unicorn c53461.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card The Lion and the Unicorn c53461.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card The White Queen 687840.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card The White Queen 687840.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card The White Queen 687840.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Banes 7b9aa0/Card The White Queen 687840.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card Humpty Dumpty aa4c20.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card Humpty Dumpty aa4c20.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card Humpty Dumpty aa4c20.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card Humpty Dumpty aa4c20.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card The Caterpillar 3bf123.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card The Caterpillar 3bf123.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card The Caterpillar 3bf123.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card The Caterpillar 3bf123.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card The Dodo d57095.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card The Dodo d57095.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card The Dodo d57095.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card The Dodo d57095.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card The Duchess 93d9b6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card The Duchess 93d9b6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card The Duchess 93d9b6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card The Duchess 93d9b6.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card The Gryphon and the Mock Turtle 810020.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card The Gryphon and the Mock Turtle 810020.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card The Gryphon and the Mock Turtle 810020.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card The Gryphon and the Mock Turtle 810020.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card The Lion and the Unicorn 3abcb6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card The Lion and the Unicorn 3abcb6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card The Lion and the Unicorn 3abcb6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card The Lion and the Unicorn 3abcb6.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card The White Queen fca0a0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card The White Queen fca0a0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card The White Queen fca0a0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Bag Wonderland Boons 7e4106/Card The White Queen fca0a0.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Courtroom 9c01e5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Courtroom 9c01e5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Courtroom 9c01e5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Courtroom 9c01e5.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Croquet Grounds faef87.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Croquet Grounds faef87.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Croquet Grounds faef87.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Croquet Grounds faef87.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Dungeons 21798b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Dungeons 21798b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Dungeons 21798b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Dungeons 21798b.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Guard Barracks 233787.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Guard Barracks 233787.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Guard Barracks 233787.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Guard Barracks 233787.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Hedge Maze 6f32bd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Hedge Maze 6f32bd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Hedge Maze 6f32bd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Hedge Maze 6f32bd.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Kitchens ad9916.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Kitchens ad9916.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Kitchens ad9916.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Kitchens ad9916.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Rose Garden 40703e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Rose Garden 40703e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Rose Garden 40703e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Rose Garden 40703e.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card The King of Hearts 52f57a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card The King of Hearts 52f57a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card The King of Hearts 52f57a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card The King of Hearts 52f57a.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card The Queen of Hearts 747ada.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card The Queen of Hearts 747ada.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card The Queen of Hearts 747ada.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card The Queen of Hearts 747ada.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Throne Room cf2fec.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Throne Room cf2fec.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Throne Room cf2fec.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Throne Room cf2fec.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Token Effects a61c10.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Token Effects a61c10.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Token Effects a61c10.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Card Token Effects a61c10.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/CardCustom The Cheshire Cat 4cb00e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/CardCustom The Cheshire Cat 4cb00e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/CardCustom The Cheshire Cat 4cb00e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/CardCustom The Cheshire Cat 4cb00e.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Model_Bag Set-aside b8080f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Model_Bag Set-aside b8080f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Model_Bag Set-aside b8080f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Model_Bag Set-aside b8080f.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Model_Bag Set-aside b8080f/Card The Executioner's Axe 837146.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Model_Bag Set-aside b8080f/Card The Executioner's Axe 837146.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Model_Bag Set-aside b8080f/Card The Executioner's Axe 837146.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Model_Bag Set-aside b8080f/Card The Executioner's Axe 837146.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Model_Bag Set-aside b8080f/Card The Knave of Hearts bfaaae.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Model_Bag Set-aside b8080f/Card The Knave of Hearts bfaaae.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Model_Bag Set-aside b8080f/Card The Knave of Hearts bfaaae.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Model_Bag Set-aside b8080f/Card The Knave of Hearts bfaaae.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile 0e8e77.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile 0e8e77.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile 0e8e77.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile 0e8e77.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile 3debb3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile 3debb3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile 3debb3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile 3debb3.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile 6e1503.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile 6e1503.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile 6e1503.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile 6e1503.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile 99e917.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile 99e917.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile 99e917.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile 99e917.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile b3bb42.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile b3bb42.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile b3bb42.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile b3bb42.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile b4a41e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile b4a41e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile b4a41e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile b4a41e.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile c6b3aa.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile c6b3aa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile c6b3aa.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile c6b3aa.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile d96c2c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile d96c2c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile d96c2c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile d96c2c.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile dbc5c7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile dbc5c7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile dbc5c7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Custom_Tile dbc5c7.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Deck Act Deck 9a05d3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Deck Act Deck 9a05d3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Deck Act Deck 9a05d3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Deck Act Deck 9a05d3.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Deck Agenda Deck 4b0ccb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Deck Agenda Deck 4b0ccb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Deck Agenda Deck 4b0ccb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Deck Agenda Deck 4b0ccb.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Deck Encounter Deck c4374a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Deck Encounter Deck c4374a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Deck Encounter Deck c4374a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Deck Encounter Deck c4374a.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Deck Royal Suspicion 7f81fc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Deck Royal Suspicion 7f81fc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Deck Royal Suspicion 7f81fc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-C Bleeding Hearts 8eb793/Deck Royal Suspicion 7f81fc.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0.ttslua diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card Humpty Dumpty 423030.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card Humpty Dumpty 423030.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card Humpty Dumpty 423030.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card Humpty Dumpty 423030.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card The Caterpillar f63593.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card The Caterpillar f63593.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card The Caterpillar f63593.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card The Caterpillar f63593.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card The Dodo 657254.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card The Dodo 657254.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card The Dodo 657254.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card The Dodo 657254.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card The Duchess 49d638.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card The Duchess 49d638.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card The Duchess 49d638.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card The Duchess 49d638.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card The Gryphon and the Mock Turtle 53c9d8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card The Gryphon and the Mock Turtle 53c9d8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card The Gryphon and the Mock Turtle 53c9d8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card The Gryphon and the Mock Turtle 53c9d8.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card The Lion and the Unicorn c53461.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card The Lion and the Unicorn c53461.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card The Lion and the Unicorn c53461.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card The Lion and the Unicorn c53461.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card The White Queen 687840.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card The White Queen 687840.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card The White Queen 687840.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Banes 05a180/Card The White Queen 687840.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card Humpty Dumpty aa4c20.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card Humpty Dumpty aa4c20.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card Humpty Dumpty aa4c20.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card Humpty Dumpty aa4c20.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card The Caterpillar 3bf123.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card The Caterpillar 3bf123.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card The Caterpillar 3bf123.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card The Caterpillar 3bf123.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card The Dodo d57095.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card The Dodo d57095.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card The Dodo d57095.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card The Dodo d57095.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card The Duchess 93d9b6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card The Duchess 93d9b6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card The Duchess 93d9b6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card The Duchess 93d9b6.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card The Gryphon and the Mock Turtle 810020.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card The Gryphon and the Mock Turtle 810020.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card The Gryphon and the Mock Turtle 810020.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card The Gryphon and the Mock Turtle 810020.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card The Lion and the Unicorn 3abcb6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card The Lion and the Unicorn 3abcb6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card The Lion and the Unicorn 3abcb6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card The Lion and the Unicorn 3abcb6.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card The White Queen fca0a0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card The White Queen fca0a0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card The White Queen fca0a0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Bag Wonderland Boons cefd6d/Card The White Queen fca0a0.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card Field of Chasms 568cd1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card Field of Chasms 568cd1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card Field of Chasms 568cd1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card Field of Chasms 568cd1.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card Mound of Crags 55926f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card Mound of Crags 55926f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card Mound of Crags 55926f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card Mound of Crags 55926f.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card Narrow Valley a2b293.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card Narrow Valley a2b293.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card Narrow Valley a2b293.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card Narrow Valley a2b293.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card The Baker's Trail 987db7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card The Baker's Trail 987db7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card The Baker's Trail 987db7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card The Baker's Trail 987db7.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card The Bellman e4c753.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card The Bellman e4c753.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card The Bellman e4c753.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card The Bellman e4c753.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card The Wabe 9c1695.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card The Wabe 9c1695.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card The Wabe 9c1695.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card The Wabe 9c1695.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card Token Effects d191c0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card Token Effects d191c0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card Token Effects d191c0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card Token Effects d191c0.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card Tumtum Tree 5e7914.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card Tumtum Tree 5e7914.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card Tumtum Tree 5e7914.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Card Tumtum Tree 5e7914.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/CardCustom The Cheshire Cat 4cb00e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/CardCustom The Cheshire Cat 4cb00e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/CardCustom The Cheshire Cat 4cb00e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/CardCustom The Cheshire Cat 4cb00e.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Model_Bag Set-aside bc5d92.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Model_Bag Set-aside bc5d92.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Model_Bag Set-aside bc5d92.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Model_Bag Set-aside bc5d92.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Model_Bag Set-aside bc5d92/Card The Jabberwock 428ace.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Model_Bag Set-aside bc5d92/Card The Jabberwock 428ace.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Model_Bag Set-aside bc5d92/Card The Jabberwock 428ace.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Model_Bag Set-aside bc5d92/Card The Jabberwock 428ace.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Model_Bag Set-aside bc5d92/Card The Vorpal Blade 81c112.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Model_Bag Set-aside bc5d92/Card The Vorpal Blade 81c112.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Model_Bag Set-aside bc5d92/Card The Vorpal Blade 81c112.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Model_Bag Set-aside bc5d92/Card The Vorpal Blade 81c112.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Model_Bag Set-aside bc5d92/Deck Jabberwock Encounter Set 79a96e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Model_Bag Set-aside bc5d92/Deck Jabberwock Encounter Set 79a96e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Model_Bag Set-aside bc5d92/Deck Jabberwock Encounter Set 79a96e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Model_Bag Set-aside bc5d92/Deck Jabberwock Encounter Set 79a96e.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Tile 68cd1c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Tile 68cd1c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Tile 68cd1c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Tile 68cd1c.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Tile bad182.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Tile bad182.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Tile bad182.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Tile bad182.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Tile d87618.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Tile d87618.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Tile d87618.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Custom_Tile d87618.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Deck b84a02.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Deck b84a02.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Deck b84a02.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Deck b84a02.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Deck f25ab5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Deck f25ab5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Deck f25ab5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Deck f25ab5.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Deck Act Deck db3024.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Deck Act Deck db3024.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Deck Act Deck db3024.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Deck Act Deck db3024.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Deck Agenda Deck 61a4f5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Deck Agenda Deck 61a4f5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Deck Agenda Deck 61a4f5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Deck Agenda Deck 61a4f5.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Deck Encounter Deck ed0e09.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Deck Encounter Deck ed0e09.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Deck Encounter Deck ed0e09.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Deck Encounter Deck ed0e09.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Notecard Trail Deck Setup 32fe30.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Notecard Trail Deck Setup 32fe30.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Notecard Trail Deck Setup 32fe30.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-D Wild Snark Chase 9e33a0/Notecard Trail Deck Setup 32fe30.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6.ttslua diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card Humpty Dumpty 423030.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card Humpty Dumpty 423030.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card Humpty Dumpty 423030.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card Humpty Dumpty 423030.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card The Caterpillar f63593.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card The Caterpillar f63593.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card The Caterpillar f63593.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card The Caterpillar f63593.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card The Dodo 657254.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card The Dodo 657254.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card The Dodo 657254.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card The Dodo 657254.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card The Duchess 49d638.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card The Duchess 49d638.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card The Duchess 49d638.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card The Duchess 49d638.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card The Gryphon and the Mock Turtle 53c9d8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card The Gryphon and the Mock Turtle 53c9d8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card The Gryphon and the Mock Turtle 53c9d8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card The Gryphon and the Mock Turtle 53c9d8.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card The Lion and the Unicorn c53461.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card The Lion and the Unicorn c53461.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card The Lion and the Unicorn c53461.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card The Lion and the Unicorn c53461.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card The White Queen 687840.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card The White Queen 687840.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card The White Queen 687840.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Banes 28ed0c/Card The White Queen 687840.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card Humpty Dumpty aa4c20.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card Humpty Dumpty aa4c20.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card Humpty Dumpty aa4c20.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card Humpty Dumpty aa4c20.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card The Caterpillar 3bf123.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card The Caterpillar 3bf123.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card The Caterpillar 3bf123.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card The Caterpillar 3bf123.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card The Dodo d57095.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card The Dodo d57095.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card The Dodo d57095.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card The Dodo d57095.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card The Duchess 93d9b6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card The Duchess 93d9b6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card The Duchess 93d9b6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card The Duchess 93d9b6.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card The Gryphon and the Mock Turtle 810020.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card The Gryphon and the Mock Turtle 810020.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card The Gryphon and the Mock Turtle 810020.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card The Gryphon and the Mock Turtle 810020.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card The Lion and the Unicorn 3abcb6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card The Lion and the Unicorn 3abcb6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card The Lion and the Unicorn 3abcb6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card The Lion and the Unicorn 3abcb6.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card The White Queen fca0a0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card The White Queen fca0a0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card The White Queen fca0a0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Bag Wonderland Boons f451c5/Card The White Queen fca0a0.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Agenda 1 - Brother Against Brother 1b4b8f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Agenda 1 - Brother Against Brother 1b4b8f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Agenda 1 - Brother Against Brother 1b4b8f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Agenda 1 - Brother Against Brother 1b4b8f.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card East Hill e84d32.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card East Hill e84d32.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card East Hill e84d32.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card East Hill e84d32.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Northeast Slope 99beaa.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Northeast Slope 99beaa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Northeast Slope 99beaa.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Northeast Slope 99beaa.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Northeast Slope d79513.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Northeast Slope d79513.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Northeast Slope d79513.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Northeast Slope d79513.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Northwest Slope 0def3d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Northwest Slope 0def3d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Northwest Slope 0def3d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Northwest Slope 0def3d.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Northwest Slope 4291ec.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Northwest Slope 4291ec.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Northwest Slope 4291ec.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Northwest Slope 4291ec.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Overgrown Dell 36dda2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Overgrown Dell 36dda2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Overgrown Dell 36dda2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Overgrown Dell 36dda2.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Southeast Slope cc4550.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Southeast Slope cc4550.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Southeast Slope cc4550.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Southeast Slope cc4550.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Southeast Slope f02b86.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Southeast Slope f02b86.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Southeast Slope f02b86.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Southeast Slope f02b86.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Southwest Slope 6f9b24.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Southwest Slope 6f9b24.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Southwest Slope 6f9b24.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Southwest Slope 6f9b24.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Southwest Slope b45324.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Southwest Slope b45324.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Southwest Slope b45324.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Southwest Slope b45324.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Token Effects 576bb8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Token Effects 576bb8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Token Effects 576bb8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Token Effects 576bb8.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Tweedledee c3a084.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Tweedledee c3a084.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Tweedledee c3a084.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Tweedledee c3a084.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Tweedledum 6d59b5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Tweedledum 6d59b5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Tweedledum 6d59b5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card Tweedledum 6d59b5.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card West Hill 4dcefb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card West Hill 4dcefb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card West Hill 4dcefb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Card West Hill 4dcefb.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/CardCustom The Cheshire Cat 4cb00e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/CardCustom The Cheshire Cat 4cb00e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/CardCustom The Cheshire Cat 4cb00e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/CardCustom The Cheshire Cat 4cb00e.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Model_Bag Set-aside 6f4f72.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Model_Bag Set-aside 6f4f72.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Model_Bag Set-aside 6f4f72.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Model_Bag Set-aside 6f4f72.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Model_Bag Set-aside 6f4f72/Card Monstrous Crow 86267e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Model_Bag Set-aside 6f4f72/Card Monstrous Crow 86267e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Model_Bag Set-aside 6f4f72/Card Monstrous Crow 86267e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Model_Bag Set-aside 6f4f72/Card Monstrous Crow 86267e.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Model_Bag Set-aside 6f4f72/Card Tweedles' Rattle 9924ac.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Model_Bag Set-aside 6f4f72/Card Tweedles' Rattle 9924ac.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Model_Bag Set-aside 6f4f72/Card Tweedles' Rattle 9924ac.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Model_Bag Set-aside 6f4f72/Card Tweedles' Rattle 9924ac.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 2bfdad.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 2bfdad.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 2bfdad.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 2bfdad.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 44b0c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 44b0c5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 44b0c5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 44b0c5.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 4bd118.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 4bd118.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 4bd118.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 4bd118.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 69462c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 69462c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 69462c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 69462c.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 6965e6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 6965e6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 6965e6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 6965e6.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 71ee4d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 71ee4d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 71ee4d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 71ee4d.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 78b443.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 78b443.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 78b443.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile 78b443.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile ccd9b6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile ccd9b6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile ccd9b6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile ccd9b6.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile d3dcb1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile d3dcb1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile d3dcb1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile d3dcb1.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile dacc86.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile dacc86.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile dacc86.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile dacc86.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile e0f9a5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile e0f9a5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile e0f9a5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile e0f9a5.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile e9ed87.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile e9ed87.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile e9ed87.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile e9ed87.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile f73acf.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile f73acf.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile f73acf.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Custom_Tile f73acf.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Deck Act Deck bd4bb6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Deck Act Deck bd4bb6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Deck Act Deck bd4bb6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Deck Act Deck bd4bb6.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Deck Encounter Deck 23adb3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Deck Encounter Deck 23adb3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Deck Encounter Deck 23adb3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-E Sibling Rivalry 0916b6/Deck Encounter Deck 23adb3.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e.ttslua diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e.yaml similarity index 99% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e.yaml index 24777666b..2d9ba2c88 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e.yaml @@ -80,7 +80,7 @@ Transform: posZ: -20.0152035 rotX: 359.9201 rotY: 270.049316 - rotZ: 0.0168050379 + rotZ: 0.0168050118 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card Humpty Dumpty 423030.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card Humpty Dumpty 423030.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card Humpty Dumpty 423030.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card Humpty Dumpty 423030.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card The Caterpillar f63593.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card The Caterpillar f63593.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card The Caterpillar f63593.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card The Caterpillar f63593.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card The Dodo 657254.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card The Dodo 657254.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card The Dodo 657254.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card The Dodo 657254.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card The Duchess 49d638.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card The Duchess 49d638.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card The Duchess 49d638.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card The Duchess 49d638.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card The Gryphon and the Mock Turtle 53c9d8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card The Gryphon and the Mock Turtle 53c9d8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card The Gryphon and the Mock Turtle 53c9d8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card The Gryphon and the Mock Turtle 53c9d8.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card The Lion and the Unicorn c53461.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card The Lion and the Unicorn c53461.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card The Lion and the Unicorn c53461.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card The Lion and the Unicorn c53461.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card The White Queen 687840.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card The White Queen 687840.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card The White Queen 687840.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Banes b28b74/Card The White Queen 687840.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card Humpty Dumpty aa4c20.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card Humpty Dumpty aa4c20.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card Humpty Dumpty aa4c20.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card Humpty Dumpty aa4c20.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card The Caterpillar 3bf123.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card The Caterpillar 3bf123.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card The Caterpillar 3bf123.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card The Caterpillar 3bf123.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card The Dodo d57095.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card The Dodo d57095.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card The Dodo d57095.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card The Dodo d57095.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card The Duchess 93d9b6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card The Duchess 93d9b6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card The Duchess 93d9b6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card The Duchess 93d9b6.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card The Gryphon and the Mock Turtle 810020.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card The Gryphon and the Mock Turtle 810020.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card The Gryphon and the Mock Turtle 810020.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card The Gryphon and the Mock Turtle 810020.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card The Lion and the Unicorn 3abcb6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card The Lion and the Unicorn 3abcb6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card The Lion and the Unicorn 3abcb6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card The Lion and the Unicorn 3abcb6.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card The White Queen fca0a0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card The White Queen fca0a0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card The White Queen fca0a0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Bag Wonderland Boons 5ac126/Card The White Queen fca0a0.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Distant Square 143088.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Distant Square 143088.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Distant Square 143088.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Distant Square 143088.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Eighth Row 0adfda.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Eighth Row 0adfda.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Eighth Row 0adfda.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Eighth Row 0adfda.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Fifth Row 84861a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Fifth Row 84861a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Fifth Row 84861a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Fifth Row 84861a.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Card First Row f7668e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Card First Row f7668e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Card First Row f7668e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Card First Row f7668e.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Fourth Row 3b7aa9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Fourth Row 3b7aa9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Fourth Row 3b7aa9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Fourth Row 3b7aa9.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Second Row a23045.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Second Row a23045.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Second Row a23045.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Second Row a23045.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Seventh Row 894d7c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Seventh Row 894d7c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Seventh Row 894d7c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Seventh Row 894d7c.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Sixth Row c365f9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Sixth Row c365f9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Sixth Row c365f9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Sixth Row c365f9.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Card The White King 6d072e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Card The White King 6d072e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Card The White King 6d072e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Card The White King 6d072e.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Third Row fcef7f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Third Row fcef7f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Third Row fcef7f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Third Row fcef7f.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Token Effects 4d51b8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Token Effects 4d51b8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Token Effects 4d51b8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Card Token Effects 4d51b8.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/CardCustom The Cheshire Cat 4cb00e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/CardCustom The Cheshire Cat 4cb00e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/CardCustom The Cheshire Cat 4cb00e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/CardCustom The Cheshire Cat 4cb00e.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Custom_Model_Bag Set-aside fc69de.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Custom_Model_Bag Set-aside fc69de.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Custom_Model_Bag Set-aside fc69de.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Custom_Model_Bag Set-aside fc69de.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Custom_Model_Bag Set-aside fc69de/Card The Red King 29c429.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Custom_Model_Bag Set-aside fc69de/Card The Red King 29c429.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Custom_Model_Bag Set-aside fc69de/Card The Red King 29c429.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Custom_Model_Bag Set-aside fc69de/Card The Red King 29c429.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Custom_Model_Bag Set-aside fc69de/Card The Red Queen 0b62e5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Custom_Model_Bag Set-aside fc69de/Card The Red Queen 0b62e5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Custom_Model_Bag Set-aside fc69de/Card The Red Queen 0b62e5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Custom_Model_Bag Set-aside fc69de/Card The Red Queen 0b62e5.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Custom_Model_Bag Set-aside fc69de/Card The White Knight 90157f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Custom_Model_Bag Set-aside fc69de/Card The White Knight 90157f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Custom_Model_Bag Set-aside fc69de/Card The White Knight 90157f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Custom_Model_Bag Set-aside fc69de/Card The White Knight 90157f.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Deck Act Deck ea672a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Deck Act Deck ea672a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Deck Act Deck ea672a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Deck Act Deck ea672a.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Deck Agenda Deck 3a33b3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Deck Agenda Deck 3a33b3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Deck Agenda Deck 3a33b3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Deck Agenda Deck 3a33b3.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Deck Encounter Deck 4efdf0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Deck Encounter Deck 4efdf0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 2-F Fool's Mate bd556e/Deck Encounter Deck 4efdf0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 2-F Fool's Mate bd556e/Deck Encounter Deck 4efdf0.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63.ttslua diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63.yaml similarity index 99% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63.yaml index c904042f4..ed45ee6c9 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63.yaml @@ -111,7 +111,7 @@ Transform: posZ: -28.0147018 rotX: 359.9201 rotY: 270.0374 - rotZ: 0.0168223325 + rotZ: 0.01682143 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb.yaml similarity index 90% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb.yaml index 29e68bc9f..e5def3b28 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb.yaml @@ -1,7 +1,7 @@ Autoraise: true ColorDiffuse: - b: 0.31764704 - g: 0.31764704 + b: 0.317647 + g: 0.317647 r: 0.698039234 ContainedObjects: - !include 'Bag Fragments of Alice c936eb/Deck 719ebe.yaml' @@ -37,11 +37,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -9.985998 - posY: 1.40739858 - posZ: -10.1609 - rotX: 359.983124 - rotY: 0.000804386742 + posX: -9.985996 + posY: 1.40736055 + posZ: -10.1609011 + rotX: 359.983154 + rotY: 0.0007711554 rotZ: 359.920044 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 03a6ad.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 03a6ad.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 03a6ad.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 03a6ad.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 054c30.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 054c30.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 054c30.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 054c30.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 2d818a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 2d818a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 2d818a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 2d818a.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 35acf3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 35acf3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 35acf3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 35acf3.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 661dba.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 661dba.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 661dba.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 661dba.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 6646d6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 6646d6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 6646d6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 6646d6.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 71219a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 71219a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 71219a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 71219a.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 719ebe.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 719ebe.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 719ebe.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 719ebe.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 806f4a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 806f4a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 806f4a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 806f4a.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 990872.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 990872.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 990872.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck 990872.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck b14bc4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck b14bc4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck b14bc4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck b14bc4.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck dfe467.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck dfe467.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck dfe467.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Fragments of Alice c936eb/Deck dfe467.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Mad Tea Party 6e7d25.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Mad Tea Party 6e7d25.yaml similarity index 81% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Mad Tea Party 6e7d25.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Mad Tea Party 6e7d25.yaml index 95880e4ea..3438aca94 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Mad Tea Party 6e7d25.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Mad Tea Party 6e7d25.yaml @@ -1,7 +1,7 @@ Autoraise: true ColorDiffuse: - b: 0.31764704 - g: 0.31764704 + b: 0.317647 + g: 0.317647 r: 0.698039234 ContainedObjects: - !include 'Bag Mad Tea Party 6e7d25/Card Empty Table 84b367.yaml' @@ -28,12 +28,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -20.0821972 - posY: 1.421568 - posZ: -9.857399 - rotX: 359.983124 - rotY: 0.0007387961 - rotZ: 359.920044 + posX: -20.0822 + posY: 1.42152667 + posZ: -9.857401 + rotX: 359.983154 + rotY: 0.000760043156 + rotZ: 359.92 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Mad Tea Party 6e7d25/Card Empty Table 84b367.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Mad Tea Party 6e7d25/Card Empty Table 84b367.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Mad Tea Party 6e7d25/Card Empty Table 84b367.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Mad Tea Party 6e7d25/Card Empty Table 84b367.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Mad Tea Party 6e7d25/Card The Best Butter c742e8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Mad Tea Party 6e7d25/Card The Best Butter c742e8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Mad Tea Party 6e7d25/Card The Best Butter c742e8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Mad Tea Party 6e7d25/Card The Best Butter c742e8.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Mad Tea Party 6e7d25/Card Wasn't Very Civil fcdcf5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Mad Tea Party 6e7d25/Card Wasn't Very Civil fcdcf5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Mad Tea Party 6e7d25/Card Wasn't Very Civil fcdcf5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Mad Tea Party 6e7d25/Card Wasn't Very Civil fcdcf5.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Queen of Hearts 426724.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Queen of Hearts 426724.yaml similarity index 88% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Queen of Hearts 426724.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Queen of Hearts 426724.yaml index 8c67dde0d..e95b083f7 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Queen of Hearts 426724.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Queen of Hearts 426724.yaml @@ -1,7 +1,7 @@ Autoraise: true ColorDiffuse: - b: 0.31764704 - g: 0.31764704 + b: 0.317647 + g: 0.317647 r: 0.698039234 ContainedObjects: - !include 'Bag Queen of Hearts 426724/Card Broke Her Crown 839e47.yaml' @@ -28,10 +28,10 @@ Sticky: true Tooltip: true Transform: posX: -13.5773 - posY: 1.411397 - posZ: -13.5902987 + posY: 1.41135883 + posZ: -13.5902977 rotX: 359.983124 - rotY: 0.0006791265 + rotY: 0.000662256265 rotZ: 359.920044 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Queen of Hearts 426724/Card Broke Her Crown 839e47.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Queen of Hearts 426724/Card Broke Her Crown 839e47.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Queen of Hearts 426724/Card Broke Her Crown 839e47.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Queen of Hearts 426724/Card Broke Her Crown 839e47.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Queen of Hearts 426724/Card The Queen's Justice f6fc6c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Queen of Hearts 426724/Card The Queen's Justice f6fc6c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Queen of Hearts 426724/Card The Queen's Justice f6fc6c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Queen of Hearts 426724/Card The Queen's Justice f6fc6c.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Shadow Strain f4a4e9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Shadow Strain f4a4e9.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Shadow Strain f4a4e9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Shadow Strain f4a4e9.yaml index 185214fd5..7e14ac1f2 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Shadow Strain f4a4e9.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Shadow Strain f4a4e9.yaml @@ -1,7 +1,7 @@ Autoraise: true ColorDiffuse: - b: 0.31764704 - g: 0.31764704 + b: 0.317647 + g: 0.317647 r: 0.698039234 ContainedObjects: - Autoraise: true @@ -210,10 +210,10 @@ Sticky: true Tooltip: true Transform: posX: -10.0846 - posY: 1.40651679 - posZ: -13.619 - rotX: 359.983124 - rotY: 0.000357196026 + posY: 1.40647936 + posZ: -13.6190014 + rotX: 359.983154 + rotY: 0.000321335363 rotZ: 359.920044 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Jabberwock a0c269.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Jabberwock a0c269.yaml similarity index 80% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Jabberwock a0c269.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Jabberwock a0c269.yaml index 2cdde45b6..b4e7bde8b 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Jabberwock a0c269.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Jabberwock a0c269.yaml @@ -1,7 +1,7 @@ Autoraise: true ColorDiffuse: - b: 0.31764704 - g: 0.31764704 + b: 0.317647 + g: 0.317647 r: 0.698039234 ContainedObjects: - !include 'Bag The Jabberwock a0c269/Card Jaws That Bite 8f7570.yaml' @@ -27,12 +27,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -20.0113 - posY: 1.42043734 - posZ: -13.3572989 - rotX: 359.983124 - rotY: 0.0008955624 - rotZ: 359.92 + posX: -20.0112953 + posY: 1.42039931 + posZ: -13.3573 + rotX: 359.983154 + rotY: 0.000933395757 + rotZ: 359.920044 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Jabberwock a0c269/Card Galumphing Back 35968c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Jabberwock a0c269/Card Galumphing Back 35968c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Jabberwock a0c269/Card Galumphing Back 35968c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Jabberwock a0c269/Card Galumphing Back 35968c.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Jabberwock a0c269/Card Jaws That Bite 8f7570.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Jabberwock a0c269/Card Jaws That Bite 8f7570.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Jabberwock a0c269/Card Jaws That Bite 8f7570.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Jabberwock a0c269/Card Jaws That Bite 8f7570.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Snark fc4aa4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Snark fc4aa4.yaml similarity index 82% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Snark fc4aa4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Snark fc4aa4.yaml index ca77a7051..f6a2ebe4a 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Snark fc4aa4.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Snark fc4aa4.yaml @@ -1,7 +1,7 @@ Autoraise: true ColorDiffuse: - b: 0.31764704 - g: 0.31764704 + b: 0.317647 + g: 0.317647 r: 0.698039234 ContainedObjects: - !include 'Bag The Snark fc4aa4/Card Softly and Suddenly Vanished 4136a3.yaml' @@ -27,11 +27,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -16.6948986 - posY: 1.41574466 - posZ: -13.5875988 - rotX: 359.983124 - rotY: 0.0006943629 + posX: -16.6949 + posY: 1.41570687 + posZ: -13.5876 + rotX: 359.983154 + rotY: 0.000651284237 rotZ: 359.920044 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Snark fc4aa4/Card Qualities of a Snark 233961.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Snark fc4aa4/Card Qualities of a Snark 233961.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Snark fc4aa4/Card Qualities of a Snark 233961.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Snark fc4aa4/Card Qualities of a Snark 233961.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Snark fc4aa4/Card Softly and Suddenly Vanished 4136a3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Snark fc4aa4/Card Softly and Suddenly Vanished 4136a3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Snark fc4aa4/Card Softly and Suddenly Vanished 4136a3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The Snark fc4aa4/Card Softly and Suddenly Vanished 4136a3.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White King dafb74.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White King dafb74.yaml similarity index 87% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White King dafb74.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White King dafb74.yaml index 81ba1f3d0..9acb7b533 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White King dafb74.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White King dafb74.yaml @@ -1,7 +1,7 @@ Autoraise: true ColorDiffuse: - b: 0.31764704 - g: 0.31764704 + b: 0.317647 + g: 0.317647 r: 0.698039234 ContainedObjects: - !include 'Bag The White King dafb74/Card For Want of a Nail f3c80e.yaml' @@ -28,10 +28,10 @@ Sticky: true Tooltip: true Transform: posX: -16.8572 - posY: 1.4148798 + posY: 1.41484451 posZ: -17.2918 - rotX: 359.983124 - rotY: 0.0008416383 + rotX: 359.983154 + rotY: 0.000840176246 rotZ: 359.920044 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White King dafb74/Card For Want of a Nail f3c80e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White King dafb74/Card For Want of a Nail f3c80e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White King dafb74/Card For Want of a Nail f3c80e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White King dafb74/Card For Want of a Nail f3c80e.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White King dafb74/Card Royal Decree 2544ee.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White King dafb74/Card Royal Decree 2544ee.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White King dafb74/Card Royal Decree 2544ee.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White King dafb74/Card Royal Decree 2544ee.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White Knight 594775.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White Knight 594775.yaml similarity index 85% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White Knight 594775.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White Knight 594775.yaml index 7e63d8870..6a1d764dc 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White Knight 594775.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White Knight 594775.yaml @@ -1,7 +1,7 @@ Autoraise: true ColorDiffuse: - b: 0.31764704 - g: 0.31764704 + b: 0.317647 + g: 0.317647 r: 0.698039234 ContainedObjects: - !include 'Bag The White Knight 594775/Card The Better Part of Valor 42d5ae.yaml' @@ -28,10 +28,10 @@ Sticky: true Tooltip: true Transform: posX: -20.2578 - posY: 1.41966081 - posZ: -17.1606 - rotX: 359.9831 - rotY: 0.00117418729 + posY: 1.41962528 + posZ: -17.1606026 + rotX: 359.983154 + rotY: 0.00120574771 rotZ: 359.920044 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White Knight 594775/Card Glory and Honor e6ba39.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White Knight 594775/Card Glory and Honor e6ba39.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White Knight 594775/Card Glory and Honor e6ba39.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White Knight 594775/Card Glory and Honor e6ba39.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White Knight 594775/Card The Better Part of Valor 42d5ae.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White Knight 594775/Card The Better Part of Valor 42d5ae.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White Knight 594775/Card The Better Part of Valor 42d5ae.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag The White Knight 594775/Card The Better Part of Valor 42d5ae.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Tweedledum and Tweedledee 823f3e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Tweedledum and Tweedledee 823f3e.yaml similarity index 85% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Tweedledum and Tweedledee 823f3e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Tweedledum and Tweedledee 823f3e.yaml index 62eccaafb..d7c08ad3c 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Tweedledum and Tweedledee 823f3e.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Tweedledum and Tweedledee 823f3e.yaml @@ -1,7 +1,7 @@ Autoraise: true ColorDiffuse: - b: 0.31764704 - g: 0.31764704 + b: 0.317647 + g: 0.317647 r: 0.698039234 ContainedObjects: - !include 'Bag Tweedledum and Tweedledee 823f3e/Card No Survivors b1d9c5.yaml' @@ -28,12 +28,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -13.6923971 - posY: 1.4104346 + posX: -13.6923981 + posY: 1.41039968 posZ: -17.4035 - rotX: 359.983124 - rotY: 0.0009429427 - rotZ: 359.92 + rotX: 359.983154 + rotY: 0.0009679586 + rotZ: 359.920044 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Tweedledum and Tweedledee 823f3e/Card Brothers in Arms fc427f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Tweedledum and Tweedledee 823f3e/Card Brothers in Arms fc427f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Tweedledum and Tweedledee 823f3e/Card Brothers in Arms fc427f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Tweedledum and Tweedledee 823f3e/Card Brothers in Arms fc427f.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Tweedledum and Tweedledee 823f3e/Card No Survivors b1d9c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Tweedledum and Tweedledee 823f3e/Card No Survivors b1d9c5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Tweedledum and Tweedledee 823f3e/Card No Survivors b1d9c5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Tweedledum and Tweedledee 823f3e/Card No Survivors b1d9c5.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Tweedledum and Tweedledee 823f3e/Card Sole Survivor 89f605.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Tweedledum and Tweedledee 823f3e/Card Sole Survivor 89f605.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Tweedledum and Tweedledee 823f3e/Card Sole Survivor 89f605.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Tweedledum and Tweedledee 823f3e/Card Sole Survivor 89f605.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Walrus and Carpenter 392b36.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Walrus and Carpenter 392b36.yaml similarity index 85% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Walrus and Carpenter 392b36.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Walrus and Carpenter 392b36.yaml index 2507bb0b2..4c408e846 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Walrus and Carpenter 392b36.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Walrus and Carpenter 392b36.yaml @@ -1,7 +1,7 @@ Autoraise: true ColorDiffuse: - b: 0.31764704 - g: 0.31764704 + b: 0.317647 + g: 0.317647 r: 0.698039234 ContainedObjects: - !include 'Bag Walrus and Carpenter 392b36/Card Shed a Bitter Tear 45e9d7.yaml' @@ -27,11 +27,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -16.9143 - posY: 1.41716182 + posX: -16.914299 + posY: 1.41712368 posZ: -9.812201 - rotX: 359.983124 - rotY: 0.0003786285 + rotX: 359.983154 + rotY: 0.000324782537 rotZ: 359.920044 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Walrus and Carpenter 392b36/Card Shed a Bitter Tear 45e9d7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Walrus and Carpenter 392b36/Card Shed a Bitter Tear 45e9d7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Walrus and Carpenter 392b36/Card Shed a Bitter Tear 45e9d7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Walrus and Carpenter 392b36/Card Shed a Bitter Tear 45e9d7.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Walrus and Carpenter 392b36/Card Talk of Many Things bcd605.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Walrus and Carpenter 392b36/Card Talk of Many Things bcd605.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Walrus and Carpenter 392b36/Card Talk of Many Things bcd605.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Walrus and Carpenter 392b36/Card Talk of Many Things bcd605.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag White Rabbit 43676b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag White Rabbit 43676b.yaml similarity index 85% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag White Rabbit 43676b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag White Rabbit 43676b.yaml index b75469d40..b2ad20220 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag White Rabbit 43676b.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag White Rabbit 43676b.yaml @@ -1,7 +1,7 @@ Autoraise: true ColorDiffuse: - b: 0.31764704 - g: 0.31764704 + b: 0.317647 + g: 0.317647 r: 0.698039234 ContainedObjects: - !include 'Bag White Rabbit 43676b/Card Running Out of Time 2f5199.yaml' @@ -27,11 +27,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -13.449 - posY: 1.41221046 + posX: -13.4489985 + posY: 1.41217113 posZ: -10.2194 - rotX: 359.9831 - rotY: 0.000824129733 + rotX: 359.983154 + rotY: 0.000860378 rotZ: 359.92 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag White Rabbit 43676b/Card Running Out of Time 2f5199.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag White Rabbit 43676b/Card Running Out of Time 2f5199.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag White Rabbit 43676b/Card Running Out of Time 2f5199.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag White Rabbit 43676b/Card Running Out of Time 2f5199.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag White Rabbit 43676b/Card Still Ticking 4cabe2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag White Rabbit 43676b/Card Still Ticking 4cabe2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag White Rabbit 43676b/Card Still Ticking 4cabe2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag White Rabbit 43676b/Card Still Ticking 4cabe2.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34.yaml similarity index 91% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34.yaml index 6d02e1800..0f08bfaba 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: b: 0.5647059 - g: 0.0509802774 - r: 0.250980228 + g: 0.050980255 + r: 0.2509802 ContainedObjects: - !include 'Bag Wonderland Banes 360e34/Card The White Queen 687840.yaml' - !include 'Bag Wonderland Banes 360e34/Card The Lion and the Unicorn c53461.yaml' @@ -32,11 +32,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0.2622012 - posY: 1.39732134 + posX: 0.262200952 + posY: 1.39732075 posZ: 4.289102 rotX: 359.983154 - rotY: 0.00119069917 + rotY: 0.001183856 rotZ: 359.919678 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card Humpty Dumpty 423030.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card Humpty Dumpty 423030.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card Humpty Dumpty 423030.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card Humpty Dumpty 423030.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card The Caterpillar f63593.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card The Caterpillar f63593.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card The Caterpillar f63593.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card The Caterpillar f63593.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card The Dodo 657254.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card The Dodo 657254.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card The Dodo 657254.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card The Dodo 657254.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card The Duchess 49d638.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card The Duchess 49d638.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card The Duchess 49d638.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card The Duchess 49d638.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card The Gryphon and the Mock Turtle 53c9d8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card The Gryphon and the Mock Turtle 53c9d8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card The Gryphon and the Mock Turtle 53c9d8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card The Gryphon and the Mock Turtle 53c9d8.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card The Lion and the Unicorn c53461.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card The Lion and the Unicorn c53461.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card The Lion and the Unicorn c53461.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card The Lion and the Unicorn c53461.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card The White Queen 687840.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card The White Queen 687840.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card The White Queen 687840.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Banes 360e34/Card The White Queen 687840.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711.yaml similarity index 93% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711.yaml index c5e819f17..a8ce54ec8 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711.yaml @@ -32,11 +32,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0.2417004 - posY: 1.39818716 - posZ: 7.14080143 + posX: 0.241700858 + posY: 1.39818752 + posZ: 7.140802 rotX: 359.983154 - rotY: 0.0008183067 + rotY: 0.0008042188 rotZ: 359.919678 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card Humpty Dumpty aa4c20.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card Humpty Dumpty aa4c20.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card Humpty Dumpty aa4c20.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card Humpty Dumpty aa4c20.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card The Caterpillar 3bf123.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card The Caterpillar 3bf123.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card The Caterpillar 3bf123.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card The Caterpillar 3bf123.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card The Dodo d57095.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card The Dodo d57095.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card The Dodo d57095.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card The Dodo d57095.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card The Duchess 93d9b6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card The Duchess 93d9b6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card The Duchess 93d9b6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card The Duchess 93d9b6.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card The Gryphon and the Mock Turtle 810020.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card The Gryphon and the Mock Turtle 810020.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card The Gryphon and the Mock Turtle 810020.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card The Gryphon and the Mock Turtle 810020.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card The Lion and the Unicorn 3abcb6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card The Lion and the Unicorn 3abcb6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card The Lion and the Unicorn 3abcb6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card The Lion and the Unicorn 3abcb6.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card The White Queen fca0a0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card The White Queen fca0a0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card The White Queen fca0a0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Bag Wonderland Boons 274711/Card The White Queen fca0a0.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card French Hill (Lucid Nightmares) c0a1ae.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card French Hill (Lucid Nightmares) c0a1ae.yaml similarity index 93% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card French Hill (Lucid Nightmares) c0a1ae.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card French Hill (Lucid Nightmares) c0a1ae.yaml index 4df4dd5f4..969d2bd7e 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card French Hill (Lucid Nightmares) c0a1ae.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card French Hill (Lucid Nightmares) c0a1ae.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -30.2243 - posY: 1.63612318 - posZ: -3.8300004 + posY: 1.63608027 + posZ: -3.83000064 rotX: 359.9201 rotY: 269.999939 - rotZ: 0.01687228 + rotZ: 0.01683968 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka 5c060f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka 5c060f.yaml similarity index 93% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka 5c060f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka 5c060f.yaml index ec1038211..eeb6a01f7 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka 5c060f.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka 5c060f.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -7.949601 - posY: 1.60877407 + posY: 1.60876358 posZ: 8.764001 - rotX: 359.919983 + rotX: 359.921021 rotY: 270.002319 - rotZ: 0.0167288464 + rotZ: 0.01630577 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka 7a3c0d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka 7a3c0d.yaml similarity index 90% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka 7a3c0d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka 7a3c0d.yaml index 71186758b..a625f03fc 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka 7a3c0d.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka 7a3c0d.yaml @@ -33,11 +33,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -7.992101 - posY: 1.60175717 - posZ: 18.3179 - rotX: 358.8536 - rotY: 270.02652 + posX: -7.992102 + posY: 1.601725 + posZ: 18.3178978 + rotX: 358.8548 + rotY: 270.026428 rotZ: 356.7861 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka b56cb1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka b56cb1.yaml similarity index 91% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka b56cb1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka b56cb1.yaml index dffdbaa4d..c5cc0368d 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka b56cb1.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka b56cb1.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -7.95470142 - posY: 1.61021435 + posX: -7.954702 + posY: 1.61020315 posZ: 13.6391029 - rotX: 359.919952 + rotX: 359.921021 rotY: 269.994965 - rotZ: 0.0167644825 + rotZ: 0.0163184535 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka e8f065.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka e8f065.yaml similarity index 91% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka e8f065.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka e8f065.yaml index eecdad2b2..f0e1aa561 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka e8f065.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka e8f065.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -7.9414 - posY: 1.60949242 + posX: -7.94140053 + posY: 1.60948181 posZ: 11.2466021 - rotX: 359.919983 + rotX: 359.921 rotY: 269.979431 - rotZ: 0.0167731326 + rotZ: 0.016336238 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka f8b869.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka f8b869.yaml similarity index 89% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka f8b869.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka f8b869.yaml index d3e650b0b..c077fc9b7 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka f8b869.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Gurathnaka f8b869.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -7.93670034 - posY: 1.61088169 + posX: -7.936701 + posY: 1.61087048 posZ: 15.9948015 - rotX: 359.9199 - rotY: 270.0 - rotZ: 0.0167688262 + rotX: 359.921 + rotY: 269.999969 + rotZ: 0.0163086876 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Merchant District (Lucid Nightmares) 053510.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Merchant District (Lucid Nightmares) 053510.yaml similarity index 91% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Merchant District (Lucid Nightmares) 053510.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Merchant District (Lucid Nightmares) 053510.yaml index c5ba92de2..7b05e1e71 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Merchant District (Lucid Nightmares) 053510.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Merchant District (Lucid Nightmares) 053510.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -23.6764984 - posY: 1.62926209 - posZ: 3.860104 + posY: 1.62921476 + posZ: 3.86010432 rotX: 359.920074 - rotY: 270.001129 - rotZ: 0.0171690974 + rotY: 270.00116 + rotZ: 0.0171364974 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Miskatonic University (Lucid Nightmares) 199715.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Miskatonic University (Lucid Nightmares) 199715.yaml similarity index 95% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Miskatonic University (Lucid Nightmares) 199715.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Miskatonic University (Lucid Nightmares) 199715.yaml index 4fe310628..e868bddae 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Miskatonic University (Lucid Nightmares) 199715.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Miskatonic University (Lucid Nightmares) 199715.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -30.2243 - posY: 1.63838756 + posY: 1.63834023 posZ: 3.86 rotX: 359.9201 rotY: 269.999725 - rotZ: 0.0168726575 + rotZ: 0.0168401171 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Rivertown (Lucid Nightmares) 78c591.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Rivertown (Lucid Nightmares) 78c591.yaml similarity index 95% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Rivertown (Lucid Nightmares) 78c591.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Rivertown (Lucid Nightmares) 78c591.yaml index db01f19ea..a08bdd02f 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Rivertown (Lucid Nightmares) 78c591.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Rivertown (Lucid Nightmares) 78c591.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -23.6765 - posY: 1.6269927 + posY: 1.62694967 posZ: -3.83000016 rotX: 359.9201 rotY: 269.9997 - rotZ: 0.01687259 + rotZ: 0.0168400742 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Southside (Lucid Nightmares) b4f1d0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Southside (Lucid Nightmares) b4f1d0.yaml similarity index 93% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Southside (Lucid Nightmares) b4f1d0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Southside (Lucid Nightmares) b4f1d0.yaml index 624d0dbb9..ed8a1eea5 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Southside (Lucid Nightmares) b4f1d0.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Southside (Lucid Nightmares) b4f1d0.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -36.7732 - posY: 1.64525521 - posZ: -3.8300004 + posY: 1.64521217 + posZ: -3.83000016 rotX: 359.9201 rotY: 269.999939 - rotZ: 0.0168723613 + rotZ: 0.01683976 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Token Effects db111b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Token Effects db111b.yaml similarity index 95% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Token Effects db111b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Token Effects db111b.yaml index 468a03b15..fc56305c0 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Token Effects db111b.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Token Effects db111b.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.95600057 + posX: -3.95600033 posY: 1.59753942 posZ: -10.4412012 rotX: 359.919739 rotY: 269.999817 - rotZ: 0.0168375019 + rotZ: 0.0168374162 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Uptown (Lucid Nightmares) a90fa1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Uptown (Lucid Nightmares) a90fa1.yaml similarity index 93% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Uptown (Lucid Nightmares) a90fa1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Uptown (Lucid Nightmares) a90fa1.yaml index c025688d7..db6c48d27 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Uptown (Lucid Nightmares) a90fa1.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Card Uptown (Lucid Nightmares) a90fa1.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -36.7732 - posY: 1.64751959 - posZ: 3.86 + posY: 1.64747226 + posZ: 3.85999966 rotX: 359.9201 rotY: 269.999756 - rotZ: 0.0168725848 + rotZ: 0.0168399885 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/CardCustom Alice Liddell c9b6fc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/CardCustom Alice Liddell c9b6fc.yaml similarity index 90% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/CardCustom Alice Liddell c9b6fc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/CardCustom Alice Liddell c9b6fc.yaml index 2ef95c1c4..d88b2145a 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/CardCustom Alice Liddell c9b6fc.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/CardCustom Alice Liddell c9b6fc.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -21.3800983 - posY: 1.64114416 - posZ: 5.459798 + posX: -21.3801 + posY: 1.64109588 + posZ: 5.45979834 rotX: 359.919617 - rotY: 270.035919 - rotZ: 358.616 + rotY: 270.0358 + rotZ: 358.615967 scaleX: 0.6 scaleY: 1.0 scaleZ: 0.6 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/CardCustom Alice Liddell f05b95.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/CardCustom Alice Liddell f05b95.yaml similarity index 87% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/CardCustom Alice Liddell f05b95.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/CardCustom Alice Liddell f05b95.yaml index bae1e6c97..e7b705a5a 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/CardCustom Alice Liddell f05b95.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/CardCustom Alice Liddell f05b95.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -6.38640165 - posY: 1.5997268 - posZ: -14.5825024 - rotX: 0.0168313514 - rotY: 180.003281 - rotZ: 0.08025601 + posX: -7.304793 + posY: 1.60088134 + posZ: -15.0312586 + rotX: 0.0168305524 + rotY: 180.003311 + rotZ: 0.08025771 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/CardCustom The Cheshire Cat 4cb00e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/CardCustom The Cheshire Cat 4cb00e.yaml similarity index 87% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/CardCustom The Cheshire Cat 4cb00e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/CardCustom The Cheshire Cat 4cb00e.yaml index 4bc405506..411d09b07 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/CardCustom The Cheshire Cat 4cb00e.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/CardCustom The Cheshire Cat 4cb00e.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -7.891901 - posY: 1.60782611 - posZ: 5.813301 - rotX: 359.92 - rotY: 269.998932 - rotZ: 0.016715968 + posX: -7.891933 + posY: 1.60781693 + posZ: 5.81332636 + rotX: 359.9209 + rotY: 269.998352 + rotZ: 0.0162980687 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666.yaml index 88bf6c70d..97c7e3c5d 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666.yaml @@ -51,11 +51,11 @@ Sticky: true Tooltip: true Transform: posX: 1.69630086 - posY: 1.55831742 + posY: 1.558317 posZ: 14.278903 rotX: 359.955139 rotY: 225.008682 - rotZ: 0.06866515 + rotZ: 0.068664 scaleX: 2.0 scaleY: 2.0 scaleZ: 2.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666/Card Downtown (Lucid Nightmares) 0a618b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666/Card Downtown (Lucid Nightmares) 0a618b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666/Card Downtown (Lucid Nightmares) 0a618b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666/Card Downtown (Lucid Nightmares) 0a618b.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666/Card Easttown (Lucid Nightmares) eec86d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666/Card Easttown (Lucid Nightmares) eec86d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666/Card Easttown (Lucid Nightmares) eec86d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666/Card Easttown (Lucid Nightmares) eec86d.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666/Card Northside (Lucid Nightmares) d6c6a5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666/Card Northside (Lucid Nightmares) d6c6a5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666/Card Northside (Lucid Nightmares) d6c6a5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666/Card Northside (Lucid Nightmares) d6c6a5.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666/Card Vacuous Void a797aa.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666/Card Vacuous Void a797aa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666/Card Vacuous Void a797aa.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666/Card Vacuous Void a797aa.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666/Deck Tenebrous Nightmares 6fd505.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666/Deck Tenebrous Nightmares 6fd505.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666/Deck Tenebrous Nightmares 6fd505.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Model_Bag Set-aside 8b0666/Deck Tenebrous Nightmares 6fd505.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 16a4ad.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 16a4ad.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 16a4ad.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 16a4ad.yaml index 2172242e4..8c03f1b87 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 16a4ad.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 16a4ad.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -25.1362 - posY: 1.61649144 - posZ: -0.201899886 - rotX: 0.0168501679 - rotY: 180.015442 - rotZ: 0.07994391 + posY: 1.6164465 + posZ: -0.201899648 + rotX: 0.0168176237 + rotY: 180.015472 + rotZ: 0.0799410045 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 5b38c6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 5b38c6.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 5b38c6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 5b38c6.yaml index 66dc1dfad..47aa17aa3 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 5b38c6.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 5b38c6.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -34.5131 - posY: 1.62959516 - posZ: -0.106600344 + posY: 1.6295501 + posZ: -0.1066003 rotX: 359.9201 rotY: 270.012573 - rotZ: 0.016860215 + rotZ: 0.01682783 scaleX: 0.8 scaleY: 1.0 scaleZ: 0.8 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 7234af.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 7234af.yaml index f03af16a6..827ae4511 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 7234af.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 7234af.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -38.6562 - posY: 1.63533628 - posZ: -0.228199914 - rotX: 0.016963698 - rotY: 179.934052 - rotZ: 0.0799198449 + posY: 1.63529146 + posZ: -0.228199735 + rotX: 0.016931355 + rotY: 179.934021 + rotZ: 0.07993176 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 76b56d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 76b56d.yaml similarity index 98% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 76b56d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 76b56d.yaml index c1ee81fbc..b983314e7 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 76b56d.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 76b56d.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -26.9223 - posY: 1.61789918 + posY: 1.61785614 posZ: -3.88030076 rotX: 359.9201 rotY: 270.012726 - rotZ: 0.016882211 + rotZ: 0.0168500375 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 7e0123.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 7e0123.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 7e0123.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 7e0123.yaml index e71aafe9e..f4bcea513 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 7e0123.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 7e0123.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -33.6885 - posY: 1.62955809 - posZ: 3.67250013 + posY: 1.62951088 + posZ: 3.6725 rotX: 359.9201 rotY: 270.0127 - rotZ: 0.01688391 + rotZ: 0.016849583 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 860d35.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 860d35.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 860d35.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 860d35.yaml index b46653528..b2faa1eea 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 860d35.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 860d35.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -27.688 - posY: 1.62007487 - posZ: -0.116900288 + posY: 1.62003 + posZ: -0.116900213 rotX: 359.9201 rotY: 270.0127 - rotZ: 0.01686013 + rotZ: 0.0168276317 scaleX: 0.8 scaleY: 1.0 scaleZ: 0.8 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 9b3bb9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 9b3bb9.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 9b3bb9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 9b3bb9.yaml index 5a04c3529..51e565b0b 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 9b3bb9.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile 9b3bb9.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -33.565 - posY: 1.62717187 - posZ: -3.84600043 + posY: 1.627129 + posZ: -3.846 rotX: 359.9201 - rotY: 270.012451 - rotZ: 0.01688281 + rotY: 270.012421 + rotZ: 0.01684972 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile a2e3a0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile a2e3a0.yaml similarity index 98% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile a2e3a0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile a2e3a0.yaml index f5f60844b..e1868e43c 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile a2e3a0.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile a2e3a0.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -26.9611 - posY: 1.62015843 + posY: 1.62011135 posZ: 3.6088 rotX: 359.9201 rotY: 270.009979 - rotZ: 0.016886171 + rotZ: 0.01685302 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile b275f0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile b275f0.yaml similarity index 95% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile b275f0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile b275f0.yaml index d5fbbcbad..5ba09dbbb 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile b275f0.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Custom_Tile b275f0.yaml @@ -123,12 +123,12 @@ States: Sticky: true Tooltip: true Transform: - posX: -31.7472973 - posY: 1.6257323 - posZ: -0.126999751 - rotX: 0.0168462712 - rotY: 180.018234 - rotZ: 0.0799351 + posX: -31.7473 + posY: 1.62568724 + posZ: -0.126999885 + rotX: 0.0168137848 + rotY: 180.018219 + rotZ: 0.07994725 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Deck Act Deck 83fd56.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Deck Act Deck 83fd56.yaml similarity index 98% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Deck Act Deck 83fd56.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Deck Act Deck 83fd56.yaml index f8f7ce794..c7b5ea641 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Deck Act Deck 83fd56.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Deck Act Deck 83fd56.yaml @@ -129,9 +129,9 @@ Transform: posX: -2.6885 posY: 1.61430252 posZ: -5.0485 - rotX: 0.01683516 + rotX: 0.0168352164 rotY: 180.000381 - rotZ: 0.08025585 + rotZ: 0.08025597 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Deck Agenda Deck 0a4071.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Deck Agenda Deck 0a4071.yaml similarity index 99% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Deck Agenda Deck 0a4071.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Deck Agenda Deck 0a4071.yaml index 7098bc090..be6e94eb4 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Deck Agenda Deck 0a4071.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Deck Agenda Deck 0a4071.yaml @@ -175,9 +175,9 @@ Transform: posX: -2.7244997 posY: 1.62076008 posZ: 0.3733003 - rotX: 0.0168358032 + rotX: 0.01683579 rotY: 179.999908 - rotZ: 0.08025606 + rotZ: 0.08025591 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Deck Encounter Deck 374383.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Deck Encounter Deck 374383.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Deck Encounter Deck 374383.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Model_Bag 3 Lucid Nightmare e6bb63/Deck Encounter Deck 374383.yaml diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_PDF Alice in Wonderland Campaign Guide 7ff86f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_PDF Alice in Wonderland Campaign Guide 7ff86f.yaml similarity index 93% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_PDF Alice in Wonderland Campaign Guide 7ff86f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_PDF Alice in Wonderland Campaign Guide 7ff86f.yaml index 3428932ef..21d391bb5 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_PDF Alice in Wonderland Campaign Guide 7ff86f.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_PDF Alice in Wonderland Campaign Guide 7ff86f.yaml @@ -30,9 +30,9 @@ Transform: posX: -2.43340087 posY: 1.50000525 posZ: -42.5732 - rotX: -7.682697e-06 + rotX: -7.669488e-06 rotY: 270.0719 - rotZ: -4.91718238e-05 + rotZ: -4.9135986e-05 scaleX: 3.2506578 scaleY: 1.0 scaleZ: 3.2506578 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Tile Alice in Wonderland b5928a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Tile Alice in Wonderland b5928a.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Tile Alice in Wonderland b5928a.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Tile Alice in Wonderland b5928a.ttslua diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Tile Alice in Wonderland b5928a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Tile Alice in Wonderland b5928a.yaml similarity index 95% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Tile Alice in Wonderland b5928a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Tile Alice in Wonderland b5928a.yaml index b72937403..958a1d400 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Tile Alice in Wonderland b5928a.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Tile Alice in Wonderland b5928a.yaml @@ -32,12 +32,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.6896 + posX: -3.68960023 posY: 1.58220375 posZ: -15.0618019 rotX: 359.919769 rotY: 269.9681 - rotZ: 0.0168823823 + rotZ: 0.0168824624 scaleX: 2.2 scaleY: 1.0 scaleZ: 2.2 diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Token Alice in Wonderland Campaign Log eda22b.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Token Alice in Wonderland Campaign Log eda22b.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Token Alice in Wonderland Campaign Log eda22b.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Token Alice in Wonderland Campaign Log eda22b.ttslua diff --git a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Token Alice in Wonderland Campaign Log eda22b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Token Alice in Wonderland Campaign Log eda22b.yaml similarity index 99% rename from unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Token Alice in Wonderland Campaign Log eda22b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Token Alice in Wonderland Campaign Log eda22b.yaml index 967adde0c..aad8bfc36 100644 --- a/unpacked/Custom_Model_Bag Alice in Wonderland 4dfdcb/Custom_Token Alice in Wonderland Campaign Log eda22b.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Alice in Wonderland b58202/Custom_Token Alice in Wonderland Campaign Log eda22b.yaml @@ -437,7 +437,7 @@ Transform: posZ: -26.9366055 rotX: 359.920135 rotY: 270.0121 - rotZ: 0.0168547872 + rotZ: 0.0168547947 scaleX: 4.37388372 scaleY: 1.0 scaleZ: 4.37388372 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92.yaml index 272d6ad6d..f4d4426f6 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92.yaml @@ -76,12 +76,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 32.2998734 - posY: 2.31899929 - posZ: 0.140027225 - rotX: 359.932739 + posX: 12.249507 + posY: 1.45618308 + posZ: -28.013607 + rotX: 359.920135 rotY: 270.0 - rotZ: 0.0142058386 + rotZ: 0.0168734211 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Card Clover Club Lounge f6109e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Card Clover Club Lounge f6109e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Card Clover Club Lounge f6109e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Card Clover Club Lounge f6109e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Custom_Model_Bag Set-aside 016504.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Custom_Model_Bag Set-aside 016504.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Custom_Model_Bag Set-aside 016504.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Custom_Model_Bag Set-aside 016504.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Custom_Model_Bag Set-aside 016504/Card Clover Club Stage fcf6ea.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Custom_Model_Bag Set-aside 016504/Card Clover Club Stage fcf6ea.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Custom_Model_Bag Set-aside 016504/Card Clover Club Stage fcf6ea.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Custom_Model_Bag Set-aside 016504/Card Clover Club Stage fcf6ea.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Custom_Model_Bag Set-aside 016504/CardCustom Siobhan Riley 828268.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Custom_Model_Bag Set-aside 016504/CardCustom Siobhan Riley 828268.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Custom_Model_Bag Set-aside 016504/CardCustom Siobhan Riley 828268.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Custom_Model_Bag Set-aside 016504/CardCustom Siobhan Riley 828268.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Custom_Model_Bag Set-aside 016504/Deck Back Hall Doorways d27222.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Custom_Model_Bag Set-aside 016504/Deck Back Hall Doorways d27222.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Custom_Model_Bag Set-aside 016504/Deck Back Hall Doorways d27222.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Custom_Model_Bag Set-aside 016504/Deck Back Hall Doorways d27222.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Custom_Model_Bag Set-aside 016504/Deck Clover Club Bouncers 50c0b8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Custom_Model_Bag Set-aside 016504/Deck Clover Club Bouncers 50c0b8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Custom_Model_Bag Set-aside 016504/Deck Clover Club Bouncers 50c0b8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Custom_Model_Bag Set-aside 016504/Deck Clover Club Bouncers 50c0b8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Deck Encounter Deck 6cc567.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Deck Encounter Deck 6cc567.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Deck Encounter Deck 6cc567.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag With Return Set 083fc2/Deck Encounter Deck 6cc567.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543/Card Clover Club Lounge 4b1874.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543/Card Clover Club Lounge 4b1874.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543/Card Clover Club Lounge 4b1874.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543/Card Clover Club Lounge 4b1874.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543/Custom_Model_Bag Set-aside a45247.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543/Custom_Model_Bag Set-aside a45247.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543/Custom_Model_Bag Set-aside a45247.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543/Custom_Model_Bag Set-aside a45247/CardCustom Siobhan Riley 828268.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543/Custom_Model_Bag Set-aside a45247/CardCustom Siobhan Riley 828268.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543/Custom_Model_Bag Set-aside a45247/CardCustom Siobhan Riley 828268.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543/Custom_Model_Bag Set-aside a45247/CardCustom Siobhan Riley 828268.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543/Custom_Model_Bag Set-aside a45247/Deck Back Hall Doorways d27222.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543/Custom_Model_Bag Set-aside a45247/Deck Back Hall Doorways d27222.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543/Custom_Model_Bag Set-aside a45247/Deck Back Hall Doorways d27222.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543/Custom_Model_Bag Set-aside a45247/Deck Back Hall Doorways d27222.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543/Custom_Model_Bag Set-aside a45247/Deck Clover Club Bouncers 50c0b8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543/Custom_Model_Bag Set-aside a45247/Deck Clover Club Bouncers 50c0b8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543/Custom_Model_Bag Set-aside a45247/Deck Clover Club Bouncers 50c0b8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543/Custom_Model_Bag Set-aside a45247/Deck Clover Club Bouncers 50c0b8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543/Deck Encounter Deck 71f991.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543/Deck Encounter Deck 71f991.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543/Deck Encounter Deck 71f991.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Bag Without Return Set d14543/Deck Encounter Deck 71f991.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Card Clover Club Bar 45341b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Card Clover Club Bar 45341b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Card Clover Club Bar 45341b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Card Clover Club Bar 45341b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Card Clover Club Cardroom 9a3039.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Card Clover Club Cardroom 9a3039.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Card Clover Club Cardroom 9a3039.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Card Clover Club Cardroom 9a3039.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Card Clover Club Pit Boss de3bd5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Card Clover Club Pit Boss de3bd5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Card Clover Club Pit Boss de3bd5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Card Clover Club Pit Boss de3bd5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Card Darkened Hall 911f8c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Card Darkened Hall 911f8c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Card Darkened Hall 911f8c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Card Darkened Hall 911f8c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Card La Bella Luna 7faf81.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Card La Bella Luna 7faf81.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Card La Bella Luna 7faf81.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Card La Bella Luna 7faf81.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/CardCustom Eyes All Around You 29d606.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/CardCustom Eyes All Around You 29d606.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/CardCustom Eyes All Around You 29d606.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/CardCustom Eyes All Around You 29d606.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/CardCustom Scenario a2fcc1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/CardCustom Scenario a2fcc1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/CardCustom Scenario a2fcc1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/CardCustom Scenario a2fcc1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Custom_PDF All or Nothing Campaign Guide 7f7fb0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Custom_PDF All or Nothing Campaign Guide 7f7fb0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Custom_PDF All or Nothing Campaign Guide 7f7fb0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Custom_PDF All or Nothing Campaign Guide 7f7fb0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile 89f865.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile 89f865.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile 89f865.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile 89f865.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile 8fffb7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile 8fffb7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile 8fffb7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile 8fffb7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile b68edf.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile b68edf.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile b68edf.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile b68edf.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile b8e732.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile b8e732.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile b8e732.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile b8e732.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile f797c9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile f797c9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile f797c9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile f797c9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile All or Nothing b5928a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile All or Nothing b5928a.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile All or Nothing b5928a.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile All or Nothing b5928a.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile All or Nothing b5928a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile All or Nothing b5928a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile All or Nothing b5928a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Custom_Tile All or Nothing b5928a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Deck Act Deck 58e1e2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Deck Act Deck 58e1e2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing 72ab92/Deck Act Deck 58e1e2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag All or Nothing 72ab92/Deck Act Deck 58e1e2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da.yaml similarity index 99% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da.yaml index de28feb40..eb1ce6da1 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da.yaml @@ -84,10 +84,10 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 49.50003 - posY: 4.38481855 - posZ: -95.97946 - rotX: 0.0208081752 + posX: 20.149189 + posY: 4.31510735 + posZ: -31.69561 + rotX: 0.0208081771 rotY: 270.000122 rotZ: 0.0167717673 scaleX: 2.21 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 0488ba.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 0488ba.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 0488ba.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 0488ba.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 0acbd8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 0acbd8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 0acbd8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 0acbd8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 1dd120.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 1dd120.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 1dd120.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 1dd120.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 225690.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 225690.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 225690.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 225690.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 4eeeb3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 4eeeb3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 4eeeb3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 4eeeb3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Card a06ab2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Card a06ab2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Card a06ab2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Card a06ab2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Card aa3bc3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Card aa3bc3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Card aa3bc3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Card aa3bc3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Card ae20a4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Card ae20a4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Card ae20a4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Card ae20a4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Card baff62.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Card baff62.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Card baff62.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Card baff62.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Card efe8d6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Card efe8d6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Card efe8d6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Card efe8d6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Card Scenario 480533.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Card Scenario 480533.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Card Scenario 480533.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Card Scenario 480533.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Card Scenario ade1bd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Card Scenario ade1bd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Card Scenario ade1bd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Card Scenario ade1bd.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 0d9dc2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 0d9dc2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 0d9dc2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 0d9dc2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 1e3806.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 1e3806.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 1e3806.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 1e3806.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 23bbd8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 23bbd8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 23bbd8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 23bbd8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 4aaa9f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 4aaa9f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 4aaa9f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 4aaa9f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile a08d45.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile a08d45.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile a08d45.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile a08d45.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile b4a135.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile b4a135.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile b4a135.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile b4a135.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile b7e3ad.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile b7e3ad.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile b7e3ad.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile b7e3ad.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile d33de6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile d33de6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile d33de6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile d33de6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile e1bf6b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile e1bf6b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile e1bf6b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile e1bf6b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile e90dde.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile e90dde.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile e90dde.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile e90dde.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile ed48d8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile ed48d8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile ed48d8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile ed48d8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile ee673a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile ee673a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile ee673a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile ee673a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile fda256.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile fda256.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile fda256.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile fda256.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile Blood Spilled in Salem 83b781.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile Blood Spilled in Salem 83b781.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile Blood Spilled in Salem 83b781.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile Blood Spilled in Salem 83b781.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile Blood Spilled in Salem 83b781.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile Blood Spilled in Salem 83b781.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile Blood Spilled in Salem 83b781.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile Blood Spilled in Salem 83b781.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck a1dbf2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck a1dbf2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck a1dbf2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck a1dbf2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Act 33b200.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Act 33b200.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Act 33b200.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Act 33b200.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Agenda 479a5a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Agenda 479a5a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Agenda 479a5a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Agenda 479a5a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Atrocities a3dc2f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Atrocities a3dc2f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Atrocities a3dc2f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Atrocities a3dc2f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Set Aside acac22.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Set Aside acac22.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Set Aside acac22.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Set Aside acac22.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/DeckCustom Encounter Deck 0eb577.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/DeckCustom Encounter Deck 0eb577.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled in Salem 4237da/DeckCustom Encounter Deck 0eb577.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Blood Spilled in Salem 4237da/DeckCustom Encounter Deck 0eb577.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97.yaml index a1cf8406a..9a1672886 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97.yaml @@ -75,12 +75,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 20.5133686 - posY: 2.45324087 - posZ: -90.62729 + posX: 16.59167 + posY: 3.32239 + posZ: -24.3654633 rotX: 359.983246 rotY: 270.0003 - rotZ: 0.00353558268 + rotZ: 0.00353558222 scaleX: 2.21 scaleY: 0.2 scaleZ: 2.46 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Card 0d7898.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Card 0d7898.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Card 0d7898.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Card 0d7898.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Card 50d3bc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Card 50d3bc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Card 50d3bc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Card 50d3bc.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Card 5a9b00.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Card 5a9b00.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Card 5a9b00.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Card 5a9b00.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Card 5d0fdd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Card 5d0fdd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Card 5d0fdd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Card 5d0fdd.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Card 8ed50d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Card 8ed50d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Card 8ed50d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Card 8ed50d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Card 9bcafb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Card 9bcafb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Card 9bcafb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Card 9bcafb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Card c51bff.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Card c51bff.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Card c51bff.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Card c51bff.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Card dfff72.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Card dfff72.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Card dfff72.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Card dfff72.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Card e7b998.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Card e7b998.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Card e7b998.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Card e7b998.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Card Scenario 3dc34f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Card Scenario 3dc34f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Card Scenario 3dc34f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Card Scenario 3dc34f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile 6e4a78.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile 6e4a78.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile 6e4a78.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile 6e4a78.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile a5b019.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile a5b019.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile a5b019.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile a5b019.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile bbb99f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile bbb99f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile bbb99f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile bbb99f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile d7eb78.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile d7eb78.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile d7eb78.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile d7eb78.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile d82996.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile d82996.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile d82996.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile d82996.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile e413cc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile e413cc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile e413cc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile e413cc.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile edb80f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile edb80f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile edb80f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile edb80f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile f90f84.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile f90f84.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile f90f84.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile f90f84.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile fcfbbe.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile fcfbbe.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile fcfbbe.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile fcfbbe.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile Bridge of Sighs 2d9794.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile Bridge of Sighs 2d9794.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile Bridge of Sighs 2d9794.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile Bridge of Sighs 2d9794.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile Bridge of Sighs 2d9794.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile Bridge of Sighs 2d9794.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile Bridge of Sighs 2d9794.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile Bridge of Sighs 2d9794.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Deck 3be6e8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Deck 3be6e8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Deck 3be6e8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Deck 3be6e8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Deck Act Deck cd676c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Deck Act Deck cd676c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Deck Act Deck cd676c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Deck Act Deck cd676c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Deck Agenda Deck 8f569e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Deck Agenda Deck 8f569e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Deck Agenda Deck 8f569e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Deck Agenda Deck 8f569e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Deck Encounter Deck dde586.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Deck Encounter Deck dde586.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/Deck Encounter Deck dde586.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/Deck Encounter Deck dde586.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/DeckCustom Set Aside da6072.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/DeckCustom Set Aside da6072.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs 578e97/DeckCustom Set Aside da6072.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Bridge of Sighs 578e97/DeckCustom Set Aside da6072.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51.yaml index cf70f20c5..502f02d3d 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51.yaml @@ -75,12 +75,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 32.5797043 - posY: 6.07816648 - posZ: -40.52858 - rotX: 359.983246 + posX: 12.2500029 + posY: 1.47031677 + posZ: 19.9864082 + rotX: 359.920135 rotY: 270.0 - rotZ: 0.003536496 + rotZ: 0.01687367 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Card Abbess Allegria Di Biase 1e7f1b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Card Abbess Allegria Di Biase 1e7f1b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Card Abbess Allegria Di Biase 1e7f1b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Card Abbess Allegria Di Biase 1e7f1b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Card Canal-side eb8aad.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Card Canal-side eb8aad.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Card Canal-side eb8aad.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Card Canal-side eb8aad.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Card San Marco Basilica 0368c1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Card San Marco Basilica 0368c1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Card San Marco Basilica 0368c1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Card San Marco Basilica 0368c1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Card Scenario aa7abc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Card Scenario aa7abc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Card Scenario aa7abc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Card Scenario aa7abc.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Model_Bag Set-aside a45247.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Model_Bag Set-aside a45247.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Model_Bag Set-aside a45247.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Model_Bag Set-aside a45247/Card Cnidathqua 4d3a26.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Model_Bag Set-aside a45247/Card Cnidathqua 4d3a26.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Model_Bag Set-aside a45247/Card Cnidathqua 4d3a26.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Model_Bag Set-aside a45247/Card Cnidathqua 4d3a26.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Model_Bag Set-aside a45247/Deck Masks 6fb734.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Model_Bag Set-aside a45247/Deck Masks 6fb734.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Model_Bag Set-aside a45247/Deck Masks 6fb734.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Model_Bag Set-aside a45247/Deck Masks 6fb734.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 12d492.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 12d492.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 12d492.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 12d492.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 44b0c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 44b0c5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 44b0c5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 44b0c5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 4d3553.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 4d3553.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 4d3553.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 4d3553.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 81a6f5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 81a6f5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 81a6f5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 81a6f5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 949c7d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 949c7d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 949c7d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 949c7d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile ab0576.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile ab0576.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile ab0576.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile ab0576.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile b676d8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile b676d8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile b676d8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile b676d8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile fde05d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile fde05d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile fde05d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile fde05d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile Carnevale of Horrors a5891b.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile Carnevale of Horrors a5891b.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile Carnevale of Horrors a5891b.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile Carnevale of Horrors a5891b.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile Carnevale of Horrors a5891b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile Carnevale of Horrors a5891b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile Carnevale of Horrors a5891b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile Carnevale of Horrors a5891b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck 2e4956.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck 2e4956.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck 2e4956.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck 2e4956.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Act Deck 655937.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Act Deck 655937.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Act Deck 655937.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Act Deck 655937.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Agenda Deck a49fb6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Agenda Deck a49fb6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Agenda Deck a49fb6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Agenda Deck a49fb6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Encounter Deck 4cc43d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Encounter Deck 4cc43d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Encounter Deck 4cc43d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Encounter Deck 4cc43d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Masked Carnevale-Goer bb43b8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Masked Carnevale-Goer bb43b8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Masked Carnevale-Goer bb43b8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Masked Carnevale-Goer bb43b8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck SetupResolution d5e519.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck SetupResolution d5e519.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck SetupResolution d5e519.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck SetupResolution d5e519.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017.yaml index 6e323c091..d7fafeed2 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017.yaml @@ -80,12 +80,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 29.0865841 - posY: 9.346516 - posZ: -30.97372 + posX: 19.1796665 + posY: 4.31238127 + posZ: -26.6116028 rotX: 359.983276 - rotY: 270.0001 - rotZ: 0.00353552424 + rotY: 270.000061 + rotZ: 0.00353552541 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Card Abbess Allegria Di Biase 1e7f1b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Card Abbess Allegria Di Biase 1e7f1b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Card Abbess Allegria Di Biase 1e7f1b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Card Abbess Allegria Di Biase 1e7f1b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Card San Marco Basilica 0368c1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Card San Marco Basilica 0368c1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Card San Marco Basilica 0368c1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Card San Marco Basilica 0368c1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/CardCustom Scenario 50caf4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/CardCustom Scenario 50caf4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/CardCustom Scenario 50caf4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/CardCustom Scenario 50caf4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543/Card Atlatch-Nacha a2f955.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543/Card Atlatch-Nacha a2f955.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543/Card Atlatch-Nacha a2f955.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543/Card Atlatch-Nacha a2f955.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha 34d21c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha 34d21c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha 34d21c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha 34d21c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha 6af4f4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha 6af4f4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha 6af4f4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha 6af4f4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha 8b17a1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha 8b17a1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha 8b17a1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha 8b17a1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha f4d669.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha f4d669.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha f4d669.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha f4d669.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/CardCustom Daughter of Atlach-Nacha b7e6a3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/CardCustom Daughter of Atlach-Nacha b7e6a3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/CardCustom Daughter of Atlach-Nacha b7e6a3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/CardCustom Daughter of Atlach-Nacha b7e6a3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Deck Masks 6fb734.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Deck Masks 6fb734.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Deck Masks 6fb734.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Deck Masks 6fb734.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Deck Spinners in Darkness 912fa4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Deck Spinners in Darkness 912fa4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Deck Spinners in Darkness 912fa4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Model_Bag Set-aside a45247/Deck Spinners in Darkness 912fa4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile 12d492.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile 12d492.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile 12d492.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile 12d492.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile 44b0c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile 44b0c5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile 44b0c5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile 44b0c5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile 4d3553.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile 4d3553.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile 4d3553.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile 4d3553.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile 81a6f5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile 81a6f5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile 81a6f5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile 81a6f5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile 949c7d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile 949c7d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile 949c7d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile 949c7d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile ab0576.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile ab0576.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile ab0576.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile ab0576.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile b676d8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile b676d8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile b676d8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile b676d8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile fde05d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile fde05d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile fde05d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile fde05d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile Carnevale of Spiders a5891b.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile Carnevale of Spiders a5891b.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile Carnevale of Spiders a5891b.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile Carnevale of Spiders a5891b.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile Carnevale of Spiders a5891b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile Carnevale of Spiders a5891b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile Carnevale of Spiders a5891b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Custom_Tile Carnevale of Spiders a5891b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Deck 2e4956.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Deck 2e4956.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Deck 2e4956.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Deck 2e4956.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Deck 3c6d68.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Deck 3c6d68.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Deck 3c6d68.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Deck 3c6d68.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Deck Act Deck 4d5e5f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Deck Act Deck 4d5e5f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Deck Act Deck 4d5e5f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Deck Act Deck 4d5e5f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Deck Agenda Deck c3031b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Deck Agenda Deck c3031b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Deck Agenda Deck c3031b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Deck Agenda Deck c3031b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Deck Encounter Deck 4cc43d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Deck Encounter Deck 4cc43d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Deck Encounter Deck 4cc43d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Deck Encounter Deck 4cc43d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Deck Masked Carnevale-Goer bb43b8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Deck Masked Carnevale-Goer bb43b8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of Spiders e57017/Deck Masked Carnevale-Goer bb43b8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Carnevale of Spiders e57017/Deck Masked Carnevale-Goer bb43b8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730.yaml index b9be263f2..f6ee7537d 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730.yaml @@ -87,12 +87,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 16.4952469 - posY: 3.45468283 - posZ: -31.0068913 + posX: 14.9060183 + posY: 3.32493353 + posZ: -23.5322189 rotX: 359.983246 rotY: 270.000061 - rotZ: 0.00353695918 + rotZ: 0.00353695871 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Boiler Room 95ae75.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Boiler Room 95ae75.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Boiler Room 95ae75.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Boiler Room 95ae75.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Bridge 3d2703.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Bridge 3d2703.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Bridge 3d2703.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Bridge 3d2703.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Deck Lounge and Theatre b1252d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Deck Lounge and Theatre b1252d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Deck Lounge and Theatre b1252d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Deck Lounge and Theatre b1252d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Dining Room e56d08.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Dining Room e56d08.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Dining Room e56d08.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Dining Room e56d08.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Engine Room 0b9a16.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Engine Room 0b9a16.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Engine Room 0b9a16.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Engine Room 0b9a16.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Galley c1e108.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Galley c1e108.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Galley c1e108.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Galley c1e108.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Library 766811.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Library 766811.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Library 766811.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Library 766811.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Passenger Cabins bc2d31.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Passenger Cabins bc2d31.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Passenger Cabins bc2d31.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Passenger Cabins bc2d31.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Sun Deck 9a3e53.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Sun Deck 9a3e53.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Sun Deck 9a3e53.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Sun Deck 9a3e53.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 0516fb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 0516fb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 0516fb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 0516fb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 136552.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 136552.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 136552.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 136552.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 63a979.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 63a979.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 63a979.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 63a979.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 7a48d8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 7a48d8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 7a48d8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 7a48d8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile a76b5b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile a76b5b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile a76b5b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile a76b5b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile b76ce7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile b76ce7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile b76ce7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile b76ce7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile c66ac0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile c66ac0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile c66ac0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile c66ac0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile cf5168.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile cf5168.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile cf5168.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile cf5168.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile d7f943.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile d7f943.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile d7f943.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile d7f943.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile dea3d0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile dea3d0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile dea3d0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile dea3d0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Cargo Room 2f4093.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Cargo Room 2f4093.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Cargo Room 2f4093.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Cargo Room 2f4093.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Open Water c5a4bf.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Open Water c5a4bf.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Open Water c5a4bf.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Open Water c5a4bf.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Order Enforcer bf0eaa.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Order Enforcer bf0eaa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Order Enforcer bf0eaa.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Order Enforcer bf0eaa.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Scenario 4339b6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Scenario 4339b6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Scenario 4339b6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Scenario 4339b6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Card Inspector Legrasse b1d444.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Card Inspector Legrasse b1d444.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Card Inspector Legrasse b1d444.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Card Inspector Legrasse b1d444.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Card Lifeboat 4afdfb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Card Lifeboat 4afdfb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Card Lifeboat 4afdfb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Card Lifeboat 4afdfb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Card Luther Marsh 13188c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Card Luther Marsh 13188c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Card Luther Marsh 13188c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Card Luther Marsh 13188c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Deck Crates of Goods 2a79ab.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Deck Crates of Goods 2a79ab.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Deck Crates of Goods 2a79ab.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Deck Crates of Goods 2a79ab.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Deck Deep Ones f8d54f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Deck Deep Ones f8d54f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Deck Deep Ones f8d54f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Deck Deep Ones f8d54f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Deck Sinking Ship 281fc8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Deck Sinking Ship 281fc8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Deck Sinking Ship 281fc8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Deck Sinking Ship 281fc8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 4736d9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 4736d9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 4736d9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 4736d9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 68e1d9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 68e1d9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 68e1d9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 68e1d9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 7b0f48.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 7b0f48.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 7b0f48.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 7b0f48.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 8f2b3d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 8f2b3d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 8f2b3d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 8f2b3d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile be5d2b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile be5d2b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile be5d2b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile be5d2b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile Consternation on the Constellation bbb70a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile Consternation on the Constellation bbb70a.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile Consternation on the Constellation bbb70a.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile Consternation on the Constellation bbb70a.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile Consternation on the Constellation bbb70a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile Consternation on the Constellation bbb70a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile Consternation on the Constellation bbb70a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile Consternation on the Constellation bbb70a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Act Deck c34f49.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Act Deck c34f49.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Act Deck c34f49.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Act Deck c34f49.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Agenda Deck 14fd91.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Agenda Deck 14fd91.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Agenda Deck 14fd91.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Agenda Deck 14fd91.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Encounter Deck a1514c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Encounter Deck a1514c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Encounter Deck a1514c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Encounter Deck a1514c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Resolution 011e57.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Resolution 011e57.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Resolution 011e57.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Resolution 011e57.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Setup 370ae5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Setup 370ae5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Setup 370ae5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Setup 370ae5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039.yaml index 352bbbc78..f7fdfb286 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039.yaml @@ -61,12 +61,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 30.0238743 - posY: 3.42554975 - posZ: -43.4692726 - rotX: 359.985626 + posX: 12.2502041 + posY: 1.472672 + posZ: 27.9864082 + rotX: 359.920135 rotY: 270.0 - rotZ: -0.0002225731 + rotZ: 0.01687395 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Card Curse of the Rougarou 569b06.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Card Curse of the Rougarou 569b06.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Card Curse of the Rougarou 569b06.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Card Curse of the Rougarou 569b06.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Card Monstrous Transformation ab08e0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Card Monstrous Transformation ab08e0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Card Monstrous Transformation ab08e0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Card Monstrous Transformation ab08e0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Card The Rougarou e86419.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Card The Rougarou e86419.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Card The Rougarou e86419.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Card The Rougarou e86419.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Deck Encounter Deck aaec7e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Deck Encounter Deck aaec7e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Deck Encounter Deck aaec7e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Deck Encounter Deck aaec7e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck New Orleans d98751.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck New Orleans d98751.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck New Orleans d98751.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck New Orleans d98751.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck Riverside ab7286.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck Riverside ab7286.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck Riverside ab7286.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck Riverside ab7286.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck Unhallowed Land 3c3a20.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck Unhallowed Land 3c3a20.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck Unhallowed Land 3c3a20.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck Unhallowed Land 3c3a20.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck Wilderness a287d0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck Wilderness a287d0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck Wilderness a287d0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck Wilderness a287d0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Card Scenario 9d0d56.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Card Scenario 9d0d56.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Card Scenario 9d0d56.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Card Scenario 9d0d56.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247/Card Bear Trap 74840a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247/Card Bear Trap 74840a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247/Card Bear Trap 74840a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247/Card Bear Trap 74840a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247/Card Fishing Net c7b748.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247/Card Fishing Net c7b748.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247/Card Fishing Net c7b748.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247/Card Fishing Net c7b748.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247/Card Lady Esprit 37a76b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247/Card Lady Esprit 37a76b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247/Card Lady Esprit 37a76b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247/Card Lady Esprit 37a76b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Tile Curse of the Rougarou cf0c00.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Tile Curse of the Rougarou cf0c00.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Tile Curse of the Rougarou cf0c00.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Tile Curse of the Rougarou cf0c00.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Tile Curse of the Rougarou cf0c00.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Tile Curse of the Rougarou cf0c00.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Tile Curse of the Rougarou cf0c00.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Tile Curse of the Rougarou cf0c00.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Deck 921551.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Deck 921551.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Deck 921551.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Deck 921551.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Deck Act d47bca.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Deck Act d47bca.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Deck Act d47bca.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Deck Act d47bca.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Deck Agenda 917668.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Deck Agenda 917668.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Deck Agenda 917668.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Deck Agenda 917668.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Deck Encounter Deck 134d83.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Deck Encounter Deck 134d83.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the Rougarou db7039/Deck Encounter Deck 134d83.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Curse of the Rougarou db7039/Deck Encounter Deck 134d83.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612.ttslua diff --git a/unpacked/Custom_Model_Bag Darkness Falls c6a612.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Darkness Falls c6a612.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612.yaml index adbf345a4..534acabd4 100644 --- a/unpacked/Custom_Model_Bag Darkness Falls c6a612.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612.yaml @@ -70,12 +70,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 32.2299957 - posY: 1.43159461 - posZ: -16.9208775 - rotX: 359.920135 - rotY: 270.0 - rotZ: 0.0168739036 + posX: 14.484252 + posY: 4.313796 + posZ: -29.3027534 + rotX: 359.983246 + rotY: 270.000061 + rotZ: 0.00353709538 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag Darkness Falls c6a612/CardCustom 5660ef.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/CardCustom 5660ef.yaml similarity index 94% rename from unpacked/Custom_Model_Bag Darkness Falls c6a612/CardCustom 5660ef.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/CardCustom 5660ef.yaml index 4f32a9bb4..51dd62046 100644 --- a/unpacked/Custom_Model_Bag Darkness Falls c6a612/CardCustom 5660ef.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/CardCustom 5660ef.yaml @@ -35,10 +35,10 @@ Tooltip: true Transform: posX: -30.2242184 posY: 1.64166987 - posZ: 15.1899834 + posZ: 15.1899843 rotX: 359.9201 rotY: 270.001038 - rotZ: 0.016838165 + rotZ: 0.016838152 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Darkness Falls c6a612/CardCustom 6c3b6c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/CardCustom 6c3b6c.yaml similarity index 92% rename from unpacked/Custom_Model_Bag Darkness Falls c6a612/CardCustom 6c3b6c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/CardCustom 6c3b6c.yaml index 99d5511eb..a21b50125 100644 --- a/unpacked/Custom_Model_Bag Darkness Falls c6a612/CardCustom 6c3b6c.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/CardCustom 6c3b6c.yaml @@ -35,10 +35,10 @@ Tooltip: true Transform: posX: -17.1200027 posY: 1.61892271 - posZ: -0.0299004037 + posZ: -0.02990041 rotX: 359.9201 - rotY: 269.99707 - rotZ: 0.0167549159 + rotY: 269.99704 + rotZ: 0.0167549327 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Darkness Falls c6a612/CardCustom 7d8fed.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/CardCustom 7d8fed.yaml similarity index 92% rename from unpacked/Custom_Model_Bag Darkness Falls c6a612/CardCustom 7d8fed.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/CardCustom 7d8fed.yaml index bc349276c..a2fa603eb 100644 --- a/unpacked/Custom_Model_Bag Darkness Falls c6a612/CardCustom 7d8fed.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/CardCustom 7d8fed.yaml @@ -35,10 +35,10 @@ Tooltip: true Transform: posX: -30.2243 posY: 1.63271511 - posZ: -15.2799978 + posZ: -15.2799988 rotX: 359.9201 - rotY: 269.999939 - rotZ: 0.0168397389 + rotY: 269.999969 + rotZ: 0.0168396868 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Darkness Falls c6a612/CardCustom ec7842.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/CardCustom ec7842.yaml similarity index 90% rename from unpacked/Custom_Model_Bag Darkness Falls c6a612/CardCustom ec7842.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/CardCustom ec7842.yaml index fe2a02c09..f0b30e4bc 100644 --- a/unpacked/Custom_Model_Bag Darkness Falls c6a612/CardCustom ec7842.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/CardCustom ec7842.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -16.030098 + posX: -16.0301 posY: 1.63047183 - posZ: -2.20080066 + posZ: -2.20080018 rotX: 359.9201 - rotY: 269.9988 - rotZ: 0.734871864 + rotY: 269.998749 + rotZ: 0.7348706 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Darkness Falls c6a612/CardCustom Scenario fb280a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/CardCustom Scenario fb280a.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Darkness Falls c6a612/CardCustom Scenario fb280a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/CardCustom Scenario fb280a.yaml index 463c18197..880a493e7 100644 --- a/unpacked/Custom_Model_Bag Darkness Falls c6a612/CardCustom Scenario fb280a.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/CardCustom Scenario fb280a.yaml @@ -38,7 +38,7 @@ Transform: posZ: -10.4412031 rotX: 359.919739 rotY: 270.0001 - rotZ: 0.0168371424 + rotZ: 0.0168370344 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Darkness Falls c6a612/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Custom_Model_Bag Set-aside a45247.yaml similarity index 96% rename from unpacked/Custom_Model_Bag Darkness Falls c6a612/Custom_Model_Bag Set-aside a45247.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Custom_Model_Bag Set-aside a45247.yaml index eadb2a840..d8072c605 100644 --- a/unpacked/Custom_Model_Bag Darkness Falls c6a612/Custom_Model_Bag Set-aside a45247.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Custom_Model_Bag Set-aside a45247.yaml @@ -48,12 +48,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 1.69610071 + posX: 1.69610083 posY: 1.55831766 posZ: 14.2787037 rotX: 359.955139 rotY: 225.006561 - rotZ: 0.06866543 + rotZ: 0.06866548 scaleX: 2.0 scaleY: 2.0 scaleZ: 2.0 diff --git a/unpacked/Custom_Model_Bag Darkness Falls c6a612/Custom_Model_Bag Set-aside a45247/CardCustom 70d8db.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Custom_Model_Bag Set-aside a45247/CardCustom 70d8db.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Darkness Falls c6a612/Custom_Model_Bag Set-aside a45247/CardCustom 70d8db.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Custom_Model_Bag Set-aside a45247/CardCustom 70d8db.yaml diff --git a/unpacked/Custom_Model_Bag Darkness Falls c6a612/Custom_Model_Bag Set-aside a45247/CardCustom adf09e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Custom_Model_Bag Set-aside a45247/CardCustom adf09e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Darkness Falls c6a612/Custom_Model_Bag Set-aside a45247/CardCustom adf09e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Custom_Model_Bag Set-aside a45247/CardCustom adf09e.yaml diff --git a/unpacked/Custom_Model_Bag Darkness Falls c6a612/Custom_Model_Bag Set-aside a45247/CardCustom baa523.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Custom_Model_Bag Set-aside a45247/CardCustom baa523.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Darkness Falls c6a612/Custom_Model_Bag Set-aside a45247/CardCustom baa523.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Custom_Model_Bag Set-aside a45247/CardCustom baa523.yaml diff --git a/unpacked/Custom_Model_Bag Darkness Falls c6a612/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Custom_Tile 7234af.yaml similarity index 98% rename from unpacked/Custom_Model_Bag Darkness Falls c6a612/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Custom_Tile 7234af.yaml index bcc839cc0..cc335925b 100644 --- a/unpacked/Custom_Model_Bag Darkness Falls c6a612/Custom_Tile 7234af.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Custom_Tile 7234af.yaml @@ -125,10 +125,10 @@ Tooltip: true Transform: posX: -20.4147987 posY: 1.60989475 - posZ: -0.09340071 + posZ: -0.09340072 rotX: 359.9201 rotY: 270.009369 - rotZ: 0.01685618 + rotZ: 0.01685554 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Darkness Falls c6a612/Custom_Tile Darkness Falls b5928a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Custom_Tile Darkness Falls b5928a.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag Darkness Falls c6a612/Custom_Tile Darkness Falls b5928a.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Custom_Tile Darkness Falls b5928a.ttslua diff --git a/unpacked/Custom_Model_Bag Darkness Falls c6a612/Custom_Tile Darkness Falls b5928a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Custom_Tile Darkness Falls b5928a.yaml similarity index 97% rename from unpacked/Custom_Model_Bag Darkness Falls c6a612/Custom_Tile Darkness Falls b5928a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Custom_Tile Darkness Falls b5928a.yaml index d465ab690..f748b96f0 100644 --- a/unpacked/Custom_Model_Bag Darkness Falls c6a612/Custom_Tile Darkness Falls b5928a.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Custom_Tile Darkness Falls b5928a.yaml @@ -37,7 +37,7 @@ Transform: posZ: -14.8775015 rotX: 359.919739 rotY: 270.0014 - rotZ: 0.0168358181 + rotZ: 0.0168358311 scaleX: 2.2 scaleY: 1.0 scaleZ: 2.2 diff --git a/unpacked/Custom_Model_Bag Darkness Falls c6a612/Deck Act Deck 3fb8ed.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Deck Act Deck 3fb8ed.yaml similarity index 99% rename from unpacked/Custom_Model_Bag Darkness Falls c6a612/Deck Act Deck 3fb8ed.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Deck Act Deck 3fb8ed.yaml index 8ccce7e9a..c30f95834 100644 --- a/unpacked/Custom_Model_Bag Darkness Falls c6a612/Deck Act Deck 3fb8ed.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Deck Act Deck 3fb8ed.yaml @@ -247,7 +247,7 @@ Transform: posZ: -5.048503 rotX: 359.919739 rotY: 270.000061 - rotZ: 0.0168369487 + rotZ: 0.0168369357 scaleX: 0.9 scaleY: 1.0 scaleZ: 0.9 diff --git a/unpacked/Custom_Model_Bag Darkness Falls c6a612/Deck Agenda Deck fdd75d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Deck Agenda Deck fdd75d.yaml similarity index 98% rename from unpacked/Custom_Model_Bag Darkness Falls c6a612/Deck Agenda Deck fdd75d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Deck Agenda Deck fdd75d.yaml index 71494c389..ff1b6015e 100644 --- a/unpacked/Custom_Model_Bag Darkness Falls c6a612/Deck Agenda Deck fdd75d.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Deck Agenda Deck fdd75d.yaml @@ -190,10 +190,10 @@ Tooltip: true Transform: posX: -2.72470045 posY: 1.62076044 - posZ: 0.373299152 + posZ: 0.373299122 rotX: 359.919739 rotY: 269.9994 - rotZ: 0.0168377981 + rotZ: 0.0168377887 scaleX: 0.9 scaleY: 1.0 scaleZ: 0.9 diff --git a/unpacked/Custom_Model_Bag Darkness Falls c6a612/Deck Arkham Woods 4add31.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Deck Arkham Woods 4add31.yaml similarity index 99% rename from unpacked/Custom_Model_Bag Darkness Falls c6a612/Deck Arkham Woods 4add31.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Deck Arkham Woods 4add31.yaml index e14b52a6b..cbddaa087 100644 --- a/unpacked/Custom_Model_Bag Darkness Falls c6a612/Deck Arkham Woods 4add31.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Deck Arkham Woods 4add31.yaml @@ -220,10 +220,10 @@ Tooltip: true Transform: posX: -23.6765022 posY: 1.65464842 - posZ: -0.0300001912 + posZ: -0.03000019 rotX: 359.9201 rotY: 270.0 - rotZ: 0.0168414637 + rotZ: 0.0168414265 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag Darkness Falls c6a612/Deck Encounter Deck b756c0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Deck Encounter Deck b756c0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag Darkness Falls c6a612/Deck Encounter Deck b756c0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Deck Encounter Deck b756c0.yaml diff --git a/unpacked/Custom_Model_Bag Darkness Falls c6a612/Deck Setup 767864.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Deck Setup 767864.yaml similarity index 99% rename from unpacked/Custom_Model_Bag Darkness Falls c6a612/Deck Setup 767864.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Deck Setup 767864.yaml index 07a50040f..924579a59 100644 --- a/unpacked/Custom_Model_Bag Darkness Falls c6a612/Deck Setup 767864.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Darkness Falls c6a612/Deck Setup 767864.yaml @@ -139,7 +139,7 @@ Transform: posZ: -13.1002989 rotX: 359.919739 rotY: 270.0 - rotZ: 0.0168385021 + rotZ: 0.0168386251 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e.yaml index 59cf5f81e..b48210b59 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e.yaml @@ -70,12 +70,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -49.8467941 - posY: 1.97348177 - posZ: -129.002548 - rotX: 0.0208082329 + posX: 13.8281355 + posY: 4.3152566 + posZ: -32.862587 + rotX: 0.0208082311 rotY: 270.001129 - rotZ: 0.0167711973 + rotZ: 0.016771201 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Card Green Box d2cb13.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Card Green Box d2cb13.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Card Green Box d2cb13.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Card Green Box d2cb13.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Card Merle's Country Bunker ab39b9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Card Merle's Country Bunker ab39b9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Card Merle's Country Bunker ab39b9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Card Merle's Country Bunker ab39b9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Card Merle's Shut-Eye Motel 17807e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Card Merle's Shut-Eye Motel 17807e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Card Merle's Shut-Eye Motel 17807e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Card Merle's Shut-Eye Motel 17807e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Card Merle's Shut-Eye Motel 64b00f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Card Merle's Shut-Eye Motel 64b00f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Card Merle's Shut-Eye Motel 64b00f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Card Merle's Shut-Eye Motel 64b00f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Card Scenario Card 1a3caf.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Card Scenario Card 1a3caf.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Card Scenario Card 1a3caf.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Card Scenario Card 1a3caf.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Card The Spivey Home 261874.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Card The Spivey Home 261874.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Card The Spivey Home 261874.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Card The Spivey Home 261874.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Card Town Hall da2cbd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Card Town Hall da2cbd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Card Town Hall da2cbd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Card Town Hall da2cbd.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Card Merle's Shut-Eye Motel 363f15.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Card Merle's Shut-Eye Motel 363f15.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Card Merle's Shut-Eye Motel 363f15.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Card Merle's Shut-Eye Motel 363f15.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Card Minor Protomatter Spawn 0addaa.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Card Minor Protomatter Spawn 0addaa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Card Minor Protomatter Spawn 0addaa.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Card Minor Protomatter Spawn 0addaa.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Card Protomatter Mass 989196.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Card Protomatter Mass 989196.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Card Protomatter Mass 989196.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Card Protomatter Mass 989196.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Deck Assets 63ffae.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Deck Assets 63ffae.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Deck Assets 63ffae.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Deck Assets 63ffae.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Deck Crop Circles 310b6c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Deck Crop Circles 310b6c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Deck Crop Circles 310b6c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Deck Crop Circles 310b6c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Deck Enemies d2c1dc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Deck Enemies d2c1dc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Deck Enemies d2c1dc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Deck Enemies d2c1dc.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Deck Locations f0c29e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Deck Locations f0c29e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Deck Locations f0c29e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Deck Locations f0c29e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Tile Delta Geen Convergence 520889.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Tile Delta Geen Convergence 520889.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Tile Delta Geen Convergence 520889.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Tile Delta Geen Convergence 520889.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Tile Delta Geen Convergence 520889.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Tile Delta Geen Convergence 520889.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Tile Delta Geen Convergence 520889.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Tile Delta Geen Convergence 520889.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Deck 8a689d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Deck 8a689d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Deck 8a689d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Deck 8a689d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Deck Act Deck ddc104.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Deck Act Deck ddc104.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Deck Act Deck ddc104.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Deck Act Deck ddc104.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Deck Agenda Deck 9dab73.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Deck Agenda Deck 9dab73.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Deck Agenda Deck 9dab73.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Deck Agenda Deck 9dab73.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Deck Encounter Deck 4a7540.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Deck Encounter Deck 4a7540.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Deck Encounter Deck 4a7540.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Deck Encounter Deck 4a7540.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Deck Green Box Deck fe4e96.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Deck Green Box Deck fe4e96.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Deck Green Box Deck fe4e96.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Deck Green Box Deck fe4e96.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Tablet Campaign Log 8985c4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Tablet Campaign Log 8985c4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green Convergence ac164e/Tablet Campaign Log 8985c4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Delta Green Convergence ac164e/Tablet Campaign Log 8985c4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d.yaml similarity index 94% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d.yaml index 106c6fbd6..22041b8be 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d.yaml @@ -56,12 +56,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 39.8812981 - posY: 3.38420582 - posZ: -56.64191 - rotX: 359.983246 - rotY: 269.999969 - rotZ: 0.00353693613 + posX: 12.2499084 + posY: 1.4656055 + posZ: 3.98639965 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168734342 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Card Instructions 57e33a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Card Instructions 57e33a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Card Instructions 57e33a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Card Instructions 57e33a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Cairo Bazaar d2de0e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Cairo Bazaar d2de0e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Cairo Bazaar d2de0e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Cairo Bazaar d2de0e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Expedition Camp 41f836.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Expedition Camp 41f836.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Expedition Camp 41f836.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Expedition Camp 41f836.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Museum of Egyptian Antiquities fb63e7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Museum of Egyptian Antiquities fb63e7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Museum of Egyptian Antiquities fb63e7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Museum of Egyptian Antiquities fb63e7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Outskirts of Cairo 893ca0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Outskirts of Cairo 893ca0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Outskirts of Cairo 893ca0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Outskirts of Cairo 893ca0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Setup & Resolution 0a7aa9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Setup & Resolution 0a7aa9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Setup & Resolution 0a7aa9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Setup & Resolution 0a7aa9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Streets of Cairo 4e1b71.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Streets of Cairo 4e1b71.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Streets of Cairo 4e1b71.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Streets of Cairo 4e1b71.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Temple Courtyard ead562.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Temple Courtyard ead562.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Temple Courtyard ead562.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Temple Courtyard ead562.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Visual Exploration Reference 7e34fb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Visual Exploration Reference 7e34fb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Visual Exploration Reference 7e34fb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Visual Exploration Reference 7e34fb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835/Card Ancient Ankh 0ce113.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835/Card Ancient Ankh 0ce113.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835/Card Ancient Ankh 0ce113.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835/Card Ancient Ankh 0ce113.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835/Card John & Jessie Burke cfb393.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835/Card John & Jessie Burke cfb393.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835/Card John & Jessie Burke cfb393.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835/Card John & Jessie Burke cfb393.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835/Card Neith 7e0c5a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835/Card Neith 7e0c5a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835/Card Neith 7e0c5a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835/Card Neith 7e0c5a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835/Deck Abyssal Revenant ae284e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835/Deck Abyssal Revenant ae284e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835/Deck Abyssal Revenant ae284e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835/Deck Abyssal Revenant ae284e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835/Deck Expedition Locations c88e3e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835/Deck Expedition Locations c88e3e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835/Deck Expedition Locations c88e3e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835/Deck Expedition Locations c88e3e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 046379.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 046379.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 046379.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 046379.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 3e5b77.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 3e5b77.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 3e5b77.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 3e5b77.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 446c93.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 446c93.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 446c93.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 446c93.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 82ed12.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 82ed12.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 82ed12.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 82ed12.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 957a1e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 957a1e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 957a1e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 957a1e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile bb722a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile bb722a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile bb722a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile bb722a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile d5e312.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile d5e312.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile d5e312.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile d5e312.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile fcb007.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile fcb007.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile fcb007.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile fcb007.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard b7af99.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard b7af99.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard b7af99.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard b7af99.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard b7af99.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard b7af99.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard b7af99.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard b7af99.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard e19c97.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard e19c97.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard e19c97.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard e19c97.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard e19c97.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard e19c97.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard e19c97.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard e19c97.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Deck Act Deck 4cef7f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Deck Act Deck 4cef7f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Deck Act Deck 4cef7f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Deck Act Deck 4cef7f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Deck Agenda Deck 377362.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Deck Agenda Deck 377362.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Deck Agenda Deck 377362.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Deck Agenda Deck 377362.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Deck Brotherhood 2b516a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Deck Brotherhood 2b516a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Deck Brotherhood 2b516a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Deck Brotherhood 2b516a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Deck Encounter Deck 45c2bd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Deck Encounter Deck 45c2bd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Deck Encounter Deck 45c2bd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Deck Encounter Deck 45c2bd.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Card Expedition Camp 41f836.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Card Expedition Camp 41f836.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Card Expedition Camp 41f836.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Card Expedition Camp 41f836.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Card Setup & Resolution 80f19f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Card Setup & Resolution 80f19f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Card Setup & Resolution 80f19f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Card Setup & Resolution 80f19f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Card Visual Exploration Reference d43cb8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Card Visual Exploration Reference d43cb8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Card Visual Exploration Reference d43cb8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Card Visual Exploration Reference d43cb8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c/Card Eldritch Gate bdbf89.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c/Card Eldritch Gate bdbf89.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c/Card Eldritch Gate bdbf89.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c/Card Eldritch Gate bdbf89.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c/Card Khopesh of the Abyss dc674e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c/Card Khopesh of the Abyss dc674e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c/Card Khopesh of the Abyss dc674e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c/Card Khopesh of the Abyss dc674e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c/Card Summoned Nightgaunt cf96b9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c/Card Summoned Nightgaunt cf96b9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c/Card Summoned Nightgaunt cf96b9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c/Card Summoned Nightgaunt cf96b9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c/Card Xzharah 1484da.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c/Card Xzharah 1484da.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c/Card Xzharah 1484da.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c/Card Xzharah 1484da.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c/Deck Dreaded Shantak e926a5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c/Deck Dreaded Shantak e926a5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c/Deck Dreaded Shantak e926a5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c/Deck Dreaded Shantak e926a5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c/Deck Otherworld Locations 28e9e9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c/Deck Otherworld Locations 28e9e9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c/Deck Otherworld Locations 28e9e9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c/Deck Otherworld Locations 28e9e9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Token Scenario - EasyStandard afc7b5.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Token Scenario - EasyStandard afc7b5.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Token Scenario - EasyStandard afc7b5.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Token Scenario - EasyStandard afc7b5.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Token Scenario - EasyStandard afc7b5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Token Scenario - EasyStandard afc7b5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Token Scenario - EasyStandard afc7b5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Token Scenario - EasyStandard afc7b5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Token Scenario - HardExpert 9ed124.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Token Scenario - HardExpert 9ed124.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Token Scenario - HardExpert 9ed124.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Token Scenario - HardExpert 9ed124.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Token Scenario - HardExpert 9ed124.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Token Scenario - HardExpert 9ed124.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Token Scenario - HardExpert 9ed124.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Token Scenario - HardExpert 9ed124.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Act Deck c81564.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Act Deck c81564.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Act Deck c81564.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Act Deck c81564.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Agenda Deck 06998d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Agenda Deck 06998d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Agenda Deck 06998d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Agenda Deck 06998d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Brotherhood 964685.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Brotherhood 964685.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Brotherhood 964685.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Brotherhood 964685.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Encounter Deck 17291b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Encounter Deck 17291b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Encounter Deck 17291b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Encounter Deck 17291b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Exploration Deck cfa863.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Exploration Deck cfa863.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Exploration Deck cfa863.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Exploration Deck cfa863.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Tile Guardians of the Abyss 82e1ed.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Tile Guardians of the Abyss 82e1ed.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Tile Guardians of the Abyss 82e1ed.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Tile Guardians of the Abyss 82e1ed.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Tile Guardians of the Abyss 82e1ed.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Tile Guardians of the Abyss 82e1ed.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Tile Guardians of the Abyss 82e1ed.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Tile Guardians of the Abyss 82e1ed.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8.yaml index 8d4d1a4f0..3c196095e 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8.yaml @@ -62,12 +62,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 0.394518822 - posY: 8.485955 - posZ: -137.854279 - rotX: 0.0208087377 + posX: 11.0962877 + posY: 3.32873917 + posZ: -31.9331512 + rotX: 0.02080874 rotY: 270.000061 - rotZ: 0.0167711657 + rotZ: 0.0167711675 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Card 9b0cf5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Card 9b0cf5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Card 9b0cf5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Card 9b0cf5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Card Scenario 1e99b2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Card Scenario 1e99b2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Card Scenario 1e99b2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Card Scenario 1e99b2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Card Scenario ab12bb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Card Scenario ab12bb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Card Scenario ab12bb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Card Scenario ab12bb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Model_Bag Set-aside a45247.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Model_Bag Set-aside a45247.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Model_Bag Set-aside a45247.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Model_Bag Set-aside a45247/Card 1dddb9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Model_Bag Set-aside a45247/Card 1dddb9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Model_Bag Set-aside a45247/Card 1dddb9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Model_Bag Set-aside a45247/Card 1dddb9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Model_Bag Set-aside a45247/Card 68a1f8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Model_Bag Set-aside a45247/Card 68a1f8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Model_Bag Set-aside a45247/Card 68a1f8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Model_Bag Set-aside a45247/Card 68a1f8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Tile Happy's Funhouse c5008a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Tile Happy's Funhouse c5008a.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Tile Happy's Funhouse c5008a.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Tile Happy's Funhouse c5008a.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Tile Happy's Funhouse c5008a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Tile Happy's Funhouse c5008a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Tile Happy's Funhouse c5008a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Tile Happy's Funhouse c5008a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck 1aa87a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck 1aa87a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck 1aa87a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck 1aa87a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck 4e82c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck 4e82c5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck 4e82c5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck 4e82c5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Act 3296c9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Act 3296c9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Act 3296c9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Act 3296c9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Agenda 1c6049.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Agenda 1c6049.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Agenda 1c6049.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Agenda 1c6049.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Instructions bdd422.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Instructions bdd422.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Instructions bdd422.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Instructions bdd422.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Locations fadb67.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Locations fadb67.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Locations fadb67.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Locations fadb67.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/DeckCustom Encounter Deck 13c965.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/DeckCustom Encounter Deck 13c965.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy's Funhouse e7d9f8/DeckCustom Encounter Deck 13c965.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Happy's Funhouse e7d9f8/DeckCustom Encounter Deck 13c965.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b.yaml index 039b83cf7..e53ae6b8c 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b.yaml @@ -66,11 +66,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 65.21953 - posY: 2.543669 - posZ: -79.29354 + posX: 6.73124647 + posY: 3.338439 + posZ: -21.1755486 rotX: 359.979767 - rotY: 270.000153 + rotY: 270.000122 rotZ: 0.00427301461 scaleX: 2.21 scaleY: 0.46 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Bag Campaign Guide d5b604.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Bag Campaign Guide d5b604.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Bag Campaign Guide d5b604.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Bag Campaign Guide d5b604.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686/Card cdbb7f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686/Card cdbb7f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686/Card cdbb7f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686/Card cdbb7f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686/Card d57d70.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686/Card d57d70.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686/Card d57d70.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686/Card d57d70.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686/Card Ainsley Wentworth, Esq. 55809d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686/Card Ainsley Wentworth, Esq. 55809d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686/Card Ainsley Wentworth, Esq. 55809d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686/Card Ainsley Wentworth, Esq. 55809d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686/Card Ainsley Wentworth, Esq. b1256b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686/Card Ainsley Wentworth, Esq. b1256b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686/Card Ainsley Wentworth, Esq. b1256b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686/Card Ainsley Wentworth, Esq. b1256b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e/Card 427afe.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e/Card 427afe.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e/Card 427afe.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e/Card 427afe.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e/Card 8ba462.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e/Card 8ba462.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e/Card 8ba462.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e/Card 8ba462.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e/Card Alma Winter 6e7ea8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e/Card Alma Winter 6e7ea8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e/Card Alma Winter 6e7ea8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e/Card Alma Winter 6e7ea8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e/Card Alma Winter d2913a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e/Card Alma Winter d2913a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e/Card Alma Winter d2913a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e/Card Alma Winter d2913a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3/Card 3dee9f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3/Card 3dee9f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3/Card 3dee9f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3/Card 3dee9f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3/Card 45db8c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3/Card 45db8c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3/Card 45db8c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3/Card 45db8c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3/Card David Emerson 3c216d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3/Card David Emerson 3c216d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3/Card David Emerson 3c216d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3/Card David Emerson 3c216d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3/Card David Emerson ecaa8c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3/Card David Emerson ecaa8c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3/Card David Emerson ecaa8c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3/Card David Emerson ecaa8c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43/Card 0d35ef.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43/Card 0d35ef.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43/Card 0d35ef.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43/Card 0d35ef.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43/Card 920ed7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43/Card 920ed7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43/Card 920ed7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43/Card 920ed7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43/Card Edith Alexander c72bdd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43/Card Edith Alexander c72bdd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43/Card Edith Alexander c72bdd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43/Card Edith Alexander c72bdd.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43/Card Edith Alexander f89508.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43/Card Edith Alexander f89508.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43/Card Edith Alexander f89508.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43/Card Edith Alexander f89508.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e/Card 2049d9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e/Card 2049d9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e/Card 2049d9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e/Card 2049d9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e/Card 21141d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e/Card 21141d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e/Card 21141d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e/Card 21141d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e/Card Ivan Orlov 057e04.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e/Card Ivan Orlov 057e04.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e/Card Ivan Orlov 057e04.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e/Card Ivan Orlov 057e04.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e/Card Ivan Orlov 08ab92.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e/Card Ivan Orlov 08ab92.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e/Card Ivan Orlov 08ab92.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e/Card Ivan Orlov 08ab92.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card 588f16.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card 588f16.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card 588f16.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card 588f16.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card e20744.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card e20744.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card e20744.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card e20744.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card eea1d3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card eea1d3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card eea1d3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card eea1d3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card Dark Stairwell 45cd63.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card Dark Stairwell 45cd63.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card Dark Stairwell 45cd63.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card Dark Stairwell 45cd63.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card Scenario 5a7cdb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card Scenario 5a7cdb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card Scenario 5a7cdb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card Scenario 5a7cdb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card Stairway 18b46f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card Stairway 18b46f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card Stairway 18b46f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card Stairway 18b46f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Back Booths 09a94a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Back Booths 09a94a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Back Booths 09a94a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Back Booths 09a94a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Balcony 7e22c1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Balcony 7e22c1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Balcony 7e22c1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Balcony 7e22c1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Dance Floor 6f22b2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Dance Floor 6f22b2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Dance Floor 6f22b2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Dance Floor 6f22b2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Dining Area 954f96.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Dining Area 954f96.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Dining Area 954f96.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Dining Area 954f96.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Imperial Entrance 349146.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Imperial Entrance 349146.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Imperial Entrance 349146.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Imperial Entrance 349146.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Lobby 4ebd97.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Lobby 4ebd97.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Lobby 4ebd97.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Lobby 4ebd97.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8/Deck Alaric Gang f36211.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8/Deck Alaric Gang f36211.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8/Deck Alaric Gang f36211.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8/Deck Alaric Gang f36211.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8/Deck Backroom Doors 45c385.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8/Deck Backroom Doors 45c385.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8/Deck Backroom Doors 45c385.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8/Deck Backroom Doors 45c385.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8/Deck Post-scenario rewards 9fd2e9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8/Deck Post-scenario rewards 9fd2e9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8/Deck Post-scenario rewards 9fd2e9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8/Deck Post-scenario rewards 9fd2e9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8/Deck Regular Deck 135d82.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8/Deck Regular Deck 135d82.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8/Deck Regular Deck 135d82.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8/Deck Regular Deck 135d82.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 21b7c9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 21b7c9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 21b7c9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 21b7c9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 49a255.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 49a255.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 49a255.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 49a255.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 6c9a78.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 6c9a78.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 6c9a78.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 6c9a78.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 8262aa.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 8262aa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 8262aa.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 8262aa.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 9ed742.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 9ed742.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 9ed742.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 9ed742.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile af6a85.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile af6a85.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile af6a85.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile af6a85.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile c7b7cc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile c7b7cc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile c7b7cc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile c7b7cc.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile d0209c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile d0209c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile d0209c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile d0209c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile e0f43f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile e0f43f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile e0f43f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile e0f43f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Deck Act Deck 0243c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Deck Act Deck 0243c5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Deck Act Deck 0243c5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Deck Act Deck 0243c5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Deck Agenda Deck 8f68a9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Deck Agenda Deck 8f68a9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Deck Agenda Deck 8f68a9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Deck Agenda Deck 8f68a9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Deck Encounter Deck be9f73.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Deck Encounter Deck be9f73.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Deck Encounter Deck be9f73.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Deck Encounter Deck be9f73.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Back Alley 5c8249.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Back Alley 5c8249.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Back Alley 5c8249.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Back Alley 5c8249.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Daiyu's Tea Garden 460803.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Daiyu's Tea Garden 460803.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Daiyu's Tea Garden 460803.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Daiyu's Tea Garden 460803.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Flea Market 10bac1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Flea Market 10bac1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Flea Market 10bac1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Flea Market 10bac1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Gateway to the East 6fe23b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Gateway to the East 6fe23b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Gateway to the East 6fe23b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Gateway to the East 6fe23b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Golden Temple of the Heavens 3a8ef9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Golden Temple of the Heavens 3a8ef9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Golden Temple of the Heavens 3a8ef9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Golden Temple of the Heavens 3a8ef9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Mingzhu Laundry 821b75.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Mingzhu Laundry 821b75.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Mingzhu Laundry 821b75.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Mingzhu Laundry 821b75.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Scenario 7037e8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Scenario 7037e8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Scenario 7037e8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Scenario 7037e8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card The Phoenix's Nest b20dd5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card The Phoenix's Nest b20dd5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card The Phoenix's Nest b20dd5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card The Phoenix's Nest b20dd5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Zihao's House of Fighting Arts 464a07.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Zihao's House of Fighting Arts 464a07.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Zihao's House of Fighting Arts 464a07.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Zihao's House of Fighting Arts 464a07.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card A Strange Idol 9de6cc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card A Strange Idol 9de6cc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card A Strange Idol 9de6cc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card A Strange Idol 9de6cc.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card Edwin Bruce 897e12.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card Edwin Bruce 897e12.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card Edwin Bruce 897e12.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card Edwin Bruce 897e12.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card Feng Shao 654ef3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card Feng Shao 654ef3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card Feng Shao 654ef3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card Feng Shao 654ef3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card Lin Xingjuan ac534f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card Lin Xingjuan ac534f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card Lin Xingjuan ac534f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card Lin Xingjuan ac534f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card The Dragon's Den 1bf440.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card The Dragon's Den 1bf440.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card The Dragon's Den 1bf440.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card The Dragon's Den 1bf440.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 02a39c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 02a39c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 02a39c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 02a39c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 0dd529.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 0dd529.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 0dd529.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 0dd529.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 3d7614.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 3d7614.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 3d7614.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 3d7614.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 651725.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 651725.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 651725.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 651725.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 664f8a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 664f8a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 664f8a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 664f8a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 697b33.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 697b33.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 697b33.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 697b33.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile bf761b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile bf761b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile bf761b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile bf761b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile f3d826.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile f3d826.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile f3d826.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile f3d826.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile fee8a2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile fee8a2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile fee8a2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile fee8a2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Act Deck V.I 4f3b10.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Act Deck V.I 4f3b10.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Act Deck V.I 4f3b10.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Act Deck V.I 4f3b10.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Act Deck V.II 5044b6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Act Deck V.II 5044b6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Act Deck V.II 5044b6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Act Deck V.II 5044b6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Agenda Deck 88d710.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Agenda Deck 88d710.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Agenda Deck 88d710.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Agenda Deck 88d710.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Alternate Eyes of the Dragon 031d10.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Alternate Eyes of the Dragon 031d10.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Alternate Eyes of the Dragon 031d10.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Alternate Eyes of the Dragon 031d10.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Encounter Deck 35feb6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Encounter Deck 35feb6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Encounter Deck 35feb6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Encounter Deck 35feb6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card First Class 26cc97.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card First Class 26cc97.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card First Class 26cc97.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card First Class 26cc97.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Port Hull e764b3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Port Hull e764b3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Port Hull e764b3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Port Hull e764b3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Scenario a14d0c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Scenario a14d0c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Scenario a14d0c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Scenario a14d0c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Second Class 4ea780.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Second Class 4ea780.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Second Class 4ea780.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Second Class 4ea780.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Service Corridors 886b98.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Service Corridors 886b98.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Service Corridors 886b98.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Service Corridors 886b98.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Starboard Hull 576222.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Starboard Hull 576222.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Starboard Hull 576222.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Starboard Hull 576222.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Steerage 9b0d7f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Steerage 9b0d7f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Steerage 9b0d7f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Steerage 9b0d7f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card The Engine Room fec36a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card The Engine Room fec36a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card The Engine Room fec36a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card The Engine Room fec36a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card The Upper Deck e9bc69.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card The Upper Deck e9bc69.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card The Upper Deck e9bc69.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card The Upper Deck e9bc69.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Model_Bag Set-aside cff68d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Model_Bag Set-aside cff68d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Model_Bag Set-aside cff68d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Model_Bag Set-aside cff68d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Model_Bag Set-aside cff68d/Card Benthic Titan 0cfb8b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Model_Bag Set-aside cff68d/Card Benthic Titan 0cfb8b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Model_Bag Set-aside cff68d/Card Benthic Titan 0cfb8b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Model_Bag Set-aside cff68d/Card Benthic Titan 0cfb8b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Model_Bag Set-aside cff68d/Card The Hungry Masses d0896c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Model_Bag Set-aside cff68d/Card The Hungry Masses d0896c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Model_Bag Set-aside cff68d/Card The Hungry Masses d0896c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Model_Bag Set-aside cff68d/Card The Hungry Masses d0896c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 194545.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 194545.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 194545.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 194545.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 2c2ae0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 2c2ae0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 2c2ae0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 2c2ae0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 31eed4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 31eed4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 31eed4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 31eed4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 35cda1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 35cda1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 35cda1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 35cda1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 5adeb8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 5adeb8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 5adeb8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 5adeb8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 7d816e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 7d816e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 7d816e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 7d816e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 85c289.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 85c289.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 85c289.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 85c289.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 9a38a2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 9a38a2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 9a38a2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 9a38a2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile a61d13.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile a61d13.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile a61d13.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile a61d13.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile b4f166.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile b4f166.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile b4f166.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile b4f166.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Act Deck 811a00.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Act Deck 811a00.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Act Deck 811a00.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Act Deck 811a00.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Agenda Deck 66a92e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Agenda Deck 66a92e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Agenda Deck 66a92e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Agenda Deck 66a92e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Encounter Deck 5079c9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Encounter Deck 5079c9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Encounter Deck 5079c9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Encounter Deck 5079c9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Random Assets d719b5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Random Assets d719b5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Random Assets d719b5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Random Assets d719b5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card Casino de Monte-Carlo 9138d3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card Casino de Monte-Carlo 9138d3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card Casino de Monte-Carlo 9138d3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card Casino de Monte-Carlo 9138d3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card Monday in Monte-Carlo fa8aeb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card Monday in Monte-Carlo fa8aeb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card Monday in Monte-Carlo fa8aeb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card Monday in Monte-Carlo fa8aeb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card Scenario 2332f5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card Scenario 2332f5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card Scenario 2332f5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card Scenario 2332f5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Beach 1547b3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Beach 1547b3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Beach 1547b3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Beach 1547b3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Grand Hotel 55a546.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Grand Hotel 55a546.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Grand Hotel 55a546.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Grand Hotel 55a546.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Marina bd7dba.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Marina bd7dba.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Marina bd7dba.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Marina bd7dba.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Promenade 220781.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Promenade 220781.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Promenade 220781.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Promenade 220781.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Track 289540.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Track 289540.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Track 289540.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Track 289540.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06/Card Beach Spawn 1bcffd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06/Card Beach Spawn 1bcffd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06/Card Beach Spawn 1bcffd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06/Card Beach Spawn 1bcffd.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06/Card Hulking Horror 105f2d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06/Card Hulking Horror 105f2d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06/Card Hulking Horror 105f2d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06/Card Hulking Horror 105f2d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06/Card The Cove 5c2ea6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06/Card The Cove 5c2ea6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06/Card The Cove 5c2ea6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06/Card The Cove 5c2ea6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06/Card The Solar Ray 965cf3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06/Card The Solar Ray 965cf3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06/Card The Solar Ray 965cf3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06/Card The Solar Ray 965cf3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 00370d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 00370d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 00370d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 00370d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 14fc99.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 14fc99.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 14fc99.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 14fc99.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 2aa861.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 2aa861.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 2aa861.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 2aa861.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 338e54.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 338e54.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 338e54.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 338e54.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 93479b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 93479b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 93479b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 93479b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile a4e80d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile a4e80d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile a4e80d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile a4e80d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile b6eab2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile b6eab2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile b6eab2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile b6eab2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Act Deck 82546b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Act Deck 82546b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Act Deck 82546b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Act Deck 82546b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Agenda Deck f0b042.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Agenda Deck f0b042.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Agenda Deck f0b042.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Agenda Deck f0b042.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Ally Deck 79e739.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Ally Deck 79e739.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Ally Deck 79e739.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Ally Deck 79e739.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Cultist Deck a07c49.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Cultist Deck a07c49.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Cultist Deck a07c49.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Cultist Deck a07c49.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Encounter Deck e4f726.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Encounter Deck e4f726.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Encounter Deck e4f726.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Encounter Deck e4f726.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Shuffle Me 42cb1f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Shuffle Me 42cb1f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Shuffle Me 42cb1f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Shuffle Me 42cb1f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Notecard How to Build the Agenda Deck b16a2e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Notecard How to Build the Agenda Deck b16a2e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Notecard How to Build the Agenda Deck b16a2e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Notecard How to Build the Agenda Deck b16a2e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Tile Bread and Circuses 82e1ed.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Tile Bread and Circuses 82e1ed.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Tile Bread and Circuses 82e1ed.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Tile Bread and Circuses 82e1ed.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Tile Bread and Circuses 82e1ed.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Tile Bread and Circuses 82e1ed.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Tile Bread and Circuses 82e1ed.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Tile Bread and Circuses 82e1ed.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c.yaml index 378226f1c..9da3b1b57 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c.yaml @@ -82,12 +82,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 9.198368 - posY: 2.479289 - posZ: -32.15759 + posX: -0.4830326 + posY: 3.34629226 + posZ: -24.7703037 rotX: 359.983276 rotY: 269.99942 - rotZ: 0.003536363 + rotZ: 0.00353619177 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Bag Individual Act Decks e9d947.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Bag Individual Act Decks e9d947.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Bag Individual Act Decks e9d947.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Bag Individual Act Decks e9d947.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Bag Individual Act Decks e9d947/Deck The Envoy 55073d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Bag Individual Act Decks e9d947/Deck The Envoy 55073d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Bag Individual Act Decks e9d947/Deck The Envoy 55073d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Bag Individual Act Decks e9d947/Deck The Envoy 55073d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Bag Individual Act Decks e9d947/Deck The Expendable 90bcc2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Bag Individual Act Decks e9d947/Deck The Expendable 90bcc2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Bag Individual Act Decks e9d947/Deck The Expendable 90bcc2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Bag Individual Act Decks e9d947/Deck The Expendable 90bcc2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Bag Individual Act Decks e9d947/Deck The Invoker 346fee.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Bag Individual Act Decks e9d947/Deck The Invoker 346fee.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Bag Individual Act Decks e9d947/Deck The Invoker 346fee.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Bag Individual Act Decks e9d947/Deck The Invoker 346fee.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Bag Individual Act Decks e9d947/Deck The Occultist 7a6c52.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Bag Individual Act Decks e9d947/Deck The Occultist 7a6c52.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Bag Individual Act Decks e9d947/Deck The Occultist 7a6c52.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Bag Individual Act Decks e9d947/Deck The Occultist 7a6c52.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Bag Individual Act Decks e9d947/Deck The Offering fd76f0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Bag Individual Act Decks e9d947/Deck The Offering fd76f0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Bag Individual Act Decks e9d947/Deck The Offering fd76f0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Bag Individual Act Decks e9d947/Deck The Offering fd76f0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Card 268bd8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Card 268bd8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Card 268bd8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Card 268bd8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Card 4011a5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Card 4011a5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Card 4011a5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Card 4011a5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Card 5bb7d0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Card 5bb7d0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Card 5bb7d0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Card 5bb7d0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Card 6f1efa.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Card 6f1efa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Card 6f1efa.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Card 6f1efa.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Card 7b91a3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Card 7b91a3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Card 7b91a3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Card 7b91a3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Card a4612b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Card a4612b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Card a4612b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Card a4612b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Card dbbfa0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Card dbbfa0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Card dbbfa0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Card dbbfa0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Card ff4d6f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Card ff4d6f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Card ff4d6f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Card ff4d6f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/CardCustom Scenario 98b72e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/CardCustom Scenario 98b72e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/CardCustom Scenario 98b72e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/CardCustom Scenario 98b72e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Model_Bag Set-Aside 505e6c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Model_Bag Set-Aside 505e6c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Model_Bag Set-Aside 505e6c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Model_Bag Set-Aside 505e6c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Model_Bag Set-Aside 505e6c/Card 40fdf1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Model_Bag Set-Aside 505e6c/Card 40fdf1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Model_Bag Set-Aside 505e6c/Card 40fdf1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Model_Bag Set-Aside 505e6c/Card 40fdf1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Model_Bag Set-Aside 505e6c/Deck fc05f7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Model_Bag Set-Aside 505e6c/Deck fc05f7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Model_Bag Set-Aside 505e6c/Deck fc05f7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Model_Bag Set-Aside 505e6c/Deck fc05f7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_PDF Campaign Guide f8c00e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_PDF Campaign Guide f8c00e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_PDF Campaign Guide f8c00e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_PDF Campaign Guide f8c00e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 1ae977.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 1ae977.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 1ae977.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 1ae977.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 35c492.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 35c492.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 35c492.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 35c492.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 5d070a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 5d070a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 5d070a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 5d070a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 6645cd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 6645cd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 6645cd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 6645cd.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 668f68.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 668f68.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 668f68.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 668f68.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 759ab6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 759ab6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 759ab6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile 759ab6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile b04a1a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile b04a1a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile b04a1a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile b04a1a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile d26316.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile d26316.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile d26316.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile d26316.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile The Initiation bbb70a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile The Initiation bbb70a.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile The Initiation bbb70a.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile The Initiation bbb70a.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile The Initiation bbb70a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile The Initiation bbb70a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile The Initiation bbb70a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Custom_Tile The Initiation bbb70a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Deck Agenda Deck def2f5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Deck Agenda Deck def2f5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Deck Agenda Deck def2f5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Deck Agenda Deck def2f5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Deck Roles cce0e0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Deck Roles cce0e0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/Deck Roles cce0e0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/Deck Roles cce0e0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/DeckCustom Encounter Deck 8944d1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/DeckCustom Encounter Deck 8944d1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest Pits 68380c/DeckCustom Encounter Deck 8944d1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag In Blackest Pits 68380c/DeckCustom Encounter Deck 8944d1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847.yaml similarity index 95% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847.yaml index 53882cf44..61be0aff4 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847.yaml @@ -51,12 +51,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 10.8558569 - posY: 2.476976 - posZ: -32.42603 + posX: 0.876634657 + posY: 3.3428843 + posZ: -29.1699963 rotX: 359.983246 rotY: 270.0 - rotZ: 0.00353767327 + rotZ: 0.00353767374 scaleX: 2.21 scaleY: 0.2 scaleZ: 2.46 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Miskatonic Museum 05413a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Miskatonic Museum 05413a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Miskatonic Museum 05413a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Miskatonic Museum 05413a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Northside Church f7021e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Northside Church f7021e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Northside Church f7021e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Northside Church f7021e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Police Station 5c6382.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Police Station 5c6382.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Police Station 5c6382.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Police Station 5c6382.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Ravenshark Manor a61a93.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Ravenshark Manor a61a93.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Ravenshark Manor a61a93.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Ravenshark Manor a61a93.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Scenario e2e8f6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Scenario e2e8f6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Scenario e2e8f6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Scenario e2e8f6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Scenario f7040b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Scenario f7040b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Scenario f7040b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Scenario f7040b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card The Carrier Hotel 429d37.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card The Carrier Hotel 429d37.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card The Carrier Hotel 429d37.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card The Carrier Hotel 429d37.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Town Center 571a98.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Town Center 571a98.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Town Center 571a98.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Town Center 571a98.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Train Terminal 5a913d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Train Terminal 5a913d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Train Terminal 5a913d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Train Terminal 5a913d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Warehouse District 584b5d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Warehouse District 584b5d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Warehouse District 584b5d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Warehouse District 584b5d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247/Card Amunet's Tome b272b0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247/Card Amunet's Tome b272b0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247/Card Amunet's Tome b272b0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247/Card Amunet's Tome b272b0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247/Card Emissary of El'gahath ed9b36.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247/Card Emissary of El'gahath ed9b36.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247/Card Emissary of El'gahath ed9b36.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247/Card Emissary of El'gahath ed9b36.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247/Card Sword of the Undying 656307.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247/Card Sword of the Undying 656307.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247/Card Sword of the Undying 656307.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247/Card Sword of the Undying 656307.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247/Deck Investigator cards f4ecae.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247/Deck Investigator cards f4ecae.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247/Deck Investigator cards f4ecae.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247/Deck Investigator cards f4ecae.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 12e23d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 12e23d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 12e23d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 12e23d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 4d6b03.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 4d6b03.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 4d6b03.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 4d6b03.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 73166d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 73166d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 73166d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 73166d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 7ceffc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 7ceffc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 7ceffc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 7ceffc.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 95af1f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 95af1f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 95af1f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 95af1f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile a58bd7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile a58bd7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile a58bd7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile a58bd7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile e352b7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile e352b7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile e352b7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile e352b7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile e43485.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile e43485.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile e43485.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile e43485.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile eaa106.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile eaa106.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile eaa106.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile eaa106.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile ee99b2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile ee99b2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile ee99b2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile ee99b2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile Into the Shadowlands 770021.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile Into the Shadowlands 770021.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile Into the Shadowlands 770021.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile Into the Shadowlands 770021.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile Into the Shadowlands 770021.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile Into the Shadowlands 770021.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile Into the Shadowlands 770021.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile Into the Shadowlands 770021.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Act Deck 4415a4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Act Deck 4415a4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Act Deck 4415a4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Act Deck 4415a4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Agenda Deck 606a09.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Agenda Deck 606a09.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Agenda Deck 606a09.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Agenda Deck 606a09.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Dark Mirror 867f7f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Dark Mirror 867f7f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Dark Mirror 867f7f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Dark Mirror 867f7f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Encounter Deck 798446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Encounter Deck 798446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Encounter Deck 798446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Encounter Deck 798446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Set-upResolution 2c2a09.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Set-upResolution 2c2a09.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Set-upResolution 2c2a09.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Set-upResolution 2c2a09.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Dining Hall 72ea3f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Dining Hall 72ea3f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Dining Hall 72ea3f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Dining Hall 72ea3f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Engine Room dd140d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Engine Room dd140d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Engine Room dd140d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Engine Room dd140d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Entry Hall 61af07.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Entry Hall 61af07.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Entry Hall 61af07.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Entry Hall 61af07.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Foyer 036f4f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Foyer 036f4f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Foyer 036f4f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Foyer 036f4f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Lounge 2826ac.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Lounge 2826ac.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Lounge 2826ac.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Lounge 2826ac.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Navigation Bridge b4474e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Navigation Bridge b4474e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Navigation Bridge b4474e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Navigation Bridge b4474e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Passenger Cabins 1f108d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Passenger Cabins 1f108d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Passenger Cabins 1f108d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Passenger Cabins 1f108d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Promenade Deck 055225.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Promenade Deck 055225.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Promenade Deck 055225.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Promenade Deck 055225.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Purser's Office 4daae5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Purser's Office 4daae5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Purser's Office 4daae5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Purser's Office 4daae5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Regal Suites 7dd177.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Regal Suites 7dd177.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Regal Suites 7dd177.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Regal Suites 7dd177.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Scenario cbfed7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Scenario cbfed7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Scenario cbfed7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Scenario cbfed7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Scenario e2e8f6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Scenario e2e8f6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Scenario e2e8f6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Scenario e2e8f6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Abel Jericho ed9b36.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Abel Jericho ed9b36.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Abel Jericho ed9b36.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Abel Jericho ed9b36.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Akachi Onyele ce59e0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Akachi Onyele ce59e0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Akachi Onyele ce59e0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Akachi Onyele ce59e0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Akachi Onyele d453fe.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Akachi Onyele d453fe.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Akachi Onyele d453fe.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Akachi Onyele d453fe.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Fanning the Flames 309659.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Fanning the Flames 309659.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Fanning the Flames 309659.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Fanning the Flames 309659.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Let's Try This Again 2456b7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Let's Try This Again 2456b7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Let's Try This Again 2456b7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Let's Try This Again 2456b7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Deck Burnout aa5aac.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Deck Burnout aa5aac.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Deck Burnout aa5aac.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Deck Burnout aa5aac.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 0cd242.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 0cd242.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 0cd242.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 0cd242.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 13be7c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 13be7c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 13be7c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 13be7c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 2a77ff.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 2a77ff.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 2a77ff.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 2a77ff.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 5f66f5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 5f66f5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 5f66f5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 5f66f5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 75bfc2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 75bfc2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 75bfc2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 75bfc2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 883bf5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 883bf5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 883bf5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 883bf5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 8b7f2d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 8b7f2d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 8b7f2d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 8b7f2d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 920620.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 920620.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 920620.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 920620.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 9b8784.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 9b8784.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 9b8784.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 9b8784.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile a56075.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile a56075.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile a56075.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile a56075.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile c6e194.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile c6e194.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile c6e194.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile c6e194.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile c74e79.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile c74e79.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile c74e79.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile c74e79.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile f79023.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile f79023.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile f79023.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile f79023.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Deck Act Deck be5f41.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Deck Act Deck be5f41.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Deck Act Deck be5f41.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Deck Act Deck be5f41.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Deck Agenda Deck 0cfc5e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Deck Agenda Deck 0cfc5e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Deck Agenda Deck 0cfc5e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Deck Agenda Deck 0cfc5e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Deck Encounter Deck f4c8b4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Deck Encounter Deck f4c8b4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Deck Encounter Deck f4c8b4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Deck Encounter Deck f4c8b4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Deck Set-upResolution 2d5e7e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Deck Set-upResolution 2d5e7e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Deck Set-upResolution 2d5e7e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Deck Set-upResolution 2d5e7e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48.yaml index b34c571fe..96a5e16c6 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48.yaml @@ -78,12 +78,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 27.151722 - posY: 5.21630239 - posZ: -34.0824738 + posX: 0.368002027 + posY: 3.34242225 + posZ: -33.0760269 rotX: 359.983246 rotY: 270.004669 - rotZ: 0.0035323156 + rotZ: 0.0035324106 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card b2bd25.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card b2bd25.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card b2bd25.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card b2bd25.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card Balcony 1e7961.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card Balcony 1e7961.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card Balcony 1e7961.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card Balcony 1e7961.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card Balcony 29d7e2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card Balcony 29d7e2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card Balcony 29d7e2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card Balcony 29d7e2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card Cathedral Entrance 3c4300.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card Cathedral Entrance 3c4300.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card Cathedral Entrance 3c4300.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card Cathedral Entrance 3c4300.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card Dismal Creek 1af6e8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card Dismal Creek 1af6e8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card Dismal Creek 1af6e8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card Dismal Creek 1af6e8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card Hidden Grove 3ba881.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card Hidden Grove 3ba881.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card Hidden Grove 3ba881.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card Hidden Grove 3ba881.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card Inner Chamber 3d9a8b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card Inner Chamber 3d9a8b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card Inner Chamber 3d9a8b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card Inner Chamber 3d9a8b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card Inner Chamber cca4ce.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card Inner Chamber cca4ce.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card Inner Chamber cca4ce.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card Inner Chamber cca4ce.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card Organ Room 46ead9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card Organ Room 46ead9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card Organ Room 46ead9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card Organ Room 46ead9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card Organ Room ea8211.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card Organ Room ea8211.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card Organ Room ea8211.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card Organ Room ea8211.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card Scenario 845074.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card Scenario 845074.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card Scenario 845074.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card Scenario 845074.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card Wine Cellar 6aa57e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card Wine Cellar 6aa57e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card Wine Cellar 6aa57e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card Wine Cellar 6aa57e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card Wine Cellar df8dff.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card Wine Cellar df8dff.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Card Wine Cellar df8dff.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Card Wine Cellar df8dff.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Aimless 44dba6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Aimless 44dba6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Aimless 44dba6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Aimless 44dba6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Amphitheatre d4aeeb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Amphitheatre d4aeeb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Amphitheatre d4aeeb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Amphitheatre d4aeeb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Emerald Light f1fb80.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Emerald Light f1fb80.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Emerald Light f1fb80.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Emerald Light f1fb80.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card I Killed Her 902091.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card I Killed Her 902091.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card I Killed Her 902091.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card I Killed Her 902091.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes 41faa0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes 41faa0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes 41faa0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes 41faa0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes 511acf.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes 511acf.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes 511acf.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes 511acf.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes Investigator Card 2046ad.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes Investigator Card 2046ad.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes Investigator Card 2046ad.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes Investigator Card 2046ad.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes e448d5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes e448d5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes e448d5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes e448d5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Izzie's Violin 459082.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Izzie's Violin 459082.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Izzie's Violin 459082.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Izzie's Violin 459082.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Lost in Thought 5541b1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Lost in Thought 5541b1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Lost in Thought 5541b1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Lost in Thought 5541b1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Lost in Thought e426d0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Lost in Thought e426d0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Lost in Thought e426d0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Lost in Thought e426d0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/CardCustom Isabelle Barnes Token b290b5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/CardCustom Isabelle Barnes Token b290b5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/CardCustom Isabelle Barnes Token b290b5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/CardCustom Isabelle Barnes Token b290b5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Deck Herald of the Green Man be33d6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Deck Herald of the Green Man be33d6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Deck Herald of the Green Man be33d6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Deck Herald of the Green Man be33d6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 057b7e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 057b7e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 057b7e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 057b7e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 149816.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 149816.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 149816.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 149816.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 44b0c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 44b0c5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 44b0c5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 44b0c5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 61a21b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 61a21b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 61a21b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 61a21b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 6cb6e7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 6cb6e7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 6cb6e7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 6cb6e7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile b5ceb0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile b5ceb0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile b5ceb0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile b5ceb0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile b81937.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile b81937.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile b81937.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile b81937.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile c6a2ab.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile c6a2ab.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile c6a2ab.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile c6a2ab.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile d778ee.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile d778ee.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile d778ee.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile d778ee.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile ef067f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile ef067f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile ef067f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile ef067f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile Jenny's Choice bbb70a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile Jenny's Choice bbb70a.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile Jenny's Choice bbb70a.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile Jenny's Choice bbb70a.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile Jenny's Choice bbb70a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile Jenny's Choice bbb70a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile Jenny's Choice bbb70a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile Jenny's Choice bbb70a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Deck Agenda Deck 06d29e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Deck Agenda Deck 06d29e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Deck Agenda Deck 06d29e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Deck Agenda Deck 06d29e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Deck Encounter Deck 8bae65.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Deck Encounter Deck 8bae65.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Deck Encounter Deck 8bae65.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Deck Encounter Deck 8bae65.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Deck Encounter Deck e02060.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Deck Encounter Deck e02060.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny's Choice a61b48/Deck Encounter Deck e02060.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Jenny's Choice a61b48/Deck Encounter Deck e02060.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16.yaml index 6af53bb6f..a72a9080f 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16.yaml @@ -62,9 +62,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 31.3683071 - posY: 8.486372 - posZ: -174.861542 + posX: -1.04338336 + posY: 3.34895873 + posZ: -20.828476 rotX: 0.020808626 rotY: 270.0 rotZ: 0.0167712085 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 3247af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 3247af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 3247af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 3247af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 3d0300.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 3d0300.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 3d0300.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 3d0300.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 430b88.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 430b88.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 430b88.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 430b88.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 4e7889.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 4e7889.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 4e7889.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 4e7889.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 65948c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 65948c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 65948c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 65948c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 74c2c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 74c2c5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 74c2c5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 74c2c5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 7c3135.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 7c3135.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 7c3135.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 7c3135.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card b0142c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card b0142c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card b0142c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card b0142c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card d781a0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card d781a0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card d781a0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card d781a0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card f145e7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card f145e7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card f145e7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card f145e7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card Benedict Burton 68f7fa.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card Benedict Burton 68f7fa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card Benedict Burton 68f7fa.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card Benedict Burton 68f7fa.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card Utracony Benedict 855e12.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card Utracony Benedict 855e12.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card Utracony Benedict 855e12.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card Utracony Benedict 855e12.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card Zasady 90d605.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card Zasady 90d605.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card Zasady 90d605.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card Zasady 90d605.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 640916.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 640916.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 640916.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 640916.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 7d84fa.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 7d84fa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 7d84fa.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 7d84fa.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 914d11.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 914d11.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 914d11.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 914d11.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile a45a75.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile a45a75.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile a45a75.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile a45a75.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile a98084.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile a98084.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile a98084.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile a98084.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile abf92a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile abf92a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile abf92a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile abf92a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile edc283.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile edc283.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile edc283.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile edc283.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile f7ea75.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile f7ea75.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile f7ea75.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile f7ea75.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck Act 1c3d2b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck Act 1c3d2b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck Act 1c3d2b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck Act 1c3d2b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck Przedmioty 45769e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck Przedmioty 45769e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck Przedmioty 45769e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck Przedmioty 45769e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck Tajemnica 8a541d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck Tajemnica 8a541d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck Tajemnica 8a541d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck Tajemnica 8a541d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck talia Spotkań bd65ec.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck talia Spotkań bd65ec.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck talia Spotkań bd65ec.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck talia Spotkań bd65ec.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 11e93f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 11e93f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 11e93f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 11e93f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 1cd786.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 1cd786.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 1cd786.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 1cd786.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 2913c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 2913c5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 2913c5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 2913c5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 4ef83e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 4ef83e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 4ef83e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 4ef83e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 53ef55.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 53ef55.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 53ef55.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 53ef55.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 8fb89a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 8fb89a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 8fb89a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 8fb89a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card a24f32.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card a24f32.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card a24f32.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card a24f32.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card af3894.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card af3894.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card af3894.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card af3894.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card bd7527.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card bd7527.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card bd7527.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card bd7527.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card be9fa2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card be9fa2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card be9fa2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card be9fa2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card c6eb69.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card c6eb69.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card c6eb69.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card c6eb69.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card ca2c9a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card ca2c9a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card ca2c9a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card ca2c9a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card d62e68.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card d62e68.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card d62e68.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card d62e68.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card d6e037.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card d6e037.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card d6e037.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card d6e037.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card Centrum 8211cc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card Centrum 8211cc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card Centrum 8211cc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card Centrum 8211cc.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card Zasady c02378.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card Zasady c02378.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card Zasady c02378.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card Zasady c02378.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile 1b73bd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile 1b73bd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile 1b73bd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile 1b73bd.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile 3cb530.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile 3cb530.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile 3cb530.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile 3cb530.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile 97ceeb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile 97ceeb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile 97ceeb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile 97ceeb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile b0eeef.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile b0eeef.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile b0eeef.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile b0eeef.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile b82f40.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile b82f40.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile b82f40.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile b82f40.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile cb1366.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile cb1366.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile cb1366.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile cb1366.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile cf757f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile cf757f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile cf757f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile cf757f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile e9d1b9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile e9d1b9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile e9d1b9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile e9d1b9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Deck Act b0d181.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Deck Act b0d181.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Deck Act b0d181.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Deck Act b0d181.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Deck Agenda 26922f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Deck Agenda 26922f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Deck Agenda 26922f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Deck Agenda 26922f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Deck Talia spotkań 09320c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Deck Talia spotkań 09320c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Deck Talia spotkań 09320c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Deck Talia spotkań 09320c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Deck odloz na Bok 1ca036.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Deck odloz na Bok 1ca036.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Deck odloz na Bok 1ca036.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Deck odloz na Bok 1ca036.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 0d3f61.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 0d3f61.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 0d3f61.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 0d3f61.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 138728.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 138728.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 138728.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 138728.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 1b0adb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 1b0adb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 1b0adb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 1b0adb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 4bf3b7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 4bf3b7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 4bf3b7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 4bf3b7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 766770.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 766770.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 766770.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 766770.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 89e96e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 89e96e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 89e96e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 89e96e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card a331b8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card a331b8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card a331b8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card a331b8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card bdcc71.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card bdcc71.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card bdcc71.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card bdcc71.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card c3b6cb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card c3b6cb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card c3b6cb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card c3b6cb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card c94034.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card c94034.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card c94034.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card c94034.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card d64ce3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card d64ce3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card d64ce3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card d64ce3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card e98a01.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card e98a01.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card e98a01.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card e98a01.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card f5b09f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card f5b09f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card f5b09f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card f5b09f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card Klaus Stravinsky fbd611.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card Klaus Stravinsky fbd611.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card Klaus Stravinsky fbd611.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card Klaus Stravinsky fbd611.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card Zasady 90d605.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card Zasady 90d605.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card Zasady 90d605.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card Zasady 90d605.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 1a4a03.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 1a4a03.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 1a4a03.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 1a4a03.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 3903e7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 3903e7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 3903e7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 3903e7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 5c70ce.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 5c70ce.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 5c70ce.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 5c70ce.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 71caf5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 71caf5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 71caf5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 71caf5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 7717e9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 7717e9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 7717e9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 7717e9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 792914.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 792914.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 792914.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 792914.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile b6da2f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile b6da2f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile b6da2f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile b6da2f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Act cee098.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Act cee098.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Act cee098.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Act cee098.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Horyzont - Kraina Snu 1d33cd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Horyzont - Kraina Snu 1d33cd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Horyzont - Kraina Snu 1d33cd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Horyzont - Kraina Snu 1d33cd.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Masyw Skalny - Kraina snu ae5212.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Masyw Skalny - Kraina snu ae5212.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Masyw Skalny - Kraina snu ae5212.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Masyw Skalny - Kraina snu ae5212.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Poza gra 96e8c2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Poza gra 96e8c2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Poza gra 96e8c2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Poza gra 96e8c2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Tajemnica aa067b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Tajemnica aa067b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Tajemnica aa067b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Tajemnica aa067b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Zeppelin 087ed1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Zeppelin 087ed1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Zeppelin 087ed1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Zeppelin 087ed1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Card 14b82b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Card 14b82b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Card 14b82b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Card 14b82b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Card 98bc31.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Card 98bc31.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Card 98bc31.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Card 98bc31.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Card cc8070.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Card cc8070.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Card cc8070.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Card cc8070.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Card Zasady 90d605.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Card Zasady 90d605.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Card Zasady 90d605.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Card Zasady 90d605.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Custom_Tile 213757.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Custom_Tile 213757.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Custom_Tile 213757.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Custom_Tile 213757.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck 79310a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck 79310a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck 79310a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck 79310a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Kamienice Imigrantów 06f433.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Kamienice Imigrantów 06f433.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Kamienice Imigrantów 06f433.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Kamienice Imigrantów 06f433.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Kamienice imigrantów be855e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Kamienice imigrantów be855e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Kamienice imigrantów be855e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Kamienice imigrantów be855e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Opuszczone Magazyny d09055.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Opuszczone Magazyny d09055.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Opuszczone Magazyny d09055.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Opuszczone Magazyny d09055.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Opuszczone magazyny a74606.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Opuszczone magazyny a74606.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Opuszczone magazyny a74606.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Opuszczone magazyny a74606.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Rytualne miejsca 76273e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Rytualne miejsca 76273e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Rytualne miejsca 76273e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Rytualne miejsca 76273e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Tajemnica 4dc835.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Tajemnica 4dc835.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Tajemnica 4dc835.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Tajemnica 4dc835.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Talia Tajemnica c0c8a9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Talia Tajemnica c0c8a9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Talia Tajemnica c0c8a9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Talia Tajemnica c0c8a9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42/Deck Expert 0302a7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42/Deck Expert 0302a7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42/Deck Expert 0302a7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42/Deck Expert 0302a7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42/Deck Standardowy 6d7fd2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42/Deck Standardowy 6d7fd2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42/Deck Standardowy 6d7fd2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42/Deck Standardowy 6d7fd2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42/Deck Trudny 6670d5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42/Deck Trudny 6670d5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42/Deck Trudny 6670d5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42/Deck Trudny 6670d5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42/Deck Łatwy db8ece.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42/Deck Łatwy db8ece.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42/Deck Łatwy db8ece.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42/Deck Łatwy db8ece.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Custom_Tile 24e5eb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Custom_Tile 24e5eb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Custom_Tile 24e5eb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Custom_Tile 24e5eb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8.yaml index 725ca875c..b5c869a8e 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8.yaml @@ -65,9 +65,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 31.9843216 - posY: 4.38126945 - posZ: -86.37303 + posX: -0.411216736 + posY: 3.34662557 + posZ: -25.7598324 rotX: 0.0208086073 rotY: 270.0 rotZ: 0.0167711526 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad/Card Bruce Wayne fb89ee.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad/Card Bruce Wayne fb89ee.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad/Card Bruce Wayne fb89ee.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad/Card Bruce Wayne fb89ee.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad/Custom_Token Batman! 7244f1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad/Custom_Token Batman! 7244f1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad/Custom_Token Batman! 7244f1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad/Custom_Token Batman! 7244f1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad/Deck 64b07c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad/Deck 64b07c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad/Deck 64b07c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad/Deck 64b07c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Card 141409.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Card 141409.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Card 141409.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Card 141409.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Card 245b8d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Card 245b8d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Card 245b8d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Card 245b8d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Card 2d17c9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Card 2d17c9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Card 2d17c9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Card 2d17c9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Card a68851.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Card a68851.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Card a68851.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Card a68851.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Card b8480f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Card b8480f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Card b8480f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Card b8480f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Card bab1d6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Card bab1d6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Card bab1d6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Card bab1d6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Card da3aed.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Card da3aed.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Card da3aed.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Card da3aed.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Custom_Tile Knightfall 271ce2.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Custom_Tile Knightfall 271ce2.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Custom_Tile Knightfall 271ce2.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Custom_Tile Knightfall 271ce2.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Custom_Tile Knightfall 271ce2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Custom_Tile Knightfall 271ce2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Custom_Tile Knightfall 271ce2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Custom_Tile Knightfall 271ce2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Deck Act a4e5e9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Deck Act a4e5e9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Deck Act a4e5e9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Deck Act a4e5e9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Deck Agenda 917494.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Deck Agenda 917494.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Deck Agenda 917494.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Deck Agenda 917494.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Deck Instructions 0679c6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Deck Instructions 0679c6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Deck Instructions 0679c6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Deck Instructions 0679c6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Deck Locations b21de6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Deck Locations b21de6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Deck Locations b21de6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Deck Locations b21de6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Deck Set Aside 3106e6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Deck Set Aside 3106e6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Deck Set Aside 3106e6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Deck Set Aside 3106e6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Deck Toxin d306b8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Deck Toxin d306b8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/Deck Toxin d306b8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/Deck Toxin d306b8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/DeckCustom Encounter Deck 9d4e42.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/DeckCustom Encounter Deck 9d4e42.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall df62e8/DeckCustom Encounter Deck 9d4e42.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Knightfall df62e8/DeckCustom Encounter Deck 9d4e42.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca.yaml similarity index 99% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca.yaml index 5c736d775..ef4c64787 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca.yaml @@ -77,9 +77,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 11.1920233 - posY: 4.388476 - posZ: -105.42878 + posX: -0.1652716 + posY: 3.34454679 + posZ: -27.1862068 rotX: -6.24488735e-07 rotY: 269.999939 rotZ: 0.01814819 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card 11a797.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card 11a797.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card 11a797.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card 11a797.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card 5ee55d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card 5ee55d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card 5ee55d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card 5ee55d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card 9c6ccd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card 9c6ccd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card 9c6ccd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card 9c6ccd.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card a137d8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card a137d8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card a137d8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card a137d8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card b8ca38.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card b8ca38.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card b8ca38.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card b8ca38.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card d60ed8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card d60ed8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card d60ed8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card d60ed8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card Scenario 05dd0a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card Scenario 05dd0a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card Scenario 05dd0a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card Scenario 05dd0a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card Scenario eb5dd9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card Scenario eb5dd9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card Scenario eb5dd9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card Scenario eb5dd9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card Street Peddler 43390e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card Street Peddler 43390e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card Street Peddler 43390e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card Street Peddler 43390e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Model_Bag Set-aside a45247.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Model_Bag Set-aside a45247.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Model_Bag Set-aside a45247.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Model_Bag Set-aside a45247/Deck Clearance dc5ee3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Model_Bag Set-aside a45247/Deck Clearance dc5ee3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Model_Bag Set-aside a45247/Deck Clearance dc5ee3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Model_Bag Set-aside a45247/Deck Clearance dc5ee3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Model_Bag Set-aside a45247/Deck Suspects b23c22.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Model_Bag Set-aside a45247/Deck Suspects b23c22.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Model_Bag Set-aside a45247/Deck Suspects b23c22.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Model_Bag Set-aside a45247/Deck Suspects b23c22.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 29a427.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 29a427.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 29a427.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 29a427.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 30c8b6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 30c8b6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 30c8b6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 30c8b6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 3b6690.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 3b6690.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 3b6690.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 3b6690.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 49232a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 49232a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 49232a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 49232a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 7a4b8e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 7a4b8e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 7a4b8e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 7a4b8e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile e3aa6a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile e3aa6a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile e3aa6a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile e3aa6a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile e78e52.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile e78e52.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile e78e52.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile e78e52.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile ffeff3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile ffeff3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile ffeff3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile ffeff3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile Last Call at Roxie's 567db0.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile Last Call at Roxie's 567db0.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile Last Call at Roxie's 567db0.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile Last Call at Roxie's 567db0.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile Last Call at Roxie's 567db0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile Last Call at Roxie's 567db0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile Last Call at Roxie's 567db0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile Last Call at Roxie's 567db0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Act Deck 6f1e9e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Act Deck 6f1e9e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Act Deck 6f1e9e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Act Deck 6f1e9e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Agenda Deck b1d40e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Agenda Deck b1d40e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Agenda Deck b1d40e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Agenda Deck b1d40e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Enhancements 0df520.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Enhancements 0df520.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Enhancements 0df520.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Enhancements 0df520.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Setup 7a4949.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Setup 7a4949.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Setup 7a4949.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Setup 7a4949.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/DeckCustom Encounter Deck a08fa0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/DeckCustom Encounter Deck a08fa0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at Roxie's c6a1ca/DeckCustom Encounter Deck a08fa0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Last Call at Roxie's c6a1ca/DeckCustom Encounter Deck a08fa0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8.yaml index cd884eca0..8d18e650b 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8.yaml @@ -62,12 +62,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -1.40144825 - posY: 8.478637 - posZ: -160.629044 - rotX: 0.0208085533 + posX: -1.85669124 + posY: 3.35011077 + posZ: -20.7680855 + rotX: 0.0208085515 rotY: 270.0 - rotZ: 0.016771229 + rotZ: 0.01677123 scaleX: 2.21 scaleY: 0.2 scaleZ: 2.46 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Card 256aa6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Card 256aa6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Card 256aa6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Card 256aa6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Card Act 0f2ffc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Card Act 0f2ffc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Card Act 0f2ffc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Card Act 0f2ffc.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Card Agenda fed65c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Card Agenda fed65c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Card Agenda fed65c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Card Agenda fed65c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Custom_Tile Core Difficulty aae2b1.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Custom_Tile Core Difficulty aae2b1.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Custom_Tile Core Difficulty aae2b1.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Custom_Tile Core Difficulty aae2b1.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Custom_Tile Core Difficulty aae2b1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Custom_Tile Core Difficulty aae2b1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Custom_Tile Core Difficulty aae2b1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Custom_Tile Core Difficulty aae2b1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Deck Encounter Deck 8f0718.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Deck Encounter Deck 8f0718.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Deck Encounter Deck 8f0718.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Deck Encounter Deck 8f0718.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Deck Locations 4e3390.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Deck Locations 4e3390.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Deck Locations 4e3390.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Deck Locations 4e3390.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Deck Set Aside 515e9e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Deck Set Aside 515e9e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Deck Set Aside 515e9e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Deck Set Aside 515e9e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780.yaml similarity index 62% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780.yaml index 9eb8f062c..c8916fe01 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780.yaml @@ -19,6 +19,8 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: +- !include 'Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_PDF Campaign + Guide 36b4eb.yaml' - !include 'Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Room 225 0ba29a.yaml' - !include 'Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Suite Balcony 0f58ed.yaml' @@ -27,8 +29,6 @@ ContainedObjects: - !include 'Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Act Deck 37760f.yaml' - !include 'Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Restaurant 4146bf.yaml' -- !include 'Custom_Model_Bag Murder at the Excelsior Hotel 01d780/CardCustom Campaign - Guide 45facd.yaml' - !include 'Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 56a08d.yaml' - !include 'Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 7234af.yaml' - !include 'Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag @@ -76,7 +76,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: false LuaScript: !include 'Custom_Model_Bag Murder at the Excelsior Hotel 01d780.ttslua' -LuaScriptState: '{"ml":{"0ba29a":{"lock":false,"pos":{"x":-23.6765,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"0f58ed":{"lock":false,"pos":{"x":-23.6766,"y":1.6817,"z":-15.28},"rot":{"x":359.9201,"y":270.0023,"z":0.0169}},"227fad":{"lock":false,"pos":{"x":-0.2311,"y":1.6586,"z":-10.4794},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"37760f":{"lock":false,"pos":{"x":-2.6885,"y":1.6623,"z":-5.0485},"rot":{"x":0.0168,"y":180.0001,"z":0.0803}},"4146bf":{"lock":false,"pos":{"x":-30.224,"y":1.6976,"z":7.5699},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"45facd":{"lock":false,"pos":{"x":-1.4655,"y":1.5473,"z":-26.9304},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"56a08d":{"lock":false,"pos":{"x":-23.6764,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0.0014,"z":359.9201}},"7234af":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":359.9831,"y":0.0016,"z":359.9201}},"74eec6":{"lock":false,"pos":{"x":1.6966,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.9981,"z":0.0687}},"888a6b":{"lock":false,"pos":{"x":-2.7247,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":180.0001,"z":0.0803}},"89314b":{"lock":false,"pos":{"x":-27.2138,"y":1.6206,"z":3.9104},"rot":{"x":359.9316,"y":314.9952,"z":359.9554}},"9a82ba":{"lock":false,"pos":{"x":-27.057,"y":1.6192,"z":0.0521},"rot":{"x":359.92,"y":270.1797,"z":0.0166}},"9a9f9a":{"lock":false,"pos":{"x":-30.2242,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.995,"z":0.0169}},"a78d38":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":270.0005,"z":0.0169}},"b1e599":{"lock":false,"pos":{"x":-3.9558,"y":1.6556,"z":-10.4414},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"bbb70a":{"lock":false,"pos":{"x":-3.8865,"y":1.5827,"z":-14.4341},"rot":{"x":359.9197,"y":270.0306,"z":0.0168}},"c630c5":{"lock":false,"pos":{"x":-23.6764,"y":1.6111,"z":-11.51},"rot":{"x":359.9831,"y":0.0015,"z":359.92}},"d71f11":{"lock":false,"pos":{"x":-3.3174,"y":1.6622,"z":14.9915},"rot":{"x":359.9197,"y":269.9979,"z":0.0168}},"fd4231":{"lock":false,"pos":{"x":-3.9277,"y":1.7291,"z":5.7572},"rot":{"x":359.9197,"y":269.9999,"z":180.0168}}}}' +LuaScriptState: '{"ml":{"0ba29a":{"lock":false,"pos":{"x":-23.6765,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"0f58ed":{"lock":false,"pos":{"x":-23.6766,"y":1.6817,"z":-15.28},"rot":{"x":359.9201,"y":270.0023,"z":0.0169}},"227fad":{"lock":false,"pos":{"x":-0.2311,"y":1.6586,"z":-10.4794},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"36b4eb":{"lock":false,"pos":{"x":0.1775,"y":1.5004,"z":41.8364},"rot":{"x":-0.0002,"y":269.9862,"z":359.9778}},"37760f":{"lock":false,"pos":{"x":-2.6885,"y":1.6623,"z":-5.0485},"rot":{"x":0.0168,"y":180.0001,"z":0.0803}},"4146bf":{"lock":false,"pos":{"x":-30.224,"y":1.6976,"z":7.5699},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"45facd":{"lock":false,"pos":{"x":-1.4655,"y":1.5473,"z":-26.9304},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"56a08d":{"lock":false,"pos":{"x":-23.6764,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0.0014,"z":359.9201}},"7234af":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":359.9831,"y":0.0016,"z":359.9201}},"74eec6":{"lock":false,"pos":{"x":1.6966,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.9981,"z":0.0687}},"888a6b":{"lock":false,"pos":{"x":-2.7247,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":180.0001,"z":0.0803}},"89314b":{"lock":false,"pos":{"x":-27.2138,"y":1.6206,"z":3.9104},"rot":{"x":359.9316,"y":314.9952,"z":359.9554}},"9a82ba":{"lock":false,"pos":{"x":-27.057,"y":1.6192,"z":0.0521},"rot":{"x":359.92,"y":270.1797,"z":0.0166}},"9a9f9a":{"lock":false,"pos":{"x":-30.2242,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.995,"z":0.0169}},"a78d38":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":270.0005,"z":0.0169}},"b1e599":{"lock":false,"pos":{"x":-3.9558,"y":1.6556,"z":-10.4414},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"bbb70a":{"lock":false,"pos":{"x":-3.8865,"y":1.5827,"z":-14.4341},"rot":{"x":359.9197,"y":270.0306,"z":0.0168}},"c630c5":{"lock":false,"pos":{"x":-23.6764,"y":1.6111,"z":-11.51},"rot":{"x":359.9831,"y":0.0015,"z":359.92}},"d71f11":{"lock":false,"pos":{"x":-3.3174,"y":1.6622,"z":14.9915},"rot":{"x":359.9197,"y":269.9979,"z":0.0168}},"fd4231":{"lock":false,"pos":{"x":-3.9277,"y":1.7291,"z":5.7572},"rot":{"x":359.9197,"y":269.9999,"z":180.0168}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 @@ -86,12 +86,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 29.038887 - posY: 2.539299 - posZ: -42.6207352 - rotX: 359.983246 - rotY: 270.000061 - rotZ: 0.00353718339 + posX: 12.249506 + posY: 1.46325016 + posZ: -4.01360035 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.01687421 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Bloodstained Dagger d71f11.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Bloodstained Dagger d71f11.yaml similarity index 89% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Bloodstained Dagger d71f11.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Bloodstained Dagger d71f11.yaml index f19aa4c63..2452ad2dc 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Bloodstained Dagger d71f11.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Bloodstained Dagger d71f11.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.31746078 - posY: 1.66222739 - posZ: 14.9924107 + posX: -3.31741667 + posY: 1.60411835 + posZ: 14.9915047 rotX: 359.919739 - rotY: 269.996368 - rotZ: 0.01684684 + rotY: 269.9979 + rotZ: 0.0168409981 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Foyer 9a9f9a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Foyer 9a9f9a.yaml similarity index 89% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Foyer 9a9f9a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Foyer 9a9f9a.yaml index 7b796f007..aba265d2a 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Foyer 9a9f9a.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Foyer 9a9f9a.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -30.2242 - posY: 1.69535065 - posZ: -0.0300007612 + posX: -30.2242165 + posY: 1.6371969 + posZ: -0.0299968254 rotX: 359.9201 - rotY: 269.994965 - rotZ: 0.01688318 + rotY: 269.995 + rotZ: 0.0168472324 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Restaurant 4146bf.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Restaurant 4146bf.yaml similarity index 89% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Restaurant 4146bf.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Restaurant 4146bf.yaml index 3d71e5eb7..b295da160 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Restaurant 4146bf.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Restaurant 4146bf.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -30.224 - posY: 1.69758832 - posZ: 7.56989956 + posX: -30.2240181 + posY: 1.63943017 + posZ: 7.56990337 rotX: 359.9201 - rotY: 269.999756 - rotZ: 0.0168765765 + rotY: 269.999878 + rotZ: 0.0168404877 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Room 225 0ba29a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Room 225 0ba29a.yaml similarity index 89% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Room 225 0ba29a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Room 225 0ba29a.yaml index bf4ceb816..01af9bb0d 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Room 225 0ba29a.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Room 225 0ba29a.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -23.68474 - posY: 1.68397355 - posZ: -7.69939041 + posX: -23.6765175 + posY: 1.62581241 + posZ: -7.699997 rotX: 359.9201 - rotY: 269.9999 - rotZ: 0.0168774221 + rotY: 269.999664 + rotZ: 0.0168401 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Scenario b1e599.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Scenario b1e599.yaml similarity index 89% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Scenario b1e599.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Scenario b1e599.yaml index 725304e16..f7e09f10c 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Scenario b1e599.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Scenario b1e599.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.95580077 - posY: 1.65564787 - posZ: -10.4414015 + posX: -3.955817 + posY: 1.59753919 + posZ: -10.4413977 rotX: 359.919739 - rotY: 270.000031 - rotZ: 0.0168411136 + rotY: 270.0001 + rotZ: 0.0168377422 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Second Floor Hall a78d38.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Second Floor Hall a78d38.yaml similarity index 91% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Second Floor Hall a78d38.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Second Floor Hall a78d38.yaml index 0b35764ed..39dcc4c2d 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Second Floor Hall a78d38.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Second Floor Hall a78d38.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -23.6765 - posY: 1.68622041 - posZ: -0.0300006364 + posX: -23.6765175 + posY: 1.62806654 + posZ: -0.0299968272 rotX: 359.9201 rotY: 270.0005 - rotZ: 0.01687554 + rotZ: 0.0168396086 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Suite Balcony 0f58ed.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Suite Balcony 0f58ed.yaml similarity index 89% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Suite Balcony 0f58ed.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Suite Balcony 0f58ed.yaml index ef9756277..c7bc76d06 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Suite Balcony 0f58ed.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Suite Balcony 0f58ed.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -23.6766 - posY: 1.68173 - posZ: -15.2800007 + posX: -23.6766167 + posY: 1.62358487 + posZ: -15.2799969 rotX: 359.9201 - rotY: 270.002075 - rotZ: 0.0168730412 + rotY: 270.002258 + rotZ: 0.0168370679 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6.yaml index e71c8ef01..2974c054e 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6.yaml @@ -60,12 +60,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 1.69660068 - posY: 1.55831671 + posX: 1.69660079 + posY: 1.55831647 posZ: 14.2787018 rotX: 359.955139 rotY: 224.9981 - rotZ: 0.06867284 + rotZ: 0.06867266 scaleX: 2.0 scaleY: 2.0 scaleZ: 2.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Dimensional Shambler 3fbc07.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Dimensional Shambler 3fbc07.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Dimensional Shambler 3fbc07.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Dimensional Shambler 3fbc07.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Harvested Brain 3fbc07.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Harvested Brain 3fbc07.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Harvested Brain 3fbc07.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Harvested Brain 3fbc07.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Hotel Manager 3fbc07.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Hotel Manager 3fbc07.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Hotel Manager 3fbc07.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Hotel Manager 3fbc07.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Otherworldly Meddler 3fbc07.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Otherworldly Meddler 3fbc07.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Otherworldly Meddler 3fbc07.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Otherworldly Meddler 3fbc07.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Sergeant Monroe 5630c2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Sergeant Monroe 5630c2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Sergeant Monroe 5630c2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Sergeant Monroe 5630c2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Vengeful Specter 3fbc07.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Vengeful Specter 3fbc07.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Vengeful Specter 3fbc07.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Vengeful Specter 3fbc07.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card What Have You Done 2c76d9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card What Have You Done 2c76d9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card What Have You Done 2c76d9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card What Have You Done 2c76d9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Arkham Officers f8ebf7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Arkham Officers f8ebf7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Arkham Officers f8ebf7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Arkham Officers f8ebf7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Chilling Presences 6d55da.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Chilling Presences 6d55da.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Chilling Presences 6d55da.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Chilling Presences 6d55da.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Cultists of the Enclave c0885d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Cultists of the Enclave c0885d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Cultists of the Enclave c0885d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Cultists of the Enclave c0885d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Encephalon Souls 1df3fd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Encephalon Souls 1df3fd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Encephalon Souls 1df3fd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Encephalon Souls 1df3fd.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Hotel Security e3dc34.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Hotel Security e3dc34.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Hotel Security e3dc34.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Hotel Security e3dc34.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Locations fa2f3a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Locations fa2f3a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Locations fa2f3a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Locations fa2f3a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Morbid Awarenesses d3eba4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Morbid Awarenesses d3eba4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Morbid Awarenesses d3eba4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Morbid Awarenesses d3eba4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck The True Culprit f6869f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck The True Culprit f6869f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck The True Culprit f6869f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck The True Culprit f6869f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_PDF Campaign Guide 36b4eb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_PDF Campaign Guide 36b4eb.yaml new file mode 100644 index 000000000..257855a85 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_PDF Campaign Guide 36b4eb.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomPDF: + PDFPage: 0 + PDFPageOffset: 0 + PDFPassword: '' + PDFUrl: http://cloud-3.steamusercontent.com/ugc/1597043896927515466/9B080BED9CF50F26EEE37E825546511A5DE24B00/ +Description: Murder at the Excelsior Hotel +DragSelectable: true +GMNotes: '' +GUID: 36b4eb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_PDF +Nickname: Campaign Guide +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.177475929 + posY: 1.500402 + posZ: 41.83642 + rotX: -0.000156461523 + rotY: 269.986176 + rotZ: 359.977783 + scaleX: 3.0 + scaleY: 1.0 + scaleZ: 3.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 56a08d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 56a08d.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 56a08d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 56a08d.yaml index 09c85de0c..ac796fe3a 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 56a08d.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 56a08d.yaml @@ -124,10 +124,10 @@ Sticky: true Tooltip: true Transform: posX: -23.6764 - posY: 1.613388 - posZ: -3.83000016 - rotX: 359.983124 - rotY: 0.00156122632 + posY: 1.61334491 + posZ: -3.829999 + rotX: 359.983154 + rotY: 0.00137466646 rotZ: 359.920074 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..12e3ecaf2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 7234af.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.62473536 + posZ: 3.86000061 + rotX: 359.983154 + rotY: 0.00162110245 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 89314b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 89314b.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 89314b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 89314b.yaml index 0dd5df00e..fa21449c5 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 89314b.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 89314b.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -27.2138 - posY: 1.62059987 + posY: 1.6205523 posZ: 3.91040039 rotX: 359.93158 - rotY: 314.995239 - rotZ: 359.955444 + rotY: 314.9952 + rotZ: 359.9554 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 9a82ba.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 9a82ba.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 9a82ba.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 9a82ba.yaml index a9860e7c4..3b763dab7 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 9a82ba.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 9a82ba.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -27.057 - posY: 1.619245 - posZ: 0.05209976 + posY: 1.61919951 + posZ: 0.0520997234 rotX: 359.920044 - rotY: 270.179626 - rotZ: 0.016649276 + rotY: 270.179657 + rotZ: 0.0166172218 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile c630c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile c630c5.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile c630c5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile c630c5.yaml index ae16d1921..02fa4b026 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile c630c5.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile c630c5.yaml @@ -124,10 +124,10 @@ Sticky: true Tooltip: true Transform: posX: -23.6764 - posY: 1.61112654 - posZ: -11.5100021 - rotX: 359.983124 - rotY: 0.00153610308 + posY: 1.6110878 + posZ: -11.51 + rotX: 359.983154 + rotY: 0.001506425 rotZ: 359.920074 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile Murder at the Excelsior Hotel bbb70a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile Murder at the Excelsior Hotel bbb70a.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile Murder at the Excelsior Hotel bbb70a.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile Murder at the Excelsior Hotel bbb70a.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile Murder at the Excelsior Hotel bbb70a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile Murder at the Excelsior Hotel bbb70a.yaml similarity index 94% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile Murder at the Excelsior Hotel bbb70a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile Murder at the Excelsior Hotel bbb70a.yaml index ce1242f78..95a3e81a9 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile Murder at the Excelsior Hotel bbb70a.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile Murder at the Excelsior Hotel bbb70a.yaml @@ -34,10 +34,10 @@ Tooltip: true Transform: posX: -3.88650012 posY: 1.582664 - posZ: -14.4341049 + posZ: -14.4341059 rotX: 359.919739 - rotY: 270.030579 - rotZ: 0.0167950485 + rotY: 270.0306 + rotZ: 0.016794987 scaleX: 2.2 scaleY: 1.0 scaleZ: 2.2 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Act Deck 37760f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Act Deck 37760f.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Act Deck 37760f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Act Deck 37760f.yaml index 08ec9d358..2ab509dd3 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Act Deck 37760f.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Act Deck 37760f.yaml @@ -126,12 +126,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -2.68849969 - posY: 1.66233337 - posZ: -5.048501 - rotX: 0.0168349557 - rotY: 180.000031 - rotZ: 0.08025799 + posX: -2.688524 + posY: 1.61430252 + posZ: -5.04849529 + rotX: 0.0168356225 + rotY: 180.0001 + rotZ: 0.08025578 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Agenda Deck 888a6b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Agenda Deck 888a6b.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Agenda Deck 888a6b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Agenda Deck 888a6b.yaml index b76072cde..7fcda3027 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Agenda Deck 888a6b.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Agenda Deck 888a6b.yaml @@ -126,12 +126,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -2.7247 - posY: 1.66397727 - posZ: 0.3733008 - rotX: 0.016834816 - rotY: 180.000137 - rotZ: 0.0802579448 + posX: -2.724724 + posY: 1.61594641 + posZ: 0.3733053 + rotX: 0.0168353133 + rotY: 180.0001 + rotZ: 0.08025654 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Encounter Deck fd4231.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Encounter Deck fd4231.yaml similarity index 99% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Encounter Deck fd4231.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Encounter Deck fd4231.yaml index f17c80dac..786521026 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Encounter Deck fd4231.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Encounter Deck fd4231.yaml @@ -1046,11 +1046,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.92770052 - posY: 1.72907436 - posZ: 5.75720167 + posX: -3.92770672 + posY: 1.71549428 + posZ: 5.757202 rotX: 359.919739 - rotY: 269.999969 + rotY: 269.999939 rotZ: 180.016815 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Leads Deck 227fad.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Leads Deck 227fad.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Leads Deck 227fad.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Leads Deck 227fad.yaml index 8e6953999..9b16b89f7 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Leads Deck 227fad.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Leads Deck 227fad.yaml @@ -264,11 +264,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -0.231100082 - posY: 1.65862477 - posZ: -10.4794044 + posX: -0.231105536 + posY: 1.6237067 + posZ: -10.4794006 rotX: 359.919739 - rotY: 270.000122 + rotY: 270.0001 rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca.yaml index 718d9c4f9..42da81294 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca.yaml @@ -54,9 +54,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 32.62627 - posY: 4.377767 - posZ: -99.13525 + posX: 0.212054 + posY: 3.34521747 + posZ: -27.636116 rotX: 0.0208085049 rotY: 270.000061 rotZ: 0.0167710986 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 0d7742.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 0d7742.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 0d7742.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 0d7742.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 4875a0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 4875a0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 4875a0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 4875a0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 711660.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 711660.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 711660.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 711660.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 718835.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 718835.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 718835.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 718835.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 89295c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 89295c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 89295c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 89295c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card b14575.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card b14575.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card b14575.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card b14575.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card b238b0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card b238b0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card b238b0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card b238b0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card b60f07.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card b60f07.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card b60f07.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card b60f07.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card cd26a2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card cd26a2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card cd26a2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card cd26a2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 087128.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 087128.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 087128.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 087128.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 2d4c2b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 2d4c2b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 2d4c2b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 2d4c2b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 4066d9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 4066d9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 4066d9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 4066d9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 6af68f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 6af68f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 6af68f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 6af68f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 6ca432.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 6ca432.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 6ca432.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 6ca432.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck 71801c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck 71801c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck 71801c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck 71801c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck 94329c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck 94329c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck 94329c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck 94329c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck Set Aside f7e2c9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck Set Aside f7e2c9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck Set Aside f7e2c9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck Set Aside f7e2c9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck instructions bd8df8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck instructions bd8df8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck instructions bd8df8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck instructions bd8df8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/DeckCustom afbae6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/DeckCustom afbae6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/DeckCustom afbae6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/DeckCustom afbae6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 19742b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 19742b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 19742b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 19742b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 2f7a8d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 2f7a8d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 2f7a8d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 2f7a8d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 40482a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 40482a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 40482a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 40482a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 4230c1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 4230c1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 4230c1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 4230c1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 66e655.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 66e655.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 66e655.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 66e655.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 713671.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 713671.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 713671.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 713671.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 7bc8af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 7bc8af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 7bc8af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 7bc8af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card b3fc0c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card b3fc0c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card b3fc0c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card b3fc0c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card d46ad3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card d46ad3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card d46ad3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card d46ad3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card e9bc3d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card e9bc3d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card e9bc3d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card e9bc3d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card ed1fa4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card ed1fa4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card ed1fa4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card ed1fa4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card Agenda 9a31a2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card Agenda 9a31a2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card Agenda 9a31a2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card Agenda 9a31a2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 374846.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 374846.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 374846.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 374846.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 453607.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 453607.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 453607.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 453607.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 552ae9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 552ae9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 552ae9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 552ae9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 6ceb58.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 6ceb58.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 6ceb58.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 6ceb58.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 77e04b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 77e04b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 77e04b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 77e04b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile aa51bd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile aa51bd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile aa51bd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile aa51bd.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile c11875.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile c11875.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile c11875.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile c11875.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile e5f61a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile e5f61a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile e5f61a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile e5f61a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck Act 3c18b1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck Act 3c18b1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck Act 3c18b1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck Act 3c18b1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck Blazing Fire 2119d3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck Blazing Fire 2119d3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck Blazing Fire 2119d3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck Blazing Fire 2119d3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck Encounter deck 8fb673.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck Encounter deck 8fb673.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck Encounter deck 8fb673.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck Encounter deck 8fb673.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck instructions 17aa19.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck instructions 17aa19.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck instructions 17aa19.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck instructions 17aa19.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck set aside b7b0af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck set aside b7b0af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck set aside b7b0af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck set aside b7b0af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Card 4e1347.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Card 4e1347.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Card 4e1347.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Card 4e1347.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Act c21348.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Act c21348.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Act c21348.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Act c21348.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Agenda 2afe31.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Agenda 2afe31.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Agenda 2afe31.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Agenda 2afe31.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Gloomy Woods 53eed4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Gloomy Woods 53eed4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Gloomy Woods 53eed4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Gloomy Woods 53eed4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Set aside a4069d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Set aside a4069d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Set aside a4069d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Set aside a4069d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck instructions ae5aa8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck instructions ae5aa8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck instructions ae5aa8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck instructions ae5aa8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck locations 35f5a8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck locations 35f5a8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck locations 35f5a8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck locations 35f5a8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/DeckCustom Encounter deck 72cb29.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/DeckCustom Encounter deck 72cb29.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/DeckCustom Encounter deck 72cb29.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/DeckCustom Encounter deck 72cb29.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Custom_Tile Core Difficulty ea0896.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Custom_Tile Core Difficulty ea0896.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Custom_Tile Core Difficulty ea0896.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Custom_Tile Core Difficulty ea0896.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Custom_Tile Core Difficulty ea0896.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Custom_Tile Core Difficulty ea0896.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country Cycle aaceca/Custom_Tile Core Difficulty ea0896.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag North Country Cycle aaceca/Custom_Tile Core Difficulty ea0896.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50.yaml index 41fd56dde..707a4f59d 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50.yaml @@ -52,10 +52,10 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -6.489306 - posY: 1.97222269 - posZ: -119.263855 - rotX: 2.35371385e-06 + posX: 0.112288848 + posY: 3.34242773 + posZ: -33.1091843 + rotX: 2.35288e-06 rotY: 270.000031 rotZ: 359.977844 scaleX: 2.21 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 0326fd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 0326fd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 0326fd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 0326fd.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 230ebd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 230ebd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 230ebd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 230ebd.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 3f7366.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 3f7366.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 3f7366.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 3f7366.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 4ffecc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 4ffecc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 4ffecc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 4ffecc.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 750180.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 750180.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 750180.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 750180.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card a82558.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card a82558.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card a82558.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card a82558.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card c432f1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card c432f1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card c432f1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card c432f1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card Intro 2aa44a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card Intro 2aa44a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card Intro 2aa44a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card Intro 2aa44a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card Resolution 5b9483.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card Resolution 5b9483.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card Resolution 5b9483.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card Resolution 5b9483.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card Scenario c76bb3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card Scenario c76bb3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card Scenario c76bb3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card Scenario c76bb3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card Setup efb2d6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card Setup efb2d6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card Setup efb2d6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card Setup efb2d6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Model_Bag Set-aside a45247.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Model_Bag Set-aside a45247.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Model_Bag Set-aside a45247.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Model_Bag Set-aside a45247/Card The Eye of Horus b1fc4a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Model_Bag Set-aside a45247/Card The Eye of Horus b1fc4a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Model_Bag Set-aside a45247/Card The Eye of Horus b1fc4a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Model_Bag Set-aside a45247/Card The Eye of Horus b1fc4a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Model_Bag Set-aside a45247/Deck Additional Encounter Cards 436974.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Model_Bag Set-aside a45247/Deck Additional Encounter Cards 436974.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Model_Bag Set-aside a45247/Deck Additional Encounter Cards 436974.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Model_Bag Set-aside a45247/Deck Additional Encounter Cards 436974.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Model_Bag Set-aside a45247/Deck Guard's Flashlight 947add.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Model_Bag Set-aside a45247/Deck Guard's Flashlight 947add.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Model_Bag Set-aside a45247/Deck Guard's Flashlight 947add.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Model_Bag Set-aside a45247/Deck Guard's Flashlight 947add.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Model_Bag Set-aside a45247/Deck Locations set-aside 0435df.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Model_Bag Set-aside a45247/Deck Locations set-aside 0435df.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Model_Bag Set-aside a45247/Deck Locations set-aside 0435df.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Model_Bag Set-aside a45247/Deck Locations set-aside 0435df.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile 1a5ecd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile 1a5ecd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile 1a5ecd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile 1a5ecd.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile 299828.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile 299828.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile 299828.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile 299828.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile 568894.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile 568894.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile 568894.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile 568894.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile a236db.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile a236db.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile a236db.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile a236db.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile b5b54e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile b5b54e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile b5b54e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile b5b54e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile Core Difficulty 56a08b.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile Core Difficulty 56a08b.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile Core Difficulty 56a08b.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile Core Difficulty 56a08b.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile Core Difficulty 56a08b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile Core Difficulty 56a08b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile Core Difficulty 56a08b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile Core Difficulty 56a08b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Act Deck cc188f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Act Deck cc188f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Act Deck cc188f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Act Deck cc188f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Agenda Deck bbee77.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Agenda Deck bbee77.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Agenda Deck bbee77.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Agenda Deck bbee77.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Docents 992398.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Docents 992398.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Docents 992398.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Docents 992398.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Encounter Deck 1d2252.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Encounter Deck 1d2252.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Encounter Deck 1d2252.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Encounter Deck 1d2252.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Museum Guards 1ee5f3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Museum Guards 1ee5f3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Museum Guards 1ee5f3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Museum Guards 1ee5f3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 045c19.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 045c19.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 045c19.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 045c19.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 04fba0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 04fba0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 04fba0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 04fba0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 1c4564.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 1c4564.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 1c4564.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 1c4564.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 2a2f1c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 2a2f1c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 2a2f1c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 2a2f1c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 3304b3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 3304b3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 3304b3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 3304b3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 4b16be.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 4b16be.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 4b16be.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 4b16be.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 724707.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 724707.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 724707.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 724707.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 8b12e0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 8b12e0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 8b12e0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 8b12e0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 8d38ae.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 8d38ae.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 8d38ae.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 8d38ae.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 8e672b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 8e672b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 8e672b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 8e672b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 90df18.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 90df18.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 90df18.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 90df18.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 941a94.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 941a94.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 941a94.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 941a94.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile a79177.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile a79177.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile a79177.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile a79177.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile bca554.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile bca554.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile bca554.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile bca554.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile c52136.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile c52136.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile c52136.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile c52136.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile cd18ab.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile cd18ab.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile cd18ab.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile cd18ab.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile dbf6b2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile dbf6b2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile dbf6b2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile dbf6b2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile e02457.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile e02457.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile e02457.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile e02457.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile e78f19.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile e78f19.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile e78f19.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile e78f19.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile f149bb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile f149bb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile f149bb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile f149bb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile fa5356.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile fa5356.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile fa5356.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile fa5356.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Deck Kidnappers 8651d7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Deck Kidnappers 8651d7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Deck Kidnappers 8651d7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Deck Kidnappers 8651d7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Card Egyptian Museum 6695ea.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Card Egyptian Museum 6695ea.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Card Egyptian Museum 6695ea.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Card Egyptian Museum 6695ea.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Card Scenario e68cf1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Card Scenario e68cf1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Card Scenario e68cf1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Card Scenario e68cf1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Card Scenario feafd1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Card Scenario feafd1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Card Scenario feafd1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Card Scenario feafd1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Card Abdul Reis b6d601.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Card Abdul Reis b6d601.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Card Abdul Reis b6d601.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Card Abdul Reis b6d601.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Card Ali Ziz cdcb0a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Card Ali Ziz cdcb0a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Card Ali Ziz cdcb0a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Card Ali Ziz cdcb0a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Card The Eye of Horus 53fbaa.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Card The Eye of Horus 53fbaa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Card The Eye of Horus 53fbaa.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Card The Eye of Horus 53fbaa.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Custom_Tile Map of Cairo d04e11.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Custom_Tile Map of Cairo d04e11.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Custom_Tile Map of Cairo d04e11.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Custom_Tile Map of Cairo d04e11.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Deck Assets 34905f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Deck Assets 34905f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Deck Assets 34905f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Deck Assets 34905f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Deck Enemies 3b4b54.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Deck Enemies 3b4b54.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Deck Enemies 3b4b54.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Deck Enemies 3b4b54.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Deck Locations 436ffa.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Deck Locations 436ffa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Deck Locations 436ffa.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Deck Locations 436ffa.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Deck Treacheries e65175.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Deck Treacheries e65175.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Deck Treacheries e65175.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Deck Treacheries e65175.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Act Deck e57331.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Act Deck e57331.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Act Deck e57331.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Act Deck e57331.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Agenda Deck 1a9793.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Agenda Deck 1a9793.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Agenda Deck 1a9793.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Agenda Deck 1a9793.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Assassins 881cd5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Assassins 881cd5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Assassins 881cd5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Assassins 881cd5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Encounter Deck ce95f2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Encounter Deck ce95f2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Encounter Deck ce95f2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Encounter Deck ce95f2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Setup, Modules & Resolution cee816.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Setup, Modules & Resolution cee816.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Setup, Modules & Resolution cee816.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Setup, Modules & Resolution cee816.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 072074.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 072074.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 072074.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 072074.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 094fe6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 094fe6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 094fe6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 094fe6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 22d293.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 22d293.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 22d293.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 22d293.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 309114.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 309114.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 309114.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 309114.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 4fdc8b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 4fdc8b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 4fdc8b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 4fdc8b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 5089d7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 5089d7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 5089d7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 5089d7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 6e3086.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 6e3086.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 6e3086.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 6e3086.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 8b01ca.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 8b01ca.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 8b01ca.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 8b01ca.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 923b89.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 923b89.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 923b89.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 923b89.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear a5c29c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear a5c29c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear a5c29c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear a5c29c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear b33801.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear b33801.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear b33801.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear b33801.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear c53e47.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear c53e47.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear c53e47.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear c53e47.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear ce40fa.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear ce40fa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear ce40fa.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear ce40fa.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear f03c51.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear f03c51.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear f03c51.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear f03c51.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear faa501.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear faa501.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear faa501.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear faa501.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Black Stairs 84e8a4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Black Stairs 84e8a4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Black Stairs 84e8a4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Black Stairs 84e8a4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Bottom of the Shaft 426d50.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Bottom of the Shaft 426d50.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Bottom of the Shaft 426d50.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Bottom of the Shaft 426d50.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Fresco Room 2c8619.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Fresco Room 2c8619.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Fresco Room 2c8619.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Fresco Room 2c8619.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Scenario 403576.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Scenario 403576.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Scenario 403576.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Scenario 403576.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Scenario 6cd4db.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Scenario 6cd4db.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Scenario 6cd4db.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Scenario 6cd4db.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Tunnel 2feec4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Tunnel 2feec4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Tunnel 2feec4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Tunnel 2feec4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Tunnel 70ed2b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Tunnel 70ed2b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Tunnel 70ed2b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Tunnel 70ed2b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Tunnel f3e8ca.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Tunnel f3e8ca.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Tunnel f3e8ca.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Tunnel f3e8ca.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Card Egyptian Cobra 92a835.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Card Egyptian Cobra 92a835.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Card Egyptian Cobra 92a835.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Card Egyptian Cobra 92a835.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Card King Kephren 94eab6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Card King Kephren 94eab6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Card King Kephren 94eab6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Card King Kephren 94eab6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Card Queen Nitokris 1006bb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Card Queen Nitokris 1006bb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Card Queen Nitokris 1006bb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Card Queen Nitokris 1006bb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Card The Thing 7d36b0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Card The Thing 7d36b0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Card The Thing 7d36b0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Card The Thing 7d36b0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Card Vision of the Sphynx c1e62c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Card Vision of the Sphynx c1e62c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Card Vision of the Sphynx c1e62c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Card Vision of the Sphynx c1e62c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Deck cf9fb7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Deck cf9fb7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Deck cf9fb7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Deck cf9fb7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Deck Abominations 2e9b44.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Deck Abominations 2e9b44.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Deck Abominations 2e9b44.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Deck Abominations 2e9b44.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Deck Locations c69ba2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Deck Locations c69ba2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Deck Locations c69ba2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Deck Locations c69ba2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Deck Wizard of the Order 26dcdb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Deck Wizard of the Order 26dcdb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Deck Wizard of the Order 26dcdb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Deck Wizard of the Order 26dcdb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile 023888.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile 023888.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile 023888.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile 023888.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile a813b4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile a813b4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile a813b4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile a813b4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile b23e87.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile b23e87.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile b23e87.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile b23e87.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile d374d4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile d374d4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile d374d4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile d374d4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Act Deck 142ed1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Act Deck 142ed1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Act Deck 142ed1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Act Deck 142ed1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Agenda Deck 5d139e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Agenda Deck 5d139e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Agenda Deck 5d139e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Agenda Deck 5d139e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Assets b53ca8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Assets b53ca8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Assets b53ca8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Assets b53ca8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Encounter Deck 946192.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Encounter Deck 946192.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Encounter Deck 946192.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Encounter Deck 946192.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Light Items 657e92.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Light Items 657e92.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Light Items 657e92.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Light Items 657e92.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Market Items 25ee3d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Market Items 25ee3d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Market Items 25ee3d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Market Items 25ee3d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Setup & Resolution ebb2a1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Setup & Resolution ebb2a1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Setup & Resolution ebb2a1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Setup & Resolution ebb2a1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202.yaml similarity index 95% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202.yaml index 3cade5c34..651ed6ad0 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202.yaml @@ -66,12 +66,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 32.51071 - posY: 2.31056881 - posZ: -2.11163735 - rotX: 359.93277 - rotY: 270.001678 - rotZ: 0.0142236622 + posX: -0.9705689 + posY: 3.45541525 + posZ: -19.6374359 + rotX: 1.28100874e-06 + rotY: 270.030823 + rotZ: -2.7068495e-07 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Banks of the Seine 7e11b7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Banks of the Seine 7e11b7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Banks of the Seine 7e11b7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Banks of the Seine 7e11b7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Champ de Mars b7fb8b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Champ de Mars b7fb8b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Champ de Mars b7fb8b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Champ de Mars b7fb8b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Cimetière de Père Lachaise 8fbe45.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Cimetière de Père Lachaise 8fbe45.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Cimetière de Père Lachaise 8fbe45.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Cimetière de Père Lachaise 8fbe45.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Daylight Dark is the Night c9c721.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Daylight Dark is the Night c9c721.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Daylight Dark is the Night c9c721.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Daylight Dark is the Night c9c721.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Garage de Passy fa4c47.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Garage de Passy fa4c47.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Garage de Passy fa4c47.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Garage de Passy fa4c47.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Le Cépage Montmartre a4a52d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Le Cépage Montmartre a4a52d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Le Cépage Montmartre a4a52d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Le Cépage Montmartre a4a52d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Long Earned Holidays e52441.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Long Earned Holidays e52441.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Long Earned Holidays e52441.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Long Earned Holidays e52441.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Midnight in Paris 192179.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Midnight in Paris 192179.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Midnight in Paris 192179.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Midnight in Paris 192179.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Montmartre cbaacc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Montmartre cbaacc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Montmartre cbaacc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Montmartre cbaacc.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Moulin Rouge 06d203.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Moulin Rouge 06d203.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Moulin Rouge 06d203.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Moulin Rouge 06d203.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Notre-Dame de Paris 0f80d8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Notre-Dame de Paris 0f80d8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Notre-Dame de Paris 0f80d8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Notre-Dame de Paris 0f80d8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Quartier Latin 1b897a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Quartier Latin 1b897a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Quartier Latin 1b897a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Quartier Latin 1b897a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Scenario a8fe14.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Scenario a8fe14.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Scenario a8fe14.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Card Scenario a8fe14.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Model_Bag Set-aside 9e2d42.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Model_Bag Set-aside 9e2d42.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Model_Bag Set-aside 9e2d42.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Model_Bag Set-aside 9e2d42.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Model_Bag Set-aside 9e2d42/Card Backfiring Motorcycle bd070f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Model_Bag Set-aside 9e2d42/Card Backfiring Motorcycle bd070f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Model_Bag Set-aside 9e2d42/Card Backfiring Motorcycle bd070f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Model_Bag Set-aside 9e2d42/Card Backfiring Motorcycle bd070f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Model_Bag Set-aside 9e2d42/Card Docteur Petiot's Bag a4e3e5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Model_Bag Set-aside 9e2d42/Card Docteur Petiot's Bag a4e3e5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Model_Bag Set-aside 9e2d42/Card Docteur Petiot's Bag a4e3e5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Model_Bag Set-aside 9e2d42/Card Docteur Petiot's Bag a4e3e5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Model_Bag Set-aside 9e2d42/Card Perceval, the Story of the Grail 8289ab.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Model_Bag Set-aside 9e2d42/Card Perceval, the Story of the Grail 8289ab.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Model_Bag Set-aside 9e2d42/Card Perceval, the Story of the Grail 8289ab.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Model_Bag Set-aside 9e2d42/Card Perceval, the Story of the Grail 8289ab.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Model_Bag Set-aside 9e2d42/Card Secret Gathering 91efef.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Model_Bag Set-aside 9e2d42/Card Secret Gathering 91efef.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Model_Bag Set-aside 9e2d42/Card Secret Gathering 91efef.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Model_Bag Set-aside 9e2d42/Card Secret Gathering 91efef.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 22ea35.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 22ea35.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 22ea35.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 22ea35.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 3f7732.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 3f7732.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 3f7732.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 3f7732.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 44b0c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 44b0c5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 44b0c5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 44b0c5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 48ac42.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 48ac42.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 48ac42.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 48ac42.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 4f4bf1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 4f4bf1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 4f4bf1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 4f4bf1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 61d9c7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 61d9c7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 61d9c7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 61d9c7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 8bc3db.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 8bc3db.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 8bc3db.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 8bc3db.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 9055e4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 9055e4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 9055e4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile 9055e4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile a20b9e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile a20b9e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile a20b9e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile a20b9e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile ba9515.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile ba9515.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile ba9515.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile ba9515.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile ee08db.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile ee08db.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile ee08db.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile ee08db.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile ff7146.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile ff7146.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile ff7146.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Custom_Tile ff7146.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Deck Cards Under Locations 35e12f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Deck Cards Under Locations 35e12f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Deck Cards Under Locations 35e12f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Deck Cards Under Locations 35e12f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Deck Encounter Deck e036b7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Deck Encounter Deck e036b7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Deck Encounter Deck e036b7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Midnight in Paris 7cda3f/Deck Encounter Deck e036b7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Card Eaves of Brocéliande 472747.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Card Eaves of Brocéliande 472747.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Card Eaves of Brocéliande 472747.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Card Eaves of Brocéliande 472747.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Card Scenario 48473d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Card Scenario 48473d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Card Scenario 48473d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Card Scenario 48473d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Model_Bag Set-aside 12fd65.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Model_Bag Set-aside 12fd65.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Model_Bag Set-aside 12fd65.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Model_Bag Set-aside 12fd65.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Model_Bag Set-aside 12fd65/Card Carl Kellner's Remnants 2b0543.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Model_Bag Set-aside 12fd65/Card Carl Kellner's Remnants 2b0543.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Model_Bag Set-aside 12fd65/Card Carl Kellner's Remnants 2b0543.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Model_Bag Set-aside 12fd65/Card Carl Kellner's Remnants 2b0543.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Model_Bag Set-aside 12fd65/Card Guardian of the Fountain d6b1db.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Model_Bag Set-aside 12fd65/Card Guardian of the Fountain d6b1db.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Model_Bag Set-aside 12fd65/Card Guardian of the Fountain d6b1db.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Model_Bag Set-aside 12fd65/Card Guardian of the Fountain d6b1db.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Model_Bag Set-aside 12fd65/Card Perceval, the Story of the Grail 8289ab.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Model_Bag Set-aside 12fd65/Card Perceval, the Story of the Grail 8289ab.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Model_Bag Set-aside 12fd65/Card Perceval, the Story of the Grail 8289ab.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Model_Bag Set-aside 12fd65/Card Perceval, the Story of the Grail 8289ab.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 0ef63c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 0ef63c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 0ef63c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 0ef63c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 44b0c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 44b0c5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 44b0c5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 44b0c5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 47c89a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 47c89a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 47c89a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 47c89a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 56663e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 56663e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 56663e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 56663e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 57220c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 57220c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 57220c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 57220c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 5ec77e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 5ec77e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 5ec77e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 5ec77e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 62a171.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 62a171.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 62a171.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 62a171.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 69bc22.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 69bc22.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 69bc22.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 69bc22.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 7258e7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 7258e7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 7258e7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 7258e7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 76f938.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 76f938.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 76f938.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile 76f938.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile ae6269.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile ae6269.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile ae6269.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile ae6269.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile b60629.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile b60629.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile b60629.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile b60629.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile b94a80.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile b94a80.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile b94a80.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile b94a80.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile bd944d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile bd944d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile bd944d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile bd944d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile ee1a2d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile ee1a2d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile ee1a2d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile ee1a2d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile ee28de.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile ee28de.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile ee28de.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Custom_Tile ee28de.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Deck Act Deck 87ab9a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Deck Act Deck 87ab9a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Deck Act Deck 87ab9a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Deck Act Deck 87ab9a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Deck Agenda Deck 9c7f8f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Deck Agenda Deck 9c7f8f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Deck Agenda Deck 9c7f8f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Deck Agenda Deck 9c7f8f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Deck Encounter Deck 3507f0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Deck Encounter Deck 3507f0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Deck Encounter Deck 3507f0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Deck Encounter Deck 3507f0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Deck Labyrinth Deck 4d41f2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Deck Labyrinth Deck 4d41f2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Deck Labyrinth Deck 4d41f2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Deck Labyrinth Deck 4d41f2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Deck Legend Locations b2778b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Deck Legend Locations b2778b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Deck Legend Locations b2778b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Deck Legend Locations b2778b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Deck non-Legend Locations 30def0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Deck non-Legend Locations 30def0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Deck non-Legend Locations 30def0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Shadows of Brocéliande 7b28eb/Deck non-Legend Locations 30def0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Abandoned Hangar e71fc6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Abandoned Hangar e71fc6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Abandoned Hangar e71fc6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Abandoned Hangar e71fc6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Bavarian Countryside bdf41b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Bavarian Countryside bdf41b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Bavarian Countryside bdf41b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Bavarian Countryside bdf41b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Ernest Schäfer's House e8c305.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Ernest Schäfer's House e8c305.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Ernest Schäfer's House e8c305.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Ernest Schäfer's House e8c305.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Marienplatz 8bb179.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Marienplatz 8bb179.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Marienplatz 8bb179.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Marienplatz 8bb179.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Scenario e9aa03.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Scenario e9aa03.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Scenario e9aa03.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Scenario e9aa03.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Streets of München 3b5cff.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Streets of München 3b5cff.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Streets of München 3b5cff.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Streets of München 3b5cff.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Streets of München 7a389d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Streets of München 7a389d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Streets of München 7a389d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Streets of München 7a389d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Streets of München a7b9c0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Streets of München a7b9c0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Streets of München a7b9c0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card Streets of München a7b9c0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card von Sebottendorf's Cellar f343cb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card von Sebottendorf's Cellar f343cb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card von Sebottendorf's Cellar f343cb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card von Sebottendorf's Cellar f343cb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card von Sebottendorf's Mansion 160117.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card von Sebottendorf's Mansion 160117.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card von Sebottendorf's Mansion 160117.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Card von Sebottendorf's Mansion 160117.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card Aleister Crowley 2b0543.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card Aleister Crowley 2b0543.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card Aleister Crowley 2b0543.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card Aleister Crowley 2b0543.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card Baron von Sebottendorf d6ee90.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card Baron von Sebottendorf d6ee90.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card Baron von Sebottendorf d6ee90.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card Baron von Sebottendorf d6ee90.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card Dr. Elli Horowitz 5b7d81.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card Dr. Elli Horowitz 5b7d81.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card Dr. Elli Horowitz 5b7d81.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card Dr. Elli Horowitz 5b7d81.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card Fokker DVII 1c44af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card Fokker DVII 1c44af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card Fokker DVII 1c44af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card Fokker DVII 1c44af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card Perceval, the Story of the Grail 4b17d4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card Perceval, the Story of the Grail 4b17d4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card Perceval, the Story of the Grail 4b17d4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card Perceval, the Story of the Grail 4b17d4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card Pr. Ernest Schäfer c8e70f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card Pr. Ernest Schäfer c8e70f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card Pr. Ernest Schäfer c8e70f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card Pr. Ernest Schäfer c8e70f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card The Iron Eagle ce263e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card The Iron Eagle ce263e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card The Iron Eagle ce263e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Model_Bag Set-aside d5fc2f/Card The Iron Eagle ce263e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile 111103.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile 111103.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile 111103.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile 111103.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile 276f0a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile 276f0a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile 276f0a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile 276f0a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile 44b0c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile 44b0c5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile 44b0c5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile 44b0c5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile 8d1203.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile 8d1203.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile 8d1203.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile 8d1203.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile 918259.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile 918259.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile 918259.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile 918259.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile 98cd24.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile 98cd24.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile 98cd24.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile 98cd24.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile c9df6a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile c9df6a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile c9df6a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile c9df6a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile deb62b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile deb62b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile deb62b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile deb62b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile e0245d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile e0245d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile e0245d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile e0245d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile e94e6c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile e94e6c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile e94e6c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile e94e6c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile f5482e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile f5482e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile f5482e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Custom_Tile f5482e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Deck Act Deck 846ace.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Deck Act Deck 846ace.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Deck Act Deck 846ace.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Deck Act Deck 846ace.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Deck Agenda Deck a1af36.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Deck Agenda Deck a1af36.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Deck Agenda Deck a1af36.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Deck Agenda Deck a1af36.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Deck Encounter Deck 23fa2a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Deck Encounter Deck 23fa2a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Deck Encounter Deck 23fa2a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Deck Encounter Deck 23fa2a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Deck Sky Encounter Deck c52e6d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Deck Sky Encounter Deck c52e6d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Deck Sky Encounter Deck c52e6d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag The München Conspiracy 286579/Deck Sky Encounter Deck c52e6d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Card Lhasa Airport a7a6d7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Card Lhasa Airport a7a6d7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Card Lhasa Airport a7a6d7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Card Lhasa Airport a7a6d7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Card Pr. Ernest Schäfer 5109ce.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Card Pr. Ernest Schäfer 5109ce.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Card Pr. Ernest Schäfer 5109ce.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Card Pr. Ernest Schäfer 5109ce.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Card Scenario f227e9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Card Scenario f227e9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Card Scenario f227e9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Card Scenario f227e9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Card Aleister Crowley 2b0543.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Card Aleister Crowley 2b0543.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Card Aleister Crowley 2b0543.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Card Aleister Crowley 2b0543.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Card Armandra, Daughter of Ithaqua ffff8a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Card Armandra, Daughter of Ithaqua ffff8a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Card Armandra, Daughter of Ithaqua ffff8a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Card Armandra, Daughter of Ithaqua ffff8a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Card Perceval, the Story of the Grail 06af5a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Card Perceval, the Story of the Grail 06af5a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Card Perceval, the Story of the Grail 06af5a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Card Perceval, the Story of the Grail 06af5a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Card Ritual Site d9cf58.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Card Ritual Site d9cf58.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Card Ritual Site d9cf58.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Card Ritual Site d9cf58.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Deck 798e9f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Deck 798e9f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Deck 798e9f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Deck 798e9f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Deck ca8a69.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Deck ca8a69.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Deck ca8a69.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Deck ca8a69.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Deck Baron's Folly 68d49b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Deck Baron's Folly 68d49b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Deck Baron's Folly 68d49b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Custom_Model_Bag Set-aside e4821e/Deck Baron's Folly 68d49b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Deck Act Deck bedac2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Deck Act Deck bedac2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Deck Act Deck bedac2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Deck Act Deck bedac2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Deck Agenda Deck 8b870c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Deck Agenda Deck 8b870c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Deck Agenda Deck 8b870c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Deck Agenda Deck 8b870c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Deck Encounter Deck afac59.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Deck Encounter Deck afac59.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Deck Encounter Deck afac59.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Deck Encounter Deck afac59.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Deck Exploration Deck e8d9d3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Deck Exploration Deck e8d9d3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Deck Exploration Deck e8d9d3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Bag Tibetan Winds ba2ded/Deck Exploration Deck e8d9d3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Custom_PDF b3bfc4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Custom_PDF b3bfc4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Custom_PDF b3bfc4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Custom_PDF b3bfc4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Custom_Tile Ordo Templi Orientis bbb70a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Custom_Tile Ordo Templi Orientis bbb70a.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Custom_Tile Ordo Templi Orientis bbb70a.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Custom_Tile Ordo Templi Orientis bbb70a.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Custom_Tile Ordo Templi Orientis bbb70a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Custom_Tile Ordo Templi Orientis bbb70a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi Orientis 7cf202/Custom_Tile Ordo Templi Orientis bbb70a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Ordo Templi Orientis 7cf202/Custom_Tile Ordo Templi Orientis bbb70a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1.yaml index f1f16e6f8..99392a13b 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1.yaml @@ -56,12 +56,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 58.8239479 - posY: 8.644118 - posZ: -74.25123 + posX: -0.158564642 + posY: 3.34397364 + posZ: -30.33088 rotX: 359.983246 rotY: 270.0 - rotZ: 0.00353683 + rotZ: 0.003536674 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Act 9265a9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Act 9265a9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Act 9265a9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Act 9265a9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Agenda 5aa9de.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Agenda 5aa9de.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Agenda 5aa9de.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Agenda 5aa9de.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Blood of Darr cf55fb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Blood of Darr cf55fb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Blood of Darr cf55fb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Blood of Darr cf55fb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Scenario 2c45d7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Scenario 2c45d7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Scenario 2c45d7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Scenario 2c45d7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Scenario 9fde32.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Scenario 9fde32.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Scenario 9fde32.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Scenario 9fde32.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Custom_Tile c8d06a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Custom_Tile c8d06a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Custom_Tile c8d06a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Custom_Tile c8d06a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck 9189f7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck 9189f7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck 9189f7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck 9189f7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck Darr with Tentacles 9b6393.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck Darr with Tentacles 9b6393.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck Darr with Tentacles 9b6393.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck Darr with Tentacles 9b6393.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck Encounter deck 54af2a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck Encounter deck 54af2a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck Encounter deck 54af2a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck Encounter deck 54af2a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck Possesed 502900.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck Possesed 502900.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck Possesed 502900.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck Possesed 502900.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Act abf334.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Act abf334.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Act abf334.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Act abf334.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Agenda f76027.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Agenda f76027.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Agenda f76027.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Agenda f76027.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Compass 144d2b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Compass 144d2b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Compass 144d2b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Compass 144d2b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Dark Room 994a74.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Dark Room 994a74.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Dark Room 994a74.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Dark Room 994a74.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Dinning room 1a927c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Dinning room 1a927c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Dinning room 1a927c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Dinning room 1a927c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Entrance Hall c68778.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Entrance Hall c68778.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Entrance Hall c68778.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Entrance Hall c68778.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Hallway 232875.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Hallway 232875.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Hallway 232875.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Hallway 232875.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Scenario 082fa1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Scenario 082fa1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Scenario 082fa1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Scenario 082fa1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Scenario 69fec9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Scenario 69fec9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Scenario 69fec9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Scenario 69fec9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 311a3a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 311a3a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 311a3a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 311a3a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 65e2c3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 65e2c3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 65e2c3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 65e2c3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 721d8d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 721d8d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 721d8d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 721d8d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 7d48cf.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 7d48cf.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 7d48cf.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 7d48cf.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Deck Forest locations e65038.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Deck Forest locations e65038.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Deck Forest locations e65038.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Deck Forest locations e65038.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/DeckCustom Encounter Deck c80dc6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/DeckCustom Encounter Deck c80dc6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/DeckCustom Encounter Deck c80dc6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/DeckCustom Encounter Deck c80dc6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card a94d87.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card a94d87.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card a94d87.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card a94d87.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card Scenario 082fa1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card Scenario 082fa1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card Scenario 082fa1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card Scenario 082fa1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card the Forest 17dea8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card the Forest 17dea8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card the Forest 17dea8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card the Forest 17dea8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card the House 18487b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card the House 18487b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card the House 18487b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card the House 18487b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Custom_Tile 3443db.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Custom_Tile 3443db.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Custom_Tile 3443db.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Custom_Tile 3443db.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Custom_Token b0fd83.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Custom_Token b0fd83.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Custom_Token b0fd83.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Custom_Token b0fd83.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck a76062.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck a76062.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck a76062.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck a76062.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Act deck 0ba5cb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Act deck 0ba5cb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Act deck 0ba5cb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Act deck 0ba5cb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Character Deck d2ee66.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Character Deck d2ee66.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Character Deck d2ee66.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Character Deck d2ee66.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Encounter Deck 1df3f1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Encounter Deck 1df3f1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Encounter Deck 1df3f1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Encounter Deck 1df3f1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Weather Deck 080bb7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Weather Deck 080bb7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Weather Deck 080bb7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Weather Deck 080bb7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Zz fccb6c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Zz fccb6c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Zz fccb6c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Zz fccb6c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/DeckCustom Agenda deck f4709f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/DeckCustom Agenda deck f4709f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/DeckCustom Agenda deck f4709f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/DeckCustom Agenda deck f4709f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Notecard Instruction 7e4091.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Notecard Instruction 7e4091.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Notecard Instruction 7e4091.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Notecard Instruction 7e4091.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Custom_Tile Campaign Guide b4cf5a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Custom_Tile Campaign Guide b4cf5a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Custom_Tile Campaign Guide b4cf5a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Custom_Tile Campaign Guide b4cf5a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Custom_Tile Core Difficulty 56a08b.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Custom_Tile Core Difficulty 56a08b.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Custom_Tile Core Difficulty 56a08b.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Custom_Tile Core Difficulty 56a08b.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Custom_Tile Core Difficulty 56a08b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Custom_Tile Core Difficulty 56a08b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Custom_Tile Core Difficulty 56a08b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Custom_Tile Core Difficulty 56a08b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Deck Assets 8578ad.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Deck Assets 8578ad.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe 28e0a1/Deck Assets 8578ad.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Parallel Universe 28e0a1/Deck Assets 8578ad.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa.yaml index 45eb7b029..977605a60 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa.yaml @@ -83,12 +83,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 30.0760422 - posY: 2.31454587 - posZ: 2.09866452 - rotX: 359.932739 - rotY: 270.0 - rotZ: 0.0141110811 + posX: 12.2504034 + posY: 1.4585377 + posZ: -20.013607 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687405 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Card Administration Building 0b6166.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Card Administration Building 0b6166.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Card Administration Building 0b6166.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Card Administration Building 0b6166.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Card Dormitories 4bd010.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Card Dormitories 4bd010.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Card Dormitories 4bd010.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Card Dormitories 4bd010.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Card Dr. Henry Armitage 66197b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Card Dr. Henry Armitage 66197b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Card Dr. Henry Armitage 66197b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Card Dr. Henry Armitage 66197b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Card Faculty Offices 47b306.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Card Faculty Offices 47b306.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Card Faculty Offices 47b306.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Card Faculty Offices 47b306.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Card Humanities Building 70df0b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Card Humanities Building 70df0b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Card Humanities Building 70df0b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Card Humanities Building 70df0b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Card Jazz Mulligan 52e361.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Card Jazz Mulligan 52e361.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Card Jazz Mulligan 52e361.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Card Jazz Mulligan 52e361.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Card Miskatonic Quad 4541f6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Card Miskatonic Quad 4541f6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Card Miskatonic Quad 4541f6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Card Miskatonic Quad 4541f6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Card Orne Library 116eb9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Card Orne Library 116eb9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Card Orne Library 116eb9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Card Orne Library 116eb9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Card Science Building 64a96b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Card Science Building 64a96b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Card Science Building 64a96b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Card Science Building 64a96b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Card Student Union b00f35.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Card Student Union b00f35.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Card Student Union b00f35.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Card Student Union b00f35.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/CardCustom Mortal Inquiry b58f4c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/CardCustom Mortal Inquiry b58f4c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/CardCustom Mortal Inquiry b58f4c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/CardCustom Mortal Inquiry b58f4c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/CardCustom Namer of the Dead 7f6452.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/CardCustom Namer of the Dead 7f6452.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/CardCustom Namer of the Dead 7f6452.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/CardCustom Namer of the Dead 7f6452.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/CardCustom Scenario a2fcc1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/CardCustom Scenario a2fcc1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/CardCustom Scenario a2fcc1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/CardCustom Scenario a2fcc1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/CardCustom Speed Reading f704e9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/CardCustom Speed Reading f704e9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/CardCustom Speed Reading f704e9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/CardCustom Speed Reading f704e9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Custom_PDF Read or Die Campaign Guide 7f7fb0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Custom_PDF Read or Die Campaign Guide 7f7fb0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Custom_PDF Read or Die Campaign Guide 7f7fb0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Custom_PDF Read or Die Campaign Guide 7f7fb0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile 1ed6d5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile 1ed6d5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile 1ed6d5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile 1ed6d5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile 25652c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile 25652c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile 25652c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile 25652c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile 4901f8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile 4901f8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile 4901f8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile 4901f8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile 739b98.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile 739b98.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile 739b98.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile 739b98.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile 7d30ce.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile 7d30ce.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile 7d30ce.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile 7d30ce.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile d70162.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile d70162.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile d70162.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile d70162.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile d7558d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile d7558d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile d7558d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile d7558d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile Read or Die b5928a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile Read or Die b5928a.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile Read or Die b5928a.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile Read or Die b5928a.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile Read or Die b5928a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile Read or Die b5928a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile Read or Die b5928a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Custom_Tile Read or Die b5928a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Deck Encounter Deck 556e96.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Deck Encounter Deck 556e96.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die 9e73fa/Deck Encounter Deck 556e96.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Read or Die 9e73fa/Deck Encounter Deck 556e96.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6.yaml index ed4fcb5dc..eba9e786d 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6.yaml @@ -55,12 +55,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 13.15182 - posY: 8.487423 - posZ: -148.670563 - rotX: 0.0208086744 + posX: -1.47415471 + posY: 3.34868145 + posZ: -23.7240982 + rotX: 0.0208086781 rotY: 270.000122 - rotZ: 0.0167700443 + rotZ: 0.0167700462 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card 58fc2d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card 58fc2d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card 58fc2d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card 58fc2d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card ec71af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card ec71af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card ec71af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card ec71af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card f79992.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card f79992.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card f79992.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card f79992.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card In Search of Sanity 640f2c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card In Search of Sanity 640f2c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card In Search of Sanity 640f2c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card In Search of Sanity 640f2c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card In Search of Sanity 70c71c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card In Search of Sanity 70c71c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card In Search of Sanity 70c71c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card In Search of Sanity 70c71c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99/Card 1f485e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99/Card 1f485e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99/Card 1f485e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99/Card 1f485e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99/Card d7be80.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99/Card d7be80.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99/Card d7be80.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99/Card d7be80.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99/Card e0f24e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99/Card e0f24e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99/Card e0f24e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99/Card e0f24e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck 0b884f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck 0b884f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck 0b884f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck 0b884f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck 1e0371.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck 1e0371.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck 1e0371.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck 1e0371.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck Act Deck 87b366.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck Act Deck 87b366.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck Act Deck 87b366.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck Act Deck 87b366.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck Agenda Deck 65073c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck Agenda Deck 65073c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck Agenda Deck 65073c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck Agenda Deck 65073c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck Encounter Deck 344ea1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck Encounter Deck 344ea1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck Encounter Deck 344ea1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck Encounter Deck 344ea1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck Treasures 9c0265.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck Treasures 9c0265.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck Treasures 9c0265.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck Treasures 9c0265.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 26c1c1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 26c1c1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 26c1c1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 26c1c1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 44b479.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 44b479.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 44b479.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 44b479.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 51476e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 51476e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 51476e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 51476e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 521307.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 521307.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 521307.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 521307.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 6ecbc4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 6ecbc4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 6ecbc4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 6ecbc4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 83b8ac.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 83b8ac.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 83b8ac.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 83b8ac.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 96fc11.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 96fc11.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 96fc11.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 96fc11.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card deefa0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card deefa0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card deefa0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card deefa0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card f2879e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card f2879e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card f2879e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card f2879e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card The Thrushmoor Terror 482923.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card The Thrushmoor Terror 482923.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card The Thrushmoor Terror 482923.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card The Thrushmoor Terror 482923.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card The Thrushmoor Terror 7a0fd0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card The Thrushmoor Terror 7a0fd0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card The Thrushmoor Terror 7a0fd0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card The Thrushmoor Terror 7a0fd0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Model_Bag Set-Aside 97c293.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Model_Bag Set-Aside 97c293.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Model_Bag Set-Aside 97c293.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Model_Bag Set-Aside 97c293.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Model_Bag Set-Aside 97c293/Card 4b0f8b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Model_Bag Set-Aside 97c293/Card 4b0f8b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Model_Bag Set-Aside 97c293/Card 4b0f8b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Model_Bag Set-Aside 97c293/Card 4b0f8b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Model_Bag Set-Aside 97c293/Card a6b5da.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Model_Bag Set-Aside 97c293/Card a6b5da.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Model_Bag Set-Aside 97c293/Card a6b5da.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Model_Bag Set-Aside 97c293/Card a6b5da.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Model_Bag Set-Aside 97c293/Deck Star stele story assets 41e90a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Model_Bag Set-Aside 97c293/Deck Star stele story assets 41e90a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Model_Bag Set-Aside 97c293/Deck Star stele story assets 41e90a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Model_Bag Set-Aside 97c293/Deck Star stele story assets 41e90a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 085d1f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 085d1f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 085d1f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 085d1f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 197356.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 197356.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 197356.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 197356.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 20add9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 20add9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 20add9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 20add9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 2cb49f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 2cb49f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 2cb49f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 2cb49f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 31c54f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 31c54f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 31c54f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 31c54f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile c1e370.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile c1e370.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile c1e370.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile c1e370.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Cthulhu Act 797927.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Cthulhu Act 797927.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Cthulhu Act 797927.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Cthulhu Act 797927.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Cthulhu Agenda 5c3018.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Cthulhu Agenda 5c3018.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Cthulhu Agenda 5c3018.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Cthulhu Agenda 5c3018.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Cthulhu Encounter Deck c031d6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Cthulhu Encounter Deck c031d6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Cthulhu Encounter Deck c031d6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Cthulhu Encounter Deck c031d6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Encounter Deck 658c70.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Encounter Deck 658c70.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Encounter Deck 658c70.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Encounter Deck 658c70.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Hastur Act a6e5f6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Hastur Act a6e5f6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Hastur Act a6e5f6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Hastur Act a6e5f6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Hastur Agenda 19cca9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Hastur Agenda 19cca9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Hastur Agenda 19cca9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Hastur Agenda 19cca9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Hastur Encounter Deck 8f0ac0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Hastur Encounter Deck 8f0ac0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Hastur Encounter Deck 8f0ac0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Hastur Encounter Deck 8f0ac0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Bastiele 2a0060.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Bastiele 2a0060.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Bastiele 2a0060.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Bastiele 2a0060.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Bastiele 2a0060/Card Bastiele 3aa40a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Bastiele 2a0060/Card Bastiele 3aa40a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Bastiele 2a0060/Card Bastiele 3aa40a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Bastiele 2a0060/Card Bastiele 3aa40a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Bastiele 2a0060/Deck ff2949.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Bastiele 2a0060/Deck ff2949.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Bastiele 2a0060/Deck ff2949.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Bastiele 2a0060/Deck ff2949.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Caspian Kezali 907bb0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Caspian Kezali 907bb0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Caspian Kezali 907bb0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Caspian Kezali 907bb0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Caspian Kezali 907bb0/Card Caspian Kezali 3465a5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Caspian Kezali 907bb0/Card Caspian Kezali 3465a5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Caspian Kezali 907bb0/Card Caspian Kezali 3465a5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Caspian Kezali 907bb0/Card Caspian Kezali 3465a5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Caspian Kezali 907bb0/Deck a57210.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Caspian Kezali 907bb0/Deck a57210.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Caspian Kezali 907bb0/Deck a57210.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Caspian Kezali 907bb0/Deck a57210.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Hubert Thonberry 0a0c0d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Hubert Thonberry 0a0c0d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Hubert Thonberry 0a0c0d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Hubert Thonberry 0a0c0d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Hubert Thonberry 0a0c0d/Card Hubert Thonberry 23d41e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Hubert Thonberry 0a0c0d/Card Hubert Thonberry 23d41e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Hubert Thonberry 0a0c0d/Card Hubert Thonberry 23d41e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Hubert Thonberry 0a0c0d/Card Hubert Thonberry 23d41e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Hubert Thonberry 0a0c0d/Deck 7634fc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Hubert Thonberry 0a0c0d/Deck 7634fc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Hubert Thonberry 0a0c0d/Deck 7634fc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Hubert Thonberry 0a0c0d/Deck 7634fc.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Illustria 35a3d2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Illustria 35a3d2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Illustria 35a3d2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Illustria 35a3d2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Illustria 35a3d2/Card Illustria 29cf64.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Illustria 35a3d2/Card Illustria 29cf64.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Illustria 35a3d2/Card Illustria 29cf64.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Illustria 35a3d2/Card Illustria 29cf64.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Illustria 35a3d2/Deck 55c805.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Illustria 35a3d2/Deck 55c805.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Illustria 35a3d2/Deck 55c805.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Illustria 35a3d2/Deck 55c805.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Lord Todd 25665a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Lord Todd 25665a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Lord Todd 25665a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Lord Todd 25665a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Lord Todd 25665a/Card Lord Todd 0d2913.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Lord Todd 25665a/Card Lord Todd 0d2913.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Lord Todd 25665a/Card Lord Todd 0d2913.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Lord Todd 25665a/Card Lord Todd 0d2913.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Lord Todd 25665a/Deck 3f56a4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Lord Todd 25665a/Deck 3f56a4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Lord Todd 25665a/Deck 3f56a4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Lord Todd 25665a/Deck 3f56a4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Scene 4d9933.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Scene 4d9933.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Scene 4d9933.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Scene 4d9933.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Scene 4d9933/Card Scene 089a45.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Scene 4d9933/Card Scene 089a45.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Scene 4d9933/Card Scene 089a45.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Scene 4d9933/Card Scene 089a45.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Scene 4d9933/Deck 8d39b5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Scene 4d9933/Deck 8d39b5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Scene 4d9933/Deck 8d39b5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Scene 4d9933/Deck 8d39b5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Custom_Tile Strange Aeons 82e1ed.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Custom_Tile Strange Aeons 82e1ed.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Custom_Tile Strange Aeons 82e1ed.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Custom_Tile Strange Aeons 82e1ed.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Custom_Tile Strange Aeons 82e1ed.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Custom_Tile Strange Aeons 82e1ed.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Custom_Tile Strange Aeons 82e1ed.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Custom_Tile Strange Aeons 82e1ed.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Deck Player Cards 1f4db7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Deck Player Cards 1f4db7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Deck Player Cards 1f4db7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Deck Player Cards 1f4db7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Tablet Campaign Guide c2fe44.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Tablet Campaign Guide c2fe44.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons 2abdd6/Tablet Campaign Guide c2fe44.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Strange Aeons 2abdd6/Tablet Campaign Guide c2fe44.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301.yaml index b81441361..3b9829b80 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301.yaml @@ -80,12 +80,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 12.461175 - posY: 8.483954 - posZ: -159.661087 - rotX: 0.02080875 + posX: 0.234562844 + posY: 3.344123 + posZ: -31.1414661 + rotX: 0.020808747 rotY: 269.999969 - rotZ: 0.0167711042 + rotZ: 0.016771106 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611/Card a59501.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611/Card a59501.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611/Card a59501.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611/Card a59501.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611/Card fdd2cb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611/Card fdd2cb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611/Card fdd2cb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611/Card fdd2cb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611/Deck 2bc52f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611/Deck 2bc52f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611/Deck 2bc52f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611/Deck 2bc52f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49/Card 0c538c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49/Card 0c538c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49/Card 0c538c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49/Card 0c538c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49/Card 9a064e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49/Card 9a064e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49/Card 9a064e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49/Card 9a064e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49/Deck 0d8168.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49/Deck 0d8168.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49/Deck 0d8168.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49/Deck 0d8168.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953/Card 7a8c86.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953/Card 7a8c86.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953/Card 7a8c86.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953/Card 7a8c86.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953/Card debf4e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953/Card debf4e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953/Card debf4e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953/Card debf4e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953/Deck 4a5c33.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953/Deck 4a5c33.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953/Deck 4a5c33.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953/Deck 4a5c33.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625/Card 0fa70a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625/Card 0fa70a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625/Card 0fa70a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625/Card 0fa70a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625/Card c59ae6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625/Card c59ae6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625/Card c59ae6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625/Card c59ae6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625/Deck 82ae52.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625/Deck 82ae52.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625/Deck 82ae52.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625/Deck 82ae52.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb/Card 46993c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb/Card 46993c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb/Card 46993c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb/Card 46993c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb/Card 87050d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb/Card 87050d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb/Card 87050d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb/Card 87050d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb/Deck 4fad8b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb/Deck 4fad8b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb/Deck 4fad8b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb/Deck 4fad8b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Card 239c56.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Card 239c56.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Card 239c56.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Card 239c56.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Card 3ba2fb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Card 3ba2fb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Card 3ba2fb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Card 3ba2fb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Card 43d027.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Card 43d027.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Card 43d027.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Card 43d027.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Card 4595ad.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Card 4595ad.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Card 4595ad.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Card 4595ad.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Card 893557.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Card 893557.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Card 893557.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Card 893557.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Card b2b842.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Card b2b842.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Card b2b842.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Card b2b842.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Card bb506e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Card bb506e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Card bb506e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Card bb506e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Card c210e3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Card c210e3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Card c210e3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Card c210e3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Card d90311.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Card d90311.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Card d90311.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Card d90311.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Card f6d6d8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Card f6d6d8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Card f6d6d8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Card f6d6d8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Card f7c15e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Card f7c15e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Card f7c15e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Card f7c15e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile 3210d6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile 3210d6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile 3210d6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile 3210d6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile 4667f1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile 4667f1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile 4667f1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile 4667f1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile 4f0a6b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile 4f0a6b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile 4f0a6b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile 4f0a6b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile 616612.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile 616612.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile 616612.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile 616612.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile 6950d2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile 6950d2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile 6950d2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile 6950d2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile 709830.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile 709830.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile 709830.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile 709830.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile b6d48a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile b6d48a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile b6d48a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile b6d48a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile be6abb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile be6abb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile be6abb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile be6abb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile daef01.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile daef01.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile daef01.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile daef01.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile e22a64.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile e22a64.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile e22a64.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile e22a64.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile fbf157.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile fbf157.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile fbf157.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile fbf157.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile Stranger Things bc825a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile Stranger Things bc825a.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile Stranger Things bc825a.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile Stranger Things bc825a.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile Stranger Things bc825a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile Stranger Things bc825a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Custom_Tile Stranger Things bc825a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Custom_Tile Stranger Things bc825a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Deck Act 22e3f2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Deck Act 22e3f2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Deck Act 22e3f2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Deck Act 22e3f2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Deck Agenda 62b3ab.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Deck Agenda 62b3ab.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Deck Agenda 62b3ab.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Deck Agenda 62b3ab.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Deck Encounter Deck 9f9e79.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Deck Encounter Deck 9f9e79.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Deck Encounter Deck 9f9e79.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Deck Encounter Deck 9f9e79.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Deck Instructions 6bbd29.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Deck Instructions 6bbd29.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Deck Instructions 6bbd29.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Deck Instructions 6bbd29.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Deck Set Aside 1078c7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Deck Set Aside 1078c7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Deck Set Aside 1078c7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Deck Set Aside 1078c7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Deck Upside Down f0e2dc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Deck Upside Down f0e2dc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things 408301/Deck Upside Down f0e2dc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Stranger Things 408301/Deck Upside Down f0e2dc.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66.yaml index 2482594c5..e27dff3a3 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66.yaml @@ -66,9 +66,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 31.20899 - posY: 2.534925 - posZ: -62.81916 + posX: 21.3358154 + posY: 4.30929 + posZ: -29.8880882 rotX: 359.983246 rotY: 270.0042 rotZ: 0.00353439571 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card 4bef96.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card 4bef96.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card 4bef96.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card 4bef96.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card 7d0607.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card 7d0607.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card 7d0607.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card 7d0607.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card bf19ca.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card bf19ca.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card bf19ca.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card bf19ca.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card cc90b5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card cc90b5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card cc90b5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card cc90b5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card f96697.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card f96697.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card f96697.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card f96697.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card A Plot Uncovered 4a2a90.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card A Plot Uncovered 4a2a90.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card A Plot Uncovered 4a2a90.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card A Plot Uncovered 4a2a90.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card A Plot Uncovered 8b9011.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card A Plot Uncovered 8b9011.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card A Plot Uncovered 8b9011.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card A Plot Uncovered 8b9011.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card Agenda a6b095.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card Agenda a6b095.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card Agenda a6b095.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card Agenda a6b095.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile 46cc04.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile 46cc04.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile 46cc04.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile 46cc04.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile 49a311.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile 49a311.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile 49a311.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile 49a311.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile a35da6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile a35da6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile a35da6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile a35da6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile c81219.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile c81219.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile c81219.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile c81219.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile cd6909.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile cd6909.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile cd6909.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile cd6909.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile f6c752.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile f6c752.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile f6c752.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile f6c752.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Deck Act 3f93f1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Deck Act 3f93f1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Deck Act 3f93f1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Deck Act 3f93f1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Deck Encounter deck fc1f03.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Deck Encounter deck fc1f03.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Deck Encounter deck fc1f03.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Deck Encounter deck fc1f03.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Deck Set Aside 29fbe7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Deck Set Aside 29fbe7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Deck Set Aside 29fbe7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Deck Set Aside 29fbe7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 096002.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 096002.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 096002.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 096002.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 380db3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 380db3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 380db3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 380db3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 3cbafc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 3cbafc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 3cbafc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 3cbafc.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 6e20a1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 6e20a1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 6e20a1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 6e20a1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 6f90fa.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 6f90fa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 6f90fa.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 6f90fa.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 95fb21.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 95fb21.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 95fb21.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 95fb21.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card bf1500.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card bf1500.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card bf1500.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card bf1500.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card c7455c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card c7455c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card c7455c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card c7455c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card c7be0d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card c7be0d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card c7be0d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card c7be0d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card d3b37b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card d3b37b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card d3b37b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card d3b37b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card d6a33e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card d6a33e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card d6a33e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card d6a33e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card e22a23.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card e22a23.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card e22a23.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card e22a23.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card f7581c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card f7581c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card f7581c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card f7581c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card fce4b3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card fce4b3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card fce4b3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card fce4b3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card Dark Waters 0ba33d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card Dark Waters 0ba33d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card Dark Waters 0ba33d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card Dark Waters 0ba33d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card Dark Waters 7bc943.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card Dark Waters 7bc943.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card Dark Waters 7bc943.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card Dark Waters 7bc943.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 03a960.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 03a960.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 03a960.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 03a960.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 35c1a1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 35c1a1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 35c1a1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 35c1a1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 37601c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 37601c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 37601c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 37601c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 3db33f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 3db33f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 3db33f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 3db33f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 419f77.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 419f77.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 419f77.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 419f77.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 5c9eec.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 5c9eec.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 5c9eec.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 5c9eec.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 78a09e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 78a09e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 78a09e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 78a09e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile a4f503.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile a4f503.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile a4f503.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile a4f503.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile e460f8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile e460f8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile e460f8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile e460f8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Act f5cb30.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Act f5cb30.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Act f5cb30.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Act f5cb30.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Agenda d7a166.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Agenda d7a166.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Agenda d7a166.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Agenda d7a166.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Encounter 0f3de3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Encounter 0f3de3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Encounter 0f3de3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Encounter 0f3de3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Set Aside 7a9beb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Set Aside 7a9beb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Set Aside 7a9beb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Set Aside 7a9beb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Set Aside Encounter 767b41.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Set Aside Encounter 767b41.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Set Aside Encounter 767b41.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Set Aside Encounter 767b41.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck crewmans and passangers d2adc8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck crewmans and passangers d2adc8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck crewmans and passangers d2adc8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck crewmans and passangers d2adc8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card 2a17f9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card 2a17f9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card 2a17f9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card 2a17f9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card 6f10f6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card 6f10f6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card 6f10f6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card 6f10f6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card 6fb30e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card 6fb30e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card 6fb30e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card 6fb30e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card aecab0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card aecab0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card aecab0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card aecab0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card b97e33.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card b97e33.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card b97e33.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card b97e33.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card f7581c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card f7581c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card f7581c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card f7581c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card Curiosities 1b6853.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card Curiosities 1b6853.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card Curiosities 1b6853.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card Curiosities 1b6853.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card Curiosities 7ea46a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card Curiosities 7ea46a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card Curiosities 7ea46a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card Curiosities 7ea46a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile 87e61c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile 87e61c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile 87e61c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile 87e61c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile bb5609.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile bb5609.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile bb5609.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile bb5609.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile c4ffff.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile c4ffff.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile c4ffff.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile c4ffff.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile f75c42.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile f75c42.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile f75c42.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile f75c42.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile fcba41.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile fcba41.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile fcba41.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile fcba41.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Act ea12d1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Act ea12d1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Act ea12d1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Act ea12d1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Agenda 02ccc9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Agenda 02ccc9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Agenda 02ccc9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Agenda 02ccc9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Encounter dd5f8a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Encounter dd5f8a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Encounter dd5f8a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Encounter dd5f8a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Set Aside 8b474c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Set Aside 8b474c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Set Aside 8b474c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Set Aside 8b474c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Card 2ffc66.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Card 2ffc66.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Card 2ffc66.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Card 2ffc66.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Card Shadow Rails 6bf301.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Card Shadow Rails 6bf301.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Card Shadow Rails 6bf301.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Card Shadow Rails 6bf301.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Card Shadow Rails a46fae.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Card Shadow Rails a46fae.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Card Shadow Rails a46fae.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Card Shadow Rails a46fae.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck 91259f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck 91259f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck 91259f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck 91259f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Act 1e19b2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Act 1e19b2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Act 1e19b2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Act 1e19b2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Agenda 704b7d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Agenda 704b7d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Agenda 704b7d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Agenda 704b7d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Encounter ee15fa.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Encounter ee15fa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Encounter ee15fa.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Encounter ee15fa.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Locations 4f2ee1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Locations 4f2ee1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Locations 4f2ee1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Locations 4f2ee1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Set Aside cba1b5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Set Aside cba1b5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Set Aside cba1b5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Set Aside cba1b5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card 34fcda.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card 34fcda.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card 34fcda.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card 34fcda.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card 681d42.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card 681d42.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card 681d42.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card 681d42.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card e62de4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card e62de4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card e62de4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card e62de4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card lair of the Cult 331358.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card lair of the Cult 331358.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card lair of the Cult 331358.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card lair of the Cult 331358.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card lair of the Cult f7581c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card lair of the Cult f7581c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card lair of the Cult f7581c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card lair of the Cult f7581c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Custom_Tile 0f956f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Custom_Tile 0f956f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Custom_Tile 0f956f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Custom_Tile 0f956f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck dfe2ba.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck dfe2ba.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck dfe2ba.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck dfe2ba.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck Act 638bd0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck Act 638bd0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck Act 638bd0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck Act 638bd0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck Agenda 4bc608.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck Agenda 4bc608.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck Agenda 4bc608.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck Agenda 4bc608.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck Encounter 033f48.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck Encounter 033f48.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck Encounter 033f48.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck Encounter 033f48.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck Set Aside encounter 040771.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck Set Aside encounter 040771.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck Set Aside encounter 040771.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck Set Aside encounter 040771.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/DeckCustom Locations 35e962.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/DeckCustom Locations 35e962.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/DeckCustom Locations 35e962.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/DeckCustom Locations 35e962.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card 20b6d1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card 20b6d1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card 20b6d1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card 20b6d1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card 4e8a38.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card 4e8a38.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card 4e8a38.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card 4e8a38.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card f42e2f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card f42e2f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card f42e2f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card f42e2f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card scenario 19ef09.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card scenario 19ef09.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card scenario 19ef09.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card scenario 19ef09.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card scenario 9cc274.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card scenario 9cc274.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card scenario 9cc274.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card scenario 9cc274.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Custom_Tile 22f69c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Custom_Tile 22f69c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Custom_Tile 22f69c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Custom_Tile 22f69c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Deck Act f49c18.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Deck Act f49c18.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Deck Act f49c18.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Deck Act f49c18.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Deck Agenda 472846.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Deck Agenda 472846.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Deck Agenda 472846.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Deck Agenda 472846.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Deck Encounter 945cf2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Deck Encounter 945cf2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Deck Encounter 945cf2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Deck Encounter 945cf2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Deck Set Aside 10ce87.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Deck Set Aside 10ce87.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Deck Set Aside 10ce87.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Deck Set Aside 10ce87.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag Campaign Guide 4d6544.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag Campaign Guide 4d6544.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Bag Campaign Guide 4d6544.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Bag Campaign Guide 4d6544.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Custom_Tile The Approaching Storm 7521a9.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Custom_Tile The Approaching Storm 7521a9.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Custom_Tile The Approaching Storm 7521a9.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Custom_Tile The Approaching Storm 7521a9.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Custom_Tile The Approaching Storm 7521a9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Custom_Tile The Approaching Storm 7521a9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching Storm 0fad66/Custom_Tile The Approaching Storm 7521a9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Approaching Storm 0fad66/Custom_Tile The Approaching Storm 7521a9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a.yaml index 8066fcb16..372d691bb 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a.yaml @@ -97,12 +97,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 32.2998734 - posY: 2.319146 - posZ: 0.140027389 - rotX: 359.932739 - rotY: 269.999969 - rotZ: 0.0142058879 + posX: 12.2500057 + posY: 1.46089375 + posZ: -12.0136023 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168738347 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf/CardCustom Subject 8L-08 6a7bfc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf/CardCustom Subject 8L-08 6a7bfc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf/CardCustom Subject 8L-08 6a7bfc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf/CardCustom Subject 8L-08 6a7bfc.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf/Deck Act Deck c5100a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf/Deck Act Deck c5100a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf/Deck Act Deck c5100a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf/Deck Act Deck c5100a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305/CardCustom Subject 8L-08 b7790b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305/CardCustom Subject 8L-08 b7790b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305/CardCustom Subject 8L-08 b7790b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305/CardCustom Subject 8L-08 b7790b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305/Deck Act Deck c5100a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305/Deck Act Deck c5100a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305/Deck Act Deck c5100a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305/Deck Act Deck c5100a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card Fungus Mound aea880.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card Fungus Mound aea880.yaml similarity index 87% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card Fungus Mound aea880.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card Fungus Mound aea880.yaml index 7b66968b5..0107d3d24 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card Fungus Mound aea880.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card Fungus Mound aea880.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -12.3070335 - posY: 1.62147915 - posZ: 15.2990522 - rotX: 359.967468 - rotY: 270.001556 - rotZ: 0.1998685 + posX: -12.3070068 + posY: 1.62148118 + posZ: 15.2990208 + rotX: 359.9201 + rotY: 270.001648 + rotZ: 0.266275644 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card Scenario 8456bc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card Scenario 8456bc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card Scenario 8456bc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card Scenario 8456bc.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card The Crater e9889e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card The Crater e9889e.yaml similarity index 95% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card The Crater e9889e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card The Crater e9889e.yaml index 0968dbb29..842790e0f 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card The Crater e9889e.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card The Crater e9889e.yaml @@ -35,10 +35,10 @@ Tooltip: true Transform: posX: -30.2243176 posY: 1.637197 - posZ: -0.0299969818 + posZ: -0.0299970042 rotX: 359.9201 rotY: 270.000977 - rotZ: 0.0168389231 + rotZ: 0.01683889 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72.yaml index 7f97794e0..7aa0775d2 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72.yaml @@ -53,11 +53,11 @@ Sticky: true Tooltip: true Transform: posX: 1.69660068 - posY: 1.55831671 + posY: 1.55831635 posZ: 14.2788019 rotX: 359.955139 - rotY: 224.997818 - rotZ: 0.06867356 + rotY: 224.9978 + rotZ: 0.06867285 scaleX: 2.0 scaleY: 2.0 scaleZ: 2.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Bag Story Cards + Relevant Set-Asides c40cac.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Bag Story Cards + Relevant Set-Asides c40cac.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Bag Story Cards + Relevant Set-Asides c40cac.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Bag Story Cards + Relevant Set-Asides c40cac.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Bag Story Cards + Relevant Set-Asides c40cac/Deck Defuse the Explosives 22337f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Bag Story Cards + Relevant Set-Asides c40cac/Deck Defuse the Explosives 22337f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Bag Story Cards + Relevant Set-Asides c40cac/Deck Defuse the Explosives 22337f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Bag Story Cards + Relevant Set-Asides c40cac/Deck Defuse the Explosives 22337f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Bag Story Cards + Relevant Set-Asides c40cac/Deck Drive Off the Mi-Go 476bd6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Bag Story Cards + Relevant Set-Asides c40cac/Deck Drive Off the Mi-Go 476bd6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Bag Story Cards + Relevant Set-Asides c40cac/Deck Drive Off the Mi-Go 476bd6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Bag Story Cards + Relevant Set-Asides c40cac/Deck Drive Off the Mi-Go 476bd6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Bag Story Cards + Relevant Set-Asides c40cac/Deck Recover the Sample 291b2b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Bag Story Cards + Relevant Set-Asides c40cac/Deck Recover the Sample 291b2b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Bag Story Cards + Relevant Set-Asides c40cac/Deck Recover the Sample 291b2b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Bag Story Cards + Relevant Set-Asides c40cac/Deck Recover the Sample 291b2b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Bag Story Cards + Relevant Set-Asides c40cac/Deck Rescue the Chemist d95932.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Bag Story Cards + Relevant Set-Asides c40cac/Deck Rescue the Chemist d95932.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Bag Story Cards + Relevant Set-Asides c40cac/Deck Rescue the Chemist d95932.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Bag Story Cards + Relevant Set-Asides c40cac/Deck Rescue the Chemist d95932.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Card Cubic Ooze 442e15.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Card Cubic Ooze 442e15.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Card Cubic Ooze 442e15.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Card Cubic Ooze 442e15.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Card Grasping Ooze e387e3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Card Grasping Ooze e387e3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Card Grasping Ooze e387e3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Card Grasping Ooze e387e3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Card Vulnerable Heart 536d14.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Card Vulnerable Heart 536d14.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Card Vulnerable Heart 536d14.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Card Vulnerable Heart 536d14.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Deck Mi-Go Drones 67de87.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Deck Mi-Go Drones 67de87.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Deck Mi-Go Drones 67de87.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Deck Mi-Go Drones 67de87.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Deck Oozewraiths a1d7ff.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Deck Oozewraiths a1d7ff.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Deck Oozewraiths a1d7ff.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Deck Oozewraiths a1d7ff.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_PDF The Blob that Ate Everything 36b4eb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_PDF The Blob that Ate Everything 36b4eb.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_PDF The Blob that Ate Everything 36b4eb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_PDF The Blob that Ate Everything 36b4eb.yaml index 0b59e30e7..eb6c88615 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_PDF The Blob that Ate Everything 36b4eb.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_PDF The Blob that Ate Everything 36b4eb.yaml @@ -32,7 +32,7 @@ Transform: posZ: -26.9304028 rotX: 359.920135 rotY: 269.9867 - rotZ: 0.016890619 + rotZ: 0.0168905966 scaleX: 3.0 scaleY: 1.0 scaleZ: 3.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 2b78cf.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 2b78cf.yaml similarity index 99% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 2b78cf.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 2b78cf.yaml index 4289628a1..4b306c101 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 2b78cf.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 2b78cf.yaml @@ -128,7 +128,7 @@ Transform: posZ: -0.0372002274 rotX: 359.9201 rotY: 270.009583 - rotZ: 0.01685452 + rotZ: 0.0168547351 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 3a6bb8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 3a6bb8.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 3a6bb8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 3a6bb8.yaml index 8432ff067..33e4c9ffc 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 3a6bb8.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 3a6bb8.yaml @@ -125,10 +125,10 @@ Tooltip: true Transform: posX: -23.6764 posY: 1.61334455 - posZ: -3.82999969 - rotX: 0.0168403331 - rotY: 179.999191 - rotZ: 0.0799404159 + posZ: -3.83000016 + rotX: 0.0168403629 + rotY: 179.99913 + rotZ: 0.0799399 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 46f500.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 46f500.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 46f500.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 46f500.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 4ff304.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 4ff304.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 4ff304.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 4ff304.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 5d8be3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 5d8be3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 5d8be3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 5d8be3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 6345b1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 6345b1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 6345b1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 6345b1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 69fd89.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 69fd89.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 69fd89.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 69fd89.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 71210c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 71210c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 71210c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 71210c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 88e8cf.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 88e8cf.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 88e8cf.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 88e8cf.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile a1af1f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile a1af1f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile a1af1f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile a1af1f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile b76184.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile b76184.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile b76184.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile b76184.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile c425b7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile c425b7.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile c425b7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile c425b7.yaml index dd5ea2e5e..4c9176c66 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile c425b7.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile c425b7.yaml @@ -126,9 +126,9 @@ Transform: posX: -30.2241974 posY: 1.62247515 posZ: -3.82999969 - rotX: 0.016840145 + rotX: 0.016840158 rotY: 179.999283 - rotZ: 0.0799303353 + rotZ: 0.07993056 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile d7e54e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile d7e54e.yaml similarity index 99% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile d7e54e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile d7e54e.yaml index 916552fcc..d9f13acc4 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile d7e54e.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile d7e54e.yaml @@ -128,7 +128,7 @@ Transform: posZ: -7.47330046 rotX: 359.9201 rotY: 270.009674 - rotZ: 0.0168518983 + rotZ: 0.0168523677 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile f9947f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile f9947f.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile f9947f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile f9947f.yaml index 5294122c5..f564646f8 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile f9947f.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile f9947f.yaml @@ -126,9 +126,9 @@ Transform: posX: -36.7731 posY: 1.63386714 posZ: 3.86000061 - rotX: 0.0168406162 + rotX: 0.0168405361 rotY: 179.999 - rotZ: 0.07993926 + rotZ: 0.0799396 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile fb5176.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile fb5176.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile fb5176.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile fb5176.yaml index 9cd789ae4..08a188d03 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile fb5176.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile fb5176.yaml @@ -126,9 +126,9 @@ Transform: posX: -30.2242 posY: 1.62696874 posZ: 11.460001 - rotX: 0.0168402735 + rotX: 0.0168402027 rotY: 179.999313 - rotZ: 0.0799396038 + rotZ: 0.07993966 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile The Blob that Ate Everything bbb70a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile The Blob that Ate Everything bbb70a.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile The Blob that Ate Everything bbb70a.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile The Blob that Ate Everything bbb70a.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile The Blob that Ate Everything bbb70a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile The Blob that Ate Everything bbb70a.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile The Blob that Ate Everything bbb70a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile The Blob that Ate Everything bbb70a.yaml index c12062d21..514abba7f 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile The Blob that Ate Everything bbb70a.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile The Blob that Ate Everything bbb70a.yaml @@ -37,7 +37,7 @@ Transform: posZ: -15.0362024 rotX: 359.919739 rotY: 270.030579 - rotZ: 0.0167950075 + rotZ: 0.0167949833 scaleX: 2.2 scaleY: 1.0 scaleZ: 2.2 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Agenda Deck 4f9f66.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Agenda Deck 4f9f66.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Agenda Deck 4f9f66.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Agenda Deck 4f9f66.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Encounter Deck c164a9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Encounter Deck c164a9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Encounter Deck c164a9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Encounter Deck c164a9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Quarantine Zones 98c518.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Quarantine Zones 98c518.yaml similarity index 99% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Quarantine Zones 98c518.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Quarantine Zones 98c518.yaml index 35cb3d851..52e8d60db 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Quarantine Zones 98c518.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Quarantine Zones 98c518.yaml @@ -494,12 +494,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -12.48279 + posX: -12.4827881 posY: 1.67016172 posZ: 7.58479834 rotX: 359.9201 - rotY: 269.999939 - rotZ: 0.01684311 + rotY: 269.999878 + rotZ: 0.0168430824 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Starting Locations fd7be1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Starting Locations fd7be1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Starting Locations fd7be1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Starting Locations fd7be1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Notecard Want to Organize Your Own Blob Event 0c5373.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Notecard Want to Organize Your Own Blob Event 0c5373.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Notecard Want to Organize Your Own Blob Event 0c5373.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Notecard Want to Organize Your Own Blob Event 0c5373.yaml index e0e23db0f..17b3a10e4 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Notecard Want to Organize Your Own Blob Event 0c5373.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Notecard Want to Organize Your Own Blob Event 0c5373.yaml @@ -28,7 +28,7 @@ Transform: posX: -12.1816969 posY: 1.65439427 posZ: -12.0710011 - rotX: 0.07989801 + rotX: 0.07989833 rotY: 90.0043 rotZ: 359.983154 scaleX: 0.850000143 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb.yaml index 4e7fd671a..381b16192 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb.yaml @@ -69,12 +69,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 19.8136578 - posY: 8.455771 - posZ: -5.49717569 + posX: 18.8249969 + posY: 4.31492233 + posZ: -30.1957626 rotX: 0.02080861 rotY: 269.999878 - rotZ: 0.01677113 + rotZ: 0.0167711284 scaleX: 2.21 scaleY: 0.2 scaleZ: 2.46 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Card 149deb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Card 149deb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Card 149deb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Card 149deb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Card 45a6ec.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Card 45a6ec.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Card 45a6ec.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Card 45a6ec.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Card 5e7e07.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Card 5e7e07.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Card 5e7e07.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Card 5e7e07.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Card 8ce0e1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Card 8ce0e1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Card 8ce0e1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Card 8ce0e1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Card abd037.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Card abd037.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Card abd037.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Card abd037.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Card c29eac.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Card c29eac.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Card c29eac.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Card c29eac.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Card d1bab1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Card d1bab1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Card d1bab1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Card d1bab1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Card Setup 00688d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Card Setup 00688d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Card Setup 00688d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Card Setup 00688d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Card Setup f8005d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Card Setup f8005d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Card Setup f8005d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Card Setup f8005d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Custom_Tile 20314c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Custom_Tile 20314c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Custom_Tile 20314c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Custom_Tile 20314c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Custom_Tile 27dc65.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Custom_Tile 27dc65.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Custom_Tile 27dc65.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Custom_Tile 27dc65.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Custom_Tile 643870.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Custom_Tile 643870.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Custom_Tile 643870.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Custom_Tile 643870.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Custom_Tile 6f9258.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Custom_Tile 6f9258.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Custom_Tile 6f9258.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Custom_Tile 6f9258.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Custom_Tile 8cf84a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Custom_Tile 8cf84a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Custom_Tile 8cf84a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Custom_Tile 8cf84a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Custom_Tile The Collector 150603.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Custom_Tile The Collector 150603.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Custom_Tile The Collector 150603.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Custom_Tile The Collector 150603.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Custom_Tile The Collector 150603.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Custom_Tile The Collector 150603.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Custom_Tile The Collector 150603.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Custom_Tile The Collector 150603.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Deck 368ca7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Deck 368ca7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Deck 368ca7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Deck 368ca7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Deck fa8210.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Deck fa8210.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Deck fa8210.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Deck fa8210.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Deck Agenda Deck 98b377.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Deck Agenda Deck 98b377.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Deck Agenda Deck 98b377.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Deck Agenda Deck 98b377.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Deck Encounter Deck 010d85.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Deck Encounter Deck 010d85.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector 9810eb/Deck Encounter Deck 010d85.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Collector 9810eb/Deck Encounter Deck 010d85.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff.yaml index 28fea293e..6529f6a8a 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff.yaml @@ -73,12 +73,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 19.843605 - posY: 8.453166 - posZ: -14.4364462 - rotX: 0.0208086856 + posX: 18.7945786 + posY: 4.328182 + posZ: -31.538105 + rotX: 0.02080869 rotY: 270.000122 - rotZ: 0.0167710036 + rotZ: 0.0167710073 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Card 058b91.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Card 058b91.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Card 058b91.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Card 058b91.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Card 222582.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Card 222582.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Card 222582.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Card 222582.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Card 2ab9ac.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Card 2ab9ac.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Card 2ab9ac.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Card 2ab9ac.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Card 770eca.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Card 770eca.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Card 770eca.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Card 770eca.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Card 80fb47.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Card 80fb47.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Card 80fb47.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Card 80fb47.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Card bfb121.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Card bfb121.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Card bfb121.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Card bfb121.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile 21c977.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile 21c977.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile 21c977.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile 21c977.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile ab51fa.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile ab51fa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile ab51fa.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile ab51fa.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile c6995b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile c6995b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile c6995b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile c6995b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile eb22de.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile eb22de.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile eb22de.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile eb22de.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile The Colour out of Space 2e887e.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile The Colour out of Space 2e887e.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile The Colour out of Space 2e887e.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile The Colour out of Space 2e887e.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile The Colour out of Space 2e887e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile The Colour out of Space 2e887e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile The Colour out of Space 2e887e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile The Colour out of Space 2e887e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Act 6dca3e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Act 6dca3e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Act 6dca3e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Act 6dca3e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Agenda 23d608.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Agenda 23d608.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Agenda 23d608.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Agenda 23d608.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Encounter deck b83079.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Encounter deck b83079.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Encounter deck b83079.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Encounter deck b83079.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Made Flesh 6f54e2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Made Flesh 6f54e2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Made Flesh 6f54e2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Made Flesh 6f54e2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Set Aside 4c7aff.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Set Aside 4c7aff.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Set Aside 4c7aff.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Set Aside 4c7aff.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Setup 407732.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Setup 407732.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Setup 407732.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Setup 407732.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Unnatural Disturbances a1b852.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Unnatural Disturbances a1b852.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Unnatural Disturbances a1b852.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Unnatural Disturbances a1b852.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Deck inhospitable Locality d46b84.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Deck inhospitable Locality d46b84.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Deck inhospitable Locality d46b84.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Deck inhospitable Locality d46b84.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Deck locations rural 61b186.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Deck locations rural 61b186.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour out of Space 5b81ff/Deck locations rural 61b186.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Colour out of Space 5b81ff/Deck locations rural 61b186.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d.yaml index 7a334f6a4..a97759aba 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d.yaml @@ -61,9 +61,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 19.4053535 - posY: 8.450538 - posZ: -22.8681011 + posX: 15.0585785 + posY: 4.313976 + posZ: -29.35864 rotX: 0.0208032764 rotY: 270.017822 rotZ: 0.0167776421 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card 5e4e43.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card 5e4e43.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card 5e4e43.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card 5e4e43.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card ecbf8f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card ecbf8f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card ecbf8f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card ecbf8f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card Setup dc50b3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card Setup dc50b3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card Setup dc50b3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card Setup dc50b3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card Setup f9fc71.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card Setup f9fc71.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card Setup f9fc71.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card Setup f9fc71.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Custom_Tile The Curse of Amultep b3cbc1.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Custom_Tile The Curse of Amultep b3cbc1.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Custom_Tile The Curse of Amultep b3cbc1.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Custom_Tile The Curse of Amultep b3cbc1.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Custom_Tile The Curse of Amultep b3cbc1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Custom_Tile The Curse of Amultep b3cbc1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Custom_Tile The Curse of Amultep b3cbc1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Custom_Tile The Curse of Amultep b3cbc1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Act 8075b9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Act 8075b9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Act 8075b9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Act 8075b9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Agenda a08daa.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Agenda a08daa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Agenda a08daa.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Agenda a08daa.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Carriage locations 0ce6bb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Carriage locations 0ce6bb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Carriage locations 0ce6bb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Carriage locations 0ce6bb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Encounter deck c6a9ae.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Encounter deck c6a9ae.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Encounter deck c6a9ae.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Encounter deck c6a9ae.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Set Aside 5127f6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Set Aside 5127f6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Set Aside 5127f6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Set Aside 5127f6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6.yaml similarity index 95% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6.yaml index 030cf1ff9..a9a11d8f3 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6.yaml @@ -52,12 +52,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 58.5486336 - posY: 8.637653 - posZ: -97.5094452 + posX: 11.538353 + posY: 3.329707 + posZ: -23.3729439 rotX: 359.983246 rotY: 270.0 - rotZ: 0.00353678735 + rotZ: 0.00353663065 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 1 414e12.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 1 414e12.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 1 414e12.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 1 414e12.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 1 414e12/Card Agenda 1 be83a3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 1 414e12/Card Agenda 1 be83a3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 1 414e12/Card Agenda 1 be83a3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 1 414e12/Card Agenda 1 be83a3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 1 414e12/Deck Locations c83f00.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 1 414e12/Deck Locations c83f00.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 1 414e12/Deck Locations c83f00.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 1 414e12/Deck Locations c83f00.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Card 1 Agenda 2a 7f351d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Card 1 Agenda 2a 7f351d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Card 1 Agenda 2a 7f351d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Card 1 Agenda 2a 7f351d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Card Al-Khazin 1569f4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Card Al-Khazin 1569f4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Card Al-Khazin 1569f4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Card Al-Khazin 1569f4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Card Dificulty 24a651.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Card Dificulty 24a651.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Card Dificulty 24a651.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Card Dificulty 24a651.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Deck Encounter d76f6d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Deck Encounter d76f6d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Deck Encounter d76f6d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Deck Encounter d76f6d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Deck Locations 707f6e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Deck Locations 707f6e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Deck Locations 707f6e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Deck Locations 707f6e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Card Al-Khazin 2ea07b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Card Al-Khazin 2ea07b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Card Al-Khazin 2ea07b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Card Al-Khazin 2ea07b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Card Dificulty e43848.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Card Dificulty e43848.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Card Dificulty e43848.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Card Dificulty e43848.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Custom_Tile The Dying Star 8d62ae.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Custom_Tile The Dying Star 8d62ae.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Custom_Tile The Dying Star 8d62ae.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Custom_Tile The Dying Star 8d62ae.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Custom_Tile The Dying Star 8d62ae.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Custom_Tile The Dying Star 8d62ae.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Custom_Tile The Dying Star 8d62ae.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Custom_Tile The Dying Star 8d62ae.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck 46c729.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck 46c729.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck 46c729.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck 46c729.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck 1 Act Deck 8cfb70.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck 1 Act Deck 8cfb70.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck 1 Act Deck 8cfb70.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck 1 Act Deck 8cfb70.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck 1 Agenda Deck 749379.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck 1 Agenda Deck 749379.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck 1 Agenda Deck 749379.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck 1 Agenda Deck 749379.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck Locations 516099.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck Locations 516099.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck Locations 516099.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck Locations 516099.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/DeckCustom Encounter Deck 37bf35.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/DeckCustom Encounter Deck 37bf35.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/DeckCustom Encounter Deck 37bf35.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/DeckCustom Encounter Deck 37bf35.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag Doppelganger 3e2f9c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag Doppelganger 3e2f9c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag Doppelganger 3e2f9c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag Doppelganger 3e2f9c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag Dream Journeys ba503d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag Dream Journeys ba503d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag Dream Journeys ba503d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag Dream Journeys ba503d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag Iridescent e382bb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag Iridescent e382bb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag Iridescent e382bb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag Iridescent e382bb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag extra locations 6c8cf1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag extra locations 6c8cf1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag extra locations 6c8cf1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag extra locations 6c8cf1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Card Dificulty 4db945.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Card Dificulty 4db945.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Card Dificulty 4db945.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Card Dificulty 4db945.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Card Dificulty c95716.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Card Dificulty c95716.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Card Dificulty c95716.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Card Dificulty c95716.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Custom_Tile The Dying Star a148f2.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Custom_Tile The Dying Star a148f2.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Custom_Tile The Dying Star a148f2.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Custom_Tile The Dying Star a148f2.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Custom_Tile The Dying Star a148f2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Custom_Tile The Dying Star a148f2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Custom_Tile The Dying Star a148f2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Custom_Tile The Dying Star a148f2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck 073778.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck 073778.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck 073778.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck 073778.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck 2 Act Deck 6200cb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck 2 Act Deck 6200cb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck 2 Act Deck 6200cb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck 2 Act Deck 6200cb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck 2 Agenda Deck 4c28a9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck 2 Agenda Deck 4c28a9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck 2 Agenda Deck 4c28a9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck 2 Agenda Deck 4c28a9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck Diary 4cd3ab.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck Diary 4cd3ab.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck Diary 4cd3ab.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck Diary 4cd3ab.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck Locations 851506.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck Locations 851506.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck Locations 851506.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck Locations 851506.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile 1bdfa5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile 1bdfa5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile 1bdfa5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile 1bdfa5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile 47eb0e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile 47eb0e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile 47eb0e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile 47eb0e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile c71665.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile c71665.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile c71665.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile c71665.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile d29153.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile d29153.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile d29153.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile d29153.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile e54bfb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile e54bfb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile e54bfb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile e54bfb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token Knocked Out de5014.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token Knocked Out de5014.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token Knocked Out de5014.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token Knocked Out de5014.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token Patrol token 7069f1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token Patrol token 7069f1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token Patrol token 7069f1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token Patrol token 7069f1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token Vigilance token 13c6ab.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token Vigilance token 13c6ab.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token Vigilance token 13c6ab.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token Vigilance token 13c6ab.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token patrol token d43169.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token patrol token d43169.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token patrol token d43169.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token patrol token d43169.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a.yaml index 067ada23c..10f64fdac 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a.yaml @@ -85,12 +85,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 12.8444109 - posY: 4.37142229 - posZ: -96.2696838 - rotX: 0.02080851 + posX: 10.3222065 + posY: 3.3316803 + posZ: -25.69656 + rotX: 0.0208085068 rotY: 269.999969 - rotZ: 0.0167711433 + rotZ: 0.016771147 scaleX: 2.21 scaleY: 0.2 scaleZ: 2.46 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card Back Street d7fc4c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card Back Street d7fc4c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card Back Street d7fc4c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card Back Street d7fc4c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card Burying Ground f0d16a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card Burying Ground f0d16a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card Burying Ground f0d16a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card Burying Ground f0d16a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card Central Hill 259b7b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card Central Hill 259b7b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card Central Hill 259b7b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card Central Hill 259b7b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card Circle Court 7bdc6b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card Circle Court 7bdc6b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card Circle Court 7bdc6b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card Circle Court 7bdc6b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card Green Lane be3ac9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card Green Lane be3ac9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card Green Lane be3ac9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card Green Lane be3ac9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card Market Square 50ffd3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card Market Square 50ffd3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card Market Square 50ffd3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card Market Square 50ffd3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card Orange Point 6bc393.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card Orange Point 6bc393.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card Orange Point 6bc393.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card Orange Point 6bc393.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card Scenario 7d6343.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card Scenario 7d6343.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card Scenario 7d6343.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card Scenario 7d6343.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card Scenario 9e71b4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card Scenario 9e71b4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card Scenario 9e71b4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card Scenario 9e71b4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card Ship Street 299ea1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card Ship Street 299ea1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card Ship Street 299ea1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card Ship Street 299ea1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card The Strange High House in the Mist d0c475.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card The Strange High House in the Mist d0c475.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card The Strange High House in the Mist d0c475.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card The Strange High House in the Mist d0c475.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card The White Church b5096d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card The White Church b5096d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card The White Church b5096d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card The White Church b5096d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card Water Street 1e3988.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card Water Street 1e3988.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Card Water Street 1e3988.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Card Water Street 1e3988.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Card Bland-Faced Man c28797.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Card Bland-Faced Man c28797.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Card Bland-Faced Man c28797.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Card Bland-Faced Man c28797.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Card Blessing of Nodens 251712.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Card Blessing of Nodens 251712.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Card Blessing of Nodens 251712.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Card Blessing of Nodens 251712.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Card Stygian Grotto e6a643.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Card Stygian Grotto e6a643.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Card Stygian Grotto e6a643.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Card Stygian Grotto e6a643.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Card The Terrible Old Man e79d88.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Card The Terrible Old Man e79d88.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Card The Terrible Old Man e79d88.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Card The Terrible Old Man e79d88.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Deck Enemies 6cc720.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Deck Enemies 6cc720.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Deck Enemies 6cc720.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Deck Enemies 6cc720.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Deck Grimoires 1f037b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Deck Grimoires 1f037b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Deck Grimoires 1f037b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Deck Grimoires 1f037b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile 28272f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile 28272f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile 28272f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile 28272f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile 2c792a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile 2c792a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile 2c792a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile 2c792a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile 447fd2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile 447fd2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile 447fd2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile 447fd2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile 4591d4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile 4591d4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile 4591d4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile 4591d4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile 68ba2e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile 68ba2e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile 68ba2e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile 68ba2e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile 7b9e37.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile 7b9e37.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile 7b9e37.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile 7b9e37.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile a19bdb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile a19bdb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile a19bdb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile a19bdb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile c2da92.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile c2da92.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile c2da92.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile c2da92.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile c41b7b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile c41b7b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile c41b7b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile c41b7b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile da1f25.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile da1f25.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile da1f25.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile da1f25.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile daa95d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile daa95d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile daa95d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile daa95d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile db49f3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile db49f3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile db49f3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile db49f3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile f108e3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile f108e3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile f108e3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile f108e3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile f591c7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile f591c7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile f591c7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile f591c7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile The Festival 4b81f6.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile The Festival 4b81f6.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile The Festival 4b81f6.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile The Festival 4b81f6.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile The Festival 4b81f6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile The Festival 4b81f6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Custom_Tile The Festival 4b81f6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Custom_Tile The Festival 4b81f6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Deck 3eef2e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Deck 3eef2e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Deck 3eef2e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Deck 3eef2e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Deck Act Deck 8ce4d8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Deck Act Deck 8ce4d8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Deck Act Deck 8ce4d8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Deck Act Deck 8ce4d8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Deck Agenda Deck ce35ae.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Deck Agenda Deck ce35ae.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Deck Agenda Deck ce35ae.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Deck Agenda Deck ce35ae.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Deck Cloaked Figures 27bf6a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Deck Cloaked Figures 27bf6a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Deck Cloaked Figures 27bf6a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Deck Cloaked Figures 27bf6a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Deck Encounter Deck 3d2a1a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Deck Encounter Deck 3d2a1a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival 29d22a/Deck Encounter Deck 3d2a1a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Festival 29d22a/Deck Encounter Deck 3d2a1a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1.yaml index 86ecd46b1..b96509a29 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1.yaml @@ -69,12 +69,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 37.5734062 - posY: 8.461627 - posZ: -7.527312 - rotX: 0.02080851 + posX: 11.3290215 + posY: 3.32913017 + posZ: -29.5892067 + rotX: 0.0208085086 rotY: 270.000061 - rotZ: 0.01677106 + rotZ: 0.0167710632 scaleX: 2.21 scaleY: 0.2 scaleZ: 2.46 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 109907.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 109907.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 109907.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 109907.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 37c889.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 37c889.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 37c889.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 37c889.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 634aa3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 634aa3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 634aa3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 634aa3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 65aae9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 65aae9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 65aae9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 65aae9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 884951.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 884951.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 884951.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 884951.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 893c58.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 893c58.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 893c58.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 893c58.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card a96e74.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card a96e74.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card a96e74.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card a96e74.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card c35463.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card c35463.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card c35463.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card c35463.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card e0e56d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card e0e56d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card e0e56d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card e0e56d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card efba6c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card efba6c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card efba6c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card efba6c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card Elevator c37bc0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card Elevator c37bc0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card Elevator c37bc0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card Elevator c37bc0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Custom_Tile Core Difficulty 9cd1ad.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Custom_Tile Core Difficulty 9cd1ad.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Custom_Tile Core Difficulty 9cd1ad.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Custom_Tile Core Difficulty 9cd1ad.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Custom_Tile Core Difficulty 9cd1ad.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Custom_Tile Core Difficulty 9cd1ad.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Custom_Tile Core Difficulty 9cd1ad.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Custom_Tile Core Difficulty 9cd1ad.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck 245765.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck 245765.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck 245765.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck 245765.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Act c11ba5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Act c11ba5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Act c11ba5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Act c11ba5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Agenda 03fc1c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Agenda 03fc1c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Agenda 03fc1c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Agenda 03fc1c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Encounter Deck 2fe933.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Encounter Deck 2fe933.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Encounter Deck 2fe933.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Encounter Deck 2fe933.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Set Aside b57f89.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Set Aside b57f89.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Set Aside b57f89.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Set Aside b57f89.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Setup bfeb71.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Setup bfeb71.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Setup bfeb71.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Setup bfeb71.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck locations Set Aside e9ae84.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck locations Set Aside e9ae84.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck locations Set Aside e9ae84.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck locations Set Aside e9ae84.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f.yaml index b60346df0..0194acd3d 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f.yaml @@ -58,12 +58,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 77.73716 - posY: 8.690302 - posZ: -44.0936546 - rotX: -9.841099e-07 + posX: 12.2521029 + posY: 1.46795809 + posZ: 11.9864025 + rotX: 359.920135 rotY: 270.0 - rotZ: -3.35735e-06 + rotZ: 0.01687238 scaleX: 2.21 scaleY: 0.2 scaleZ: 2.46 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Card Eixodolon's Note 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Card Eixodolon's Note 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Card Eixodolon's Note 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Card Eixodolon's Note 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Card Scenario b711b7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Card Scenario b711b7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Card Scenario b711b7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Card Scenario b711b7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Card Scenario c69095.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Card Scenario c69095.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Card Scenario c69095.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Card Scenario c69095.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Night 803008.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Night 803008.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Night 803008.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Night 803008.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Rain aa6ad6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Rain aa6ad6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Rain aa6ad6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Rain aa6ad6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Regret 6c7570.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Regret 6c7570.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Regret 6c7570.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Regret 6c7570.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Sorrows 6a0757.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Sorrows 6a0757.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Sorrows 6a0757.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Card Chamber of Sorrows 6a0757.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Deck Labyrinthine Halls 0d1a68.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Deck Labyrinthine Halls 0d1a68.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Deck Labyrinthine Halls 0d1a68.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583/Deck Labyrinthine Halls 0d1a68.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Decay Diagram 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Decay Diagram 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Decay Diagram 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Decay Diagram 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Eixodolon 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Eixodolon 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Eixodolon 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Eixodolon 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Eixodolon's Pet 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Eixodolon's Pet 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Eixodolon's Pet 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Eixodolon's Pet 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Hunger Diagram a5e76a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Hunger Diagram a5e76a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Hunger Diagram a5e76a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Hunger Diagram a5e76a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Key of Mysteries 7399a5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Key of Mysteries 7399a5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Key of Mysteries 7399a5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Key of Mysteries 7399a5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Mysterious Syringe 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Mysterious Syringe 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Mysterious Syringe 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Mysterious Syringe 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Rot Diagram 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Rot Diagram 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Rot Diagram 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Rot Diagram 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card The Jailor 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card The Jailor 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card The Jailor 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card The Jailor 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Deck Faceless Abductors ffcb3e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Deck Faceless Abductors ffcb3e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Deck Faceless Abductors ffcb3e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Deck Faceless Abductors ffcb3e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Act Deck 81c2f9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Act Deck 81c2f9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Act Deck 81c2f9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Act Deck 81c2f9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Agenda Deck bca98b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Agenda Deck bca98b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Agenda Deck bca98b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Agenda Deck bca98b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Chamber of Secrets 64e243.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Chamber of Secrets 64e243.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Chamber of Secrets 64e243.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Chamber of Secrets 64e243.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Encounter Deck e82e35.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Encounter Deck e82e35.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Encounter Deck e82e35.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Encounter Deck e82e35.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Story Cards 0b6efa.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Story Cards 0b6efa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Story Cards 0b6efa.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Story Cards 0b6efa.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + 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 + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) 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.25 * 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) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == 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 + memoryList[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} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + 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 +end + +--Resets bag to starting status +function buttonClick_reset() + 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,0.3,-2}, rotation={0,180,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={0,0.3,-2.8}, rotation={0,180,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={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,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, + }) + 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 deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + 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 + +--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 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Chamber of Rain aa6ad6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Chamber of Rain aa6ad6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Chamber of Rain aa6ad6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Chamber of Rain aa6ad6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Chamber of Sorrows 6a0757.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Chamber of Sorrows 6a0757.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Chamber of Sorrows 6a0757.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Chamber of Sorrows 6a0757.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Eixodolon's Note 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Eixodolon's Note 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Eixodolon's Note 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Eixodolon's Note 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Scenario 078f41.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Scenario 078f41.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Scenario 078f41.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Scenario 078f41.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Scenario c69095.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Scenario c69095.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Scenario c69095.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Scenario c69095.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Card Chamber of Night 803008.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Card Chamber of Night 803008.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Card Chamber of Night 803008.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Card Chamber of Night 803008.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Deck Chamber of Secrets 512c73.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Deck Chamber of Secrets 512c73.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Deck Chamber of Secrets 512c73.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Deck Chamber of Secrets 512c73.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Deck Labyrinthine Halls 77559d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Deck Labyrinthine Halls 77559d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Deck Labyrinthine Halls 77559d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583/Deck Labyrinthine Halls 77559d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Decay Diagram 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Decay Diagram 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Decay Diagram 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Decay Diagram 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Eixodolon 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Eixodolon 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Eixodolon 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Eixodolon 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Eixodolon's Pet 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Eixodolon's Pet 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Eixodolon's Pet 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Eixodolon's Pet 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Hunger Diagram a5e76a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Hunger Diagram a5e76a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Hunger Diagram a5e76a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Hunger Diagram a5e76a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Key of Mysteries 7399a5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Key of Mysteries 7399a5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Key of Mysteries 7399a5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Key of Mysteries 7399a5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Mysterious Syringe 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Mysterious Syringe 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Mysterious Syringe 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Mysterious Syringe 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Rot Diagram 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Rot Diagram 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Rot Diagram 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Rot Diagram 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card The Jailor 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card The Jailor 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card The Jailor 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card The Jailor 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Deck Faceless Abductors b27351.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Deck Faceless Abductors b27351.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Deck Faceless Abductors b27351.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Deck Faceless Abductors b27351.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Deck Act Deck 9ed94a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Deck Act Deck 9ed94a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Deck Act Deck 9ed94a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Deck Act Deck 9ed94a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Deck Agenda Deck bca98b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Deck Agenda Deck bca98b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Deck Agenda Deck bca98b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Deck Agenda Deck bca98b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Deck Encounter Deck 397fe8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Deck Encounter Deck 397fe8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Deck Encounter Deck 397fe8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Deck Encounter Deck 397fe8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Deck Story Cards 0b6efa.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Deck Story Cards 0b6efa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Deck Story Cards 0b6efa.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Deck Story Cards 0b6efa.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + 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 + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) 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.25 * 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) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == 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 + memoryList[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} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + 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 +end + +--Resets bag to starting status +function buttonClick_reset() + 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,0.3,-2}, rotation={0,180,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={0,0.3,-2.8}, rotation={0,180,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={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,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, + }) + 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 deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + 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 + +--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 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Chamber of Night 803008.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Chamber of Night 803008.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Chamber of Night 803008.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Chamber of Night 803008.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Chamber of Regret 6c7570.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Chamber of Regret 6c7570.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Chamber of Regret 6c7570.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Chamber of Regret 6c7570.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Eixodolon's Note 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Eixodolon's Note 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Eixodolon's Note 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Eixodolon's Note 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Scenario c69095.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Scenario c69095.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Scenario c69095.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Scenario c69095.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Scenario d89e46.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Scenario d89e46.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Scenario d89e46.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Scenario d89e46.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Chamber of Rain aa6ad6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Chamber of Rain aa6ad6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Chamber of Rain aa6ad6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Chamber of Rain aa6ad6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Chamber of Sorrows 6a0757.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Chamber of Sorrows 6a0757.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Chamber of Sorrows 6a0757.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Card Chamber of Sorrows 6a0757.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Deck Chamber of Secrets 616a5f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Deck Chamber of Secrets 616a5f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Deck Chamber of Secrets 616a5f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Deck Chamber of Secrets 616a5f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Deck Labyrinthine Halls 87d61c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Deck Labyrinthine Halls 87d61c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Deck Labyrinthine Halls 87d61c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583/Deck Labyrinthine Halls 87d61c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Decay Diagram 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Decay Diagram 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Decay Diagram 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Decay Diagram 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Eixodolon 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Eixodolon 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Eixodolon 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Eixodolon 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Eixodolon's Pet 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Eixodolon's Pet 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Eixodolon's Pet 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Eixodolon's Pet 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Hunger Diagram a5e76a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Hunger Diagram a5e76a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Hunger Diagram a5e76a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Hunger Diagram a5e76a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Key of Mysteries 7399a5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Key of Mysteries 7399a5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Key of Mysteries 7399a5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Key of Mysteries 7399a5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Mysterious Syringe 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Mysterious Syringe 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Mysterious Syringe 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Mysterious Syringe 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Rot Diagram 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Rot Diagram 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Rot Diagram 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Rot Diagram 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card The Jailor 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card The Jailor 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card The Jailor 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card The Jailor 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Deck Faceless Abductors 262cb3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Deck Faceless Abductors 262cb3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Deck Faceless Abductors 262cb3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Deck Faceless Abductors 262cb3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Deck Act 7d512a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Deck Act 7d512a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Deck Act 7d512a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Deck Act 7d512a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Deck Agenda bca98b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Deck Agenda bca98b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Deck Agenda bca98b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Deck Agenda bca98b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Deck Encounter Deck 5f4b00.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Deck Encounter Deck 5f4b00.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Deck Encounter Deck 5f4b00.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Deck Encounter Deck 5f4b00.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Deck Story Cards 0b6efa.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Deck Story Cards 0b6efa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Deck Story Cards 0b6efa.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Deck Story Cards 0b6efa.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + 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 + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) 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.25 * 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) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == 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 + memoryList[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} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + 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 +end + +--Resets bag to starting status +function buttonClick_reset() + 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,0.3,-2}, rotation={0,180,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={0,0.3,-2.8}, rotation={0,180,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={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,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, + }) + 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 deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + 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 + +--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 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Card Eixodolon's Note 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Card Eixodolon's Note 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Card Eixodolon's Note 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Card Eixodolon's Note 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Card Key of Mysteries 7399a5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Card Key of Mysteries 7399a5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Card Key of Mysteries 7399a5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Card Key of Mysteries 7399a5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Card Scenario c69095.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Card Scenario c69095.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Card Scenario c69095.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Card Scenario c69095.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Card Scenario cf5c1d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Card Scenario cf5c1d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Card Scenario cf5c1d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Card Scenario cf5c1d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Night 38826f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Night 38826f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Night 38826f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Night 38826f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Rain aa6ad6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Rain aa6ad6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Rain aa6ad6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Rain aa6ad6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Regret 6c7570.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Regret 6c7570.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Regret 6c7570.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Regret 6c7570.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Sorrows 9f6ed8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Sorrows 9f6ed8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Sorrows 9f6ed8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Chamber of Sorrows 9f6ed8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Labyrinthine Halls 323435.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Labyrinthine Halls 323435.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Labyrinthine Halls 323435.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Labyrinthine Halls 323435.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Labyrinthine Halls 5eb4c2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Labyrinthine Halls 5eb4c2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Labyrinthine Halls 5eb4c2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Labyrinthine Halls 5eb4c2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Labyrinthine Halls d13692.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Labyrinthine Halls d13692.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Labyrinthine Halls d13692.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583/Card Labyrinthine Halls d13692.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Decay Diagram 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Decay Diagram 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Decay Diagram 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Decay Diagram 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Eixodolon 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Eixodolon 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Eixodolon 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Eixodolon 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Eixodolon's Pet 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Eixodolon's Pet 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Eixodolon's Pet 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Eixodolon's Pet 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Hunger Diagram bc2822.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Hunger Diagram bc2822.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Hunger Diagram bc2822.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Hunger Diagram bc2822.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Mysterious Syringe 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Mysterious Syringe 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Mysterious Syringe 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Mysterious Syringe 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Rot Diagram 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Rot Diagram 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Rot Diagram 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Rot Diagram 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Deck Faceless Abductors 68a27e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Deck Faceless Abductors 68a27e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Deck Faceless Abductors 68a27e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Deck Faceless Abductors 68a27e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Deck Act Deck 6bb098.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Deck Act Deck 6bb098.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Deck Act Deck 6bb098.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Deck Act Deck 6bb098.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Deck Agenda Deck 300c56.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Deck Agenda Deck 300c56.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Deck Agenda Deck 300c56.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Deck Agenda Deck 300c56.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Deck Chamber of Secrets 148730.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Deck Chamber of Secrets 148730.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Deck Chamber of Secrets 148730.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Deck Chamber of Secrets 148730.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Deck Encounter Deck 66b85c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Deck Encounter Deck 66b85c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Deck Encounter Deck 66b85c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Deck Encounter Deck 66b85c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + 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 + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) 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.25 * 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) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == 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 + memoryList[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} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + 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 +end + +--Resets bag to starting status +function buttonClick_reset() + 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,0.3,-2}, rotation={0,180,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={0,0.3,-2.8}, rotation={0,180,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={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,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, + }) + 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 deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + 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 + +--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 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Chamber of Rain aa6ad6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Chamber of Rain aa6ad6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Chamber of Rain aa6ad6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Chamber of Rain aa6ad6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Chamber of Sorrows 9f6ed8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Chamber of Sorrows 9f6ed8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Chamber of Sorrows 9f6ed8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Chamber of Sorrows 9f6ed8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Eixodolon's Note 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Eixodolon's Note 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Eixodolon's Note 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Eixodolon's Note 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Scenario 99eeeb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Scenario 99eeeb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Scenario 99eeeb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Scenario 99eeeb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Scenario c69095.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Scenario c69095.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Scenario c69095.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Scenario c69095.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Chamber of Night 38826f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Chamber of Night 38826f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Chamber of Night 38826f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Chamber of Night 38826f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Chamber of Regret 6c7570.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Chamber of Regret 6c7570.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Chamber of Regret 6c7570.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Chamber of Regret 6c7570.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Deck Chamber of Secrets 5f58cd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Deck Chamber of Secrets 5f58cd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Deck Chamber of Secrets 5f58cd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Deck Chamber of Secrets 5f58cd.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Deck Labyrinthine Halls c22a79.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Deck Labyrinthine Halls c22a79.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Deck Labyrinthine Halls c22a79.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583/Deck Labyrinthine Halls c22a79.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Decay Diagram 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Decay Diagram 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Decay Diagram 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Decay Diagram 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Eixodolon 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Eixodolon 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Eixodolon 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Eixodolon 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Eixodolon's Pet 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Eixodolon's Pet 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Eixodolon's Pet 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Eixodolon's Pet 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Hunger Diagram bc2822.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Hunger Diagram bc2822.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Hunger Diagram bc2822.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Hunger Diagram bc2822.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Key of Mysteries 7399a5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Key of Mysteries 7399a5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Key of Mysteries 7399a5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Key of Mysteries 7399a5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Mysterious Syringe 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Mysterious Syringe 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Mysterious Syringe 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Mysterious Syringe 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Rot Diagram 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Rot Diagram 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Rot Diagram 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Rot Diagram 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Deck Faceless Abductors 4e91a9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Deck Faceless Abductors 4e91a9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Deck Faceless Abductors 4e91a9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Deck Faceless Abductors 4e91a9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Deck Act Deck 018291.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Deck Act Deck 018291.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Deck Act Deck 018291.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Deck Act Deck 018291.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Deck Agenda Deck 300c56.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Deck Agenda Deck 300c56.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Deck Agenda Deck 300c56.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Deck Agenda Deck 300c56.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Deck Encounter Deck a5ba22.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Deck Encounter Deck a5ba22.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Deck Encounter Deck a5ba22.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Deck Encounter Deck a5ba22.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + 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 + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) 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.25 * 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) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == 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 + memoryList[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} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + 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 +end + +--Resets bag to starting status +function buttonClick_reset() + 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,0.3,-2}, rotation={0,180,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={0,0.3,-2.8}, rotation={0,180,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={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,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, + }) + 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 deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + 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 + +--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 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Card Chamber of Night 38826f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Card Chamber of Night 38826f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Card Chamber of Night 38826f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Card Chamber of Night 38826f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Card Eixodolon's Note 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Card Eixodolon's Note 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Card Eixodolon's Note 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Card Eixodolon's Note 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Card Scenario 025095.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Card Scenario 025095.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Card Scenario 025095.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Card Scenario 025095.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Card Scenario c69095.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Card Scenario c69095.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Card Scenario c69095.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Card Scenario c69095.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Chamber of Rain aa6ad6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Chamber of Rain aa6ad6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Chamber of Rain aa6ad6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Chamber of Rain aa6ad6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Chamber of Sorrows 9f6ed8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Chamber of Sorrows 9f6ed8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Chamber of Sorrows 9f6ed8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Card Chamber of Sorrows 9f6ed8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Deck Labyrinthine Halls 682bcd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Deck Labyrinthine Halls 682bcd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Deck Labyrinthine Halls 682bcd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583/Deck Labyrinthine Halls 682bcd.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Decay Diagram 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Decay Diagram 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Decay Diagram 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Decay Diagram 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Eixodolon 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Eixodolon 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Eixodolon 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Eixodolon 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Eixodolon's Pet 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Eixodolon's Pet 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Eixodolon's Pet 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Eixodolon's Pet 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Hunger Diagram bc2822.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Hunger Diagram bc2822.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Hunger Diagram bc2822.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Hunger Diagram bc2822.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Key of Mysteries 7399a5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Key of Mysteries 7399a5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Key of Mysteries 7399a5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Key of Mysteries 7399a5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Mysterious Syringe 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Mysterious Syringe 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Mysterious Syringe 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Mysterious Syringe 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Rot Diagram 817446.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Rot Diagram 817446.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Rot Diagram 817446.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Rot Diagram 817446.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Deck Faceless Abductors c0b1fc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Deck Faceless Abductors c0b1fc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Deck Faceless Abductors c0b1fc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Deck Faceless Abductors c0b1fc.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Deck Act Deck 99a909.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Deck Act Deck 99a909.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Deck Act Deck 99a909.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Deck Act Deck 99a909.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Deck Agenda Deck 300c56.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Deck Agenda Deck 300c56.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Deck Agenda Deck 300c56.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Deck Agenda Deck 300c56.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Deck Chamber of Secrets 61d2f2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Deck Chamber of Secrets 61d2f2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Deck Chamber of Secrets 61d2f2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Deck Chamber of Secrets 61d2f2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Deck Encounter Deck b59d21.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Deck Encounter Deck b59d21.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Deck Encounter Deck b59d21.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Deck Encounter Deck b59d21.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Custom_Tile The Labyrinths of Lunacy f4dcee.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Custom_Tile The Labyrinths of Lunacy f4dcee.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Custom_Tile The Labyrinths of Lunacy f4dcee.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Custom_Tile The Labyrinths of Lunacy f4dcee.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Custom_Tile The Labyrinths of Lunacy f4dcee.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Custom_Tile The Labyrinths of Lunacy f4dcee.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Custom_Tile The Labyrinths of Lunacy f4dcee.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Custom_Tile The Labyrinths of Lunacy f4dcee.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Tablet Rules 5ef0ce.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Tablet Rules 5ef0ce.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Tablet Rules 5ef0ce.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Tablet Rules 5ef0ce.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac.yaml similarity index 80% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac.yaml index 21e74e18e..cc4d5f18e 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac.yaml @@ -19,9 +19,9 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: -- !include 'Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55.yaml' -- !include 'Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66.yaml' -- !include 'Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn +- !include 'Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55.yaml' +- !include 'Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66.yaml' +- !include 'Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3.yaml' CustomMesh: CastShadows: true @@ -42,23 +42,23 @@ Hands: false HideWhenFaceDown: false IgnoreFoW: false Locked: false -LuaScript: !include 'Custom_Model_Bag The London set 0f96ac.ttslua' +LuaScript: !include 'Custom_Model_Bag The London Set 0f96ac.ttslua' LuaScriptState: '{"ml":{"4c5c55":{"lock":false,"pos":{"x":8.0489,"y":1.2874,"z":7.1029},"rot":{"x":0.0799,"y":89.9962,"z":359.9831}},"905ad3":{"lock":false,"pos":{"x":8.4268,"y":1.2838,"z":-3.1101},"rot":{"x":0.0799,"y":89.9894,"z":359.9831}},"c56f66":{"lock":false,"pos":{"x":8.2949,"y":1.2857,"z":2.5561},"rot":{"x":0.0799,"y":89.9962,"z":359.9831}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 Name: Custom_Model_Bag -Nickname: The London set +Nickname: The London Set Snap: true Sticky: true Tooltip: true Transform: - posX: 5.62818432 - posY: 8.450624 - posZ: -5.4807725 - rotX: 0.02080862 + posX: 1.87823761 + posY: 3.348687 + posZ: -34.5891342 + rotX: 359.983246 rotY: 270.0 - rotZ: 0.01677125 + rotZ: 0.00353774824 scaleX: 2.21 scaleY: 0.2 scaleZ: 2.46 diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + 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 + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) 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.25 * 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) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == 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 + memoryList[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} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + 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 +end + +--Resets bag to starting status +function buttonClick_reset() + 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,0.3,-2}, rotation={0,180,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={0,0.3,-2.8}, rotation={0,180,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={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,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, + }) + 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 deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + 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 + +--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 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Back Gate afb02d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Back Gate afb02d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Back Gate afb02d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Back Gate afb02d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Closet 011eb3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Closet 011eb3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Closet 011eb3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Closet 011eb3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Dining Room 6b5785.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Dining Room 6b5785.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Dining Room 6b5785.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Dining Room 6b5785.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Hall 0de6ae.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Hall 0de6ae.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Hall 0de6ae.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Hall 0de6ae.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Kitchen 107646.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Kitchen 107646.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Kitchen 107646.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Kitchen 107646.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Lounge ce7d99.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Lounge ce7d99.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Lounge ce7d99.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Lounge ce7d99.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Office 4a6c2e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Office 4a6c2e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Office 4a6c2e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Office 4a6c2e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Model_Bag Set-aside a45247.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Model_Bag Set-aside a45247.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Model_Bag Set-aside a45247.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Model_Bag Set-aside a45247/Card Det. James Barrington f4ee7f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Model_Bag Set-aside a45247/Card Det. James Barrington f4ee7f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Model_Bag Set-aside a45247/Card Det. James Barrington f4ee7f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Model_Bag Set-aside a45247/Card Det. James Barrington f4ee7f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Model_Bag Set-aside a45247/Deck Scotland Yard's Finest d8c74a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Model_Bag Set-aside a45247/Deck Scotland Yard's Finest d8c74a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Model_Bag Set-aside a45247/Deck Scotland Yard's Finest d8c74a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Model_Bag Set-aside a45247/Deck Scotland Yard's Finest d8c74a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Model_Bag Set-aside a45247/Deck Treachery 0eef55.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Model_Bag Set-aside a45247/Deck Treachery 0eef55.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Model_Bag Set-aside a45247/Deck Treachery 0eef55.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Model_Bag Set-aside a45247/Deck Treachery 0eef55.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile 60c42d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile 60c42d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile 60c42d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile 60c42d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile 8bfbdf.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile 8bfbdf.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile 8bfbdf.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile 8bfbdf.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile ae2582.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile ae2582.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile ae2582.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile ae2582.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile c53e86.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile c53e86.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile c53e86.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile c53e86.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile c8c57a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile c8c57a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile c8c57a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile c8c57a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile A Loving Spouse ea41d9.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile A Loving Spouse ea41d9.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile A Loving Spouse ea41d9.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile A Loving Spouse ea41d9.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile A Loving Spouse ea41d9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile A Loving Spouse ea41d9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile A Loving Spouse ea41d9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile A Loving Spouse ea41d9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck Act Deck bef698.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck Act Deck bef698.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck Act Deck bef698.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck Act Deck bef698.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck Agenda Deck ea8e80.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck Agenda Deck ea8e80.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck Agenda Deck ea8e80.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck Agenda Deck ea8e80.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck Encounter Deck c1b848.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck Encounter Deck c1b848.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck Encounter Deck c1b848.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck Encounter Deck c1b848.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck Healing Deck V2 1cb460.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck Healing Deck V2 1cb460.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck Healing Deck V2 1cb460.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck Healing Deck V2 1cb460.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck NPCs b5432c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck NPCs b5432c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck NPCs b5432c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck NPCs b5432c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck SetupResolution 2b5207.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck SetupResolution 2b5207.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck SetupResolution 2b5207.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck SetupResolution 2b5207.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + 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 + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) 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.25 * 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) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == 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 + memoryList[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} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + 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 +end + +--Resets bag to starting status +function buttonClick_reset() + 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,0.3,-2}, rotation={0,180,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={0,0.3,-2.8}, rotation={0,180,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={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,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, + }) + 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 deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + 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 + +--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 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Back Garden db2f11.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Back Garden db2f11.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Back Garden db2f11.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Back Garden db2f11.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Back Gate afb02d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Back Gate afb02d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Back Gate afb02d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Back Gate afb02d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Closet b05277.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Closet b05277.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Closet b05277.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Closet b05277.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Dining Room 6b5785.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Dining Room 6b5785.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Dining Room 6b5785.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Dining Room 6b5785.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Garden Path 28f641.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Garden Path 28f641.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Garden Path 28f641.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Garden Path 28f641.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Hall 0de6ae.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Hall 0de6ae.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Hall 0de6ae.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Hall 0de6ae.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Kitchen 107646.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Kitchen 107646.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Kitchen 107646.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Kitchen 107646.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Lounge ce7d99.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Lounge ce7d99.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Lounge ce7d99.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Lounge ce7d99.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Mrs Tillywinger's Kitchen 293045.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Mrs Tillywinger's Kitchen 293045.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Mrs Tillywinger's Kitchen 293045.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Mrs Tillywinger's Kitchen 293045.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Office 4a6c2e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Office 4a6c2e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Office 4a6c2e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Office 4a6c2e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Old Tree 011eb3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Old Tree 011eb3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Old Tree 011eb3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Old Tree 011eb3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Model_Bag Set-aside 5309ba.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Model_Bag Set-aside 5309ba.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Model_Bag Set-aside 5309ba.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Model_Bag Set-aside 5309ba.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Model_Bag Set-aside 5309ba/Card Fluffykins 261ab2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Model_Bag Set-aside 5309ba/Card Fluffykins 261ab2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Model_Bag Set-aside 5309ba/Card Fluffykins 261ab2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Model_Bag Set-aside 5309ba/Card Fluffykins 261ab2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Model_Bag Set-aside 5309ba/Deck For 3 to 4 PLayers a5f57e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Model_Bag Set-aside 5309ba/Deck For 3 to 4 PLayers a5f57e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Model_Bag Set-aside 5309ba/Deck For 3 to 4 PLayers a5f57e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Model_Bag Set-aside 5309ba/Deck For 3 to 4 PLayers a5f57e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 115cf0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 115cf0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 115cf0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 115cf0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 2fe44c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 2fe44c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 2fe44c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 2fe44c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 3cde65.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 3cde65.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 3cde65.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 3cde65.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 79e8f6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 79e8f6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 79e8f6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 79e8f6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 7a19e5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 7a19e5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 7a19e5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 7a19e5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 84b8e4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 84b8e4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 84b8e4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 84b8e4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile a4066f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile a4066f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile a4066f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile a4066f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile c83d0d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile c83d0d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile c83d0d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile c83d0d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile Mrs Tillywingers Cat 0ae91a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile Mrs Tillywingers Cat 0ae91a.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile Mrs Tillywingers Cat 0ae91a.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile Mrs Tillywingers Cat 0ae91a.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile Mrs Tillywingers Cat 0ae91a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile Mrs Tillywingers Cat 0ae91a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile Mrs Tillywingers Cat 0ae91a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile Mrs Tillywingers Cat 0ae91a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck 33cfb9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck 33cfb9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck 33cfb9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck 33cfb9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck Act Deck 386975.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck Act Deck 386975.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck Act Deck 386975.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck Act Deck 386975.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck Agenda Deck d2e2cb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck Agenda Deck d2e2cb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck Agenda Deck d2e2cb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck Agenda Deck d2e2cb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck Encounter Deck 0cd4b6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck Encounter Deck 0cd4b6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck Encounter Deck 0cd4b6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck Encounter Deck 0cd4b6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck NPCs 9e0519.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck NPCs 9e0519.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck NPCs 9e0519.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck NPCs 9e0519.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + 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 + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) 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.25 * 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) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == 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 + memoryList[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} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + 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 +end + +--Resets bag to starting status +function buttonClick_reset() + 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,0.3,-2}, rotation={0,180,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={0,0.3,-2.8}, rotation={0,180,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={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,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, + }) + 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 deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + 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 + +--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 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card Club Offices e4c61d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card Club Offices e4c61d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card Club Offices e4c61d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card Club Offices e4c61d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card Games Room 5778d0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card Games Room 5778d0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card Games Room 5778d0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card Games Room 5778d0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card Great Hall 309add.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card Great Hall 309add.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card Great Hall 309add.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card Great Hall 309add.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card Light Conversation 50e60c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card Light Conversation 50e60c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card Light Conversation 50e60c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card Light Conversation 50e60c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Bar 6af709.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Bar 6af709.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Bar 6af709.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Bar 6af709.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Library 6d4103.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Library 6d4103.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Library 6d4103.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Library 6d4103.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Lobby 0572b6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Lobby 0572b6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Lobby 0572b6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Lobby 0572b6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Lounge 9a473c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Lounge 9a473c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Lounge 9a473c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Lounge 9a473c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Theatre 5b1e07.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Theatre 5b1e07.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Theatre 5b1e07.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Theatre 5b1e07.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Trophy Room 8c42b7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Trophy Room 8c42b7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Trophy Room 8c42b7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Trophy Room 8c42b7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Model_Bag Set-aside 033221.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Model_Bag Set-aside 033221.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Model_Bag Set-aside 033221.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Model_Bag Set-aside 033221.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Model_Bag Set-aside 033221/Deck Dark Cult a257a6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Model_Bag Set-aside 033221/Deck Dark Cult a257a6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Model_Bag Set-aside 033221/Deck Dark Cult a257a6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Model_Bag Set-aside 033221/Deck Dark Cult a257a6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Model_Bag Set-aside 033221/Deck Evidence & Red Herring cae4de.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Model_Bag Set-aside 033221/Deck Evidence & Red Herring cae4de.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Model_Bag Set-aside 033221/Deck Evidence & Red Herring cae4de.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Model_Bag Set-aside 033221/Deck Evidence & Red Herring cae4de.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Model_Bag Set-aside 033221/Deck NPCs 922553.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Model_Bag Set-aside 033221/Deck NPCs 922553.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Model_Bag Set-aside 033221/Deck NPCs 922553.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Model_Bag Set-aside 033221/Deck NPCs 922553.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 03248d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 03248d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 03248d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 03248d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 07be44.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 07be44.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 07be44.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 07be44.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 103c28.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 103c28.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 103c28.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 103c28.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 3ff3b1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 3ff3b1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 3ff3b1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 3ff3b1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 44b0c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 44b0c5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 44b0c5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 44b0c5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 65f357.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 65f357.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 65f357.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 65f357.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 6f3431.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 6f3431.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 6f3431.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 6f3431.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 838b75.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 838b75.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 838b75.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 838b75.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 85e9d4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 85e9d4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 85e9d4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 85e9d4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile a0392b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile a0392b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile a0392b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile a0392b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile b772b0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile b772b0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile b772b0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile b772b0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile Disgracing Alderman Whitney c2736e.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile Disgracing Alderman Whitney c2736e.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile Disgracing Alderman Whitney c2736e.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile Disgracing Alderman Whitney c2736e.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile Disgracing Alderman Whitney c2736e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile Disgracing Alderman Whitney c2736e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile Disgracing Alderman Whitney c2736e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile Disgracing Alderman Whitney c2736e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Deck Agenda Deck 8ba9f5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Deck Agenda Deck 8ba9f5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Deck Agenda Deck 8ba9f5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Deck Agenda Deck 8ba9f5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Deck SetupResolution 976f2f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Deck SetupResolution 976f2f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Deck SetupResolution 976f2f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Deck SetupResolution 976f2f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/DeckCustom Encounter Deck 173db8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/DeckCustom Encounter Deck 173db8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/DeckCustom Encounter Deck 173db8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/DeckCustom Encounter Deck 173db8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/DeckCustom Healing deck v1 66f72a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/DeckCustom Healing deck v1 66f72a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/DeckCustom Healing deck v1 66f72a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The London Set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/DeckCustom Healing deck v1 66f72a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12.yaml index 59fc7f3ba..f723c37fa 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12.yaml @@ -66,12 +66,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 40.8594627 - posY: 8.675957 - posZ: -50.91717 + posX: -0.767950833 + posY: 3.34654546 + posZ: -24.51552 rotX: 359.983276 rotY: 269.999969 - rotZ: 0.003535346 + rotZ: 0.00353534659 scaleX: 2.21 scaleY: 0.2 scaleZ: 2.46 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Card 4fa9f9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Card 4fa9f9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Card 4fa9f9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Card 4fa9f9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Card 7b5228.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Card 7b5228.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Card 7b5228.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Card 7b5228.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Card 9e9bdd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Card 9e9bdd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Card 9e9bdd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Card 9e9bdd.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Card a41e13.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Card a41e13.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Card a41e13.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Card a41e13.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Card db443b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Card db443b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Card db443b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Card db443b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Card e67855.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Card e67855.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Card e67855.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Card e67855.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile 4369ca.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile 4369ca.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile 4369ca.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile 4369ca.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile 5ca1a9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile 5ca1a9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile 5ca1a9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile 5ca1a9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile b874a8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile b874a8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile b874a8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile b874a8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile The Nephew Calls 54707a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile The Nephew Calls 54707a.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile The Nephew Calls 54707a.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile The Nephew Calls 54707a.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile The Nephew Calls 54707a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile The Nephew Calls 54707a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile The Nephew Calls 54707a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile The Nephew Calls 54707a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Deck a9c518.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Deck a9c518.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Deck a9c518.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Deck a9c518.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Act deck 3c18ed.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Act deck 3c18ed.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Act deck 3c18ed.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Act deck 3c18ed.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Agenda Deck 2e8f0a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Agenda Deck 2e8f0a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Agenda Deck 2e8f0a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Agenda Deck 2e8f0a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Encounter Deck 4ed173.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Encounter Deck 4ed173.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Encounter Deck 4ed173.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Encounter Deck 4ed173.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Set Aside a8f47c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Set Aside a8f47c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Set Aside a8f47c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Set Aside a8f47c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c.yaml index 16fe2a1f3..ab6e3674a 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c.yaml @@ -53,12 +53,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 34.98637 - posY: 8.681304 - posZ: -60.5672722 + posX: -0.929558 + posY: 3.34720254 + posZ: -23.0639572 rotX: 359.983246 rotY: 270.0 - rotZ: 0.00353657571 + rotZ: 0.00353657641 scaleX: 2.21 scaleY: 0.2 scaleZ: 2.46 diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + 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 + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) 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.25 * 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) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == 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 + memoryList[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} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + 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 +end + +--Resets bag to starting status +function buttonClick_reset() + 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,0.3,-2}, rotation={0,180,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={0,0.3,-2.8}, rotation={0,180,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={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,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, + }) + 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 deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + 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 + +--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 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 1bf221.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 1bf221.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 1bf221.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 1bf221.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 47720a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 47720a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 47720a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 47720a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 66bd6a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 66bd6a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 66bd6a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 66bd6a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 74c0a6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 74c0a6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 74c0a6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 74c0a6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 8bf28c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 8bf28c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 8bf28c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 8bf28c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck bfa819.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck bfa819.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck bfa819.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck bfa819.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Act deck 68cf11.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Act deck 68cf11.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Act deck 68cf11.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Act deck 68cf11.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Agenda 3ac9dc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Agenda 3ac9dc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Agenda 3ac9dc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Agenda 3ac9dc.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Encounter deck 7778b2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Encounter deck 7778b2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Encounter deck 7778b2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Encounter deck 7778b2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Set Aside c7985e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Set Aside c7985e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Set Aside c7985e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Set Aside c7985e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + 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 + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) 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.25 * 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) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == 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 + memoryList[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} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + 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 +end + +--Resets bag to starting status +function buttonClick_reset() + 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,0.3,-2}, rotation={0,180,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={0,0.3,-2.8}, rotation={0,180,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={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,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, + }) + 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 deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + 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 + +--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 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card 39f252.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card 39f252.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card 39f252.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card 39f252.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card 6abf04.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card 6abf04.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card 6abf04.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card 6abf04.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card 74c0a6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card 74c0a6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card 74c0a6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card 74c0a6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card a17577.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card a17577.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card a17577.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card a17577.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card the Key 22d44e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card the Key 22d44e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card the Key 22d44e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card the Key 22d44e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Act deck 069c0e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Act deck 069c0e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Act deck 069c0e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Act deck 069c0e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Agenda 15aea9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Agenda 15aea9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Agenda 15aea9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Agenda 15aea9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Barricades 732e77.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Barricades 732e77.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Barricades 732e77.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Barricades 732e77.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Encounter deck b8835d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Encounter deck b8835d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Encounter deck b8835d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Encounter deck b8835d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck locations 1a5389.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck locations 1a5389.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck locations 1a5389.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck locations 1a5389.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + 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 + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) 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.25 * 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) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == 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 + memoryList[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} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + 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 +end + +--Resets bag to starting status +function buttonClick_reset() + 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,0.3,-2}, rotation={0,180,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={0,0.3,-2.8}, rotation={0,180,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={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,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, + }) + 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 deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + 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 + +--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 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 0c7cb7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 0c7cb7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 0c7cb7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 0c7cb7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 0f1ac9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 0f1ac9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 0f1ac9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 0f1ac9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 259cf3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 259cf3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 259cf3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 259cf3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 48182d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 48182d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 48182d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 48182d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 4c90c4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 4c90c4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 4c90c4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 4c90c4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 5b6a3e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 5b6a3e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 5b6a3e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 5b6a3e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 60479c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 60479c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 60479c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 60479c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 958ae4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 958ae4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 958ae4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 958ae4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 9bf7f7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 9bf7f7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 9bf7f7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 9bf7f7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 9ee9b3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 9ee9b3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 9ee9b3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 9ee9b3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card the Castle 712716.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card the Castle 712716.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card the Castle 712716.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card the Castle 712716.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 1c6fa6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 1c6fa6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 1c6fa6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 1c6fa6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 3c4916.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 3c4916.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 3c4916.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 3c4916.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 44b0c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 44b0c5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 44b0c5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 44b0c5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 49a48d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 49a48d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 49a48d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 49a48d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 4ffff6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 4ffff6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 4ffff6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 4ffff6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 87ca77.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 87ca77.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 87ca77.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 87ca77.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile c98d4d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile c98d4d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile c98d4d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile c98d4d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile d21dcc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile d21dcc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile d21dcc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile d21dcc.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile dd44d6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile dd44d6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile dd44d6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile dd44d6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile e37679.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile e37679.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile e37679.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile e37679.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile e98e39.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile e98e39.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile e98e39.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile e98e39.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck f56146.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck f56146.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck f56146.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck f56146.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck Act deck 17db9c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck Act deck 17db9c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck Act deck 17db9c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck Act deck 17db9c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck Agenda 85162c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck Agenda 85162c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck Agenda 85162c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck Agenda 85162c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck Set Aside a890ff.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck Set Aside a890ff.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck Set Aside a890ff.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck Set Aside a890ff.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/DeckCustom Encounter deck 81cfd0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/DeckCustom Encounter deck 81cfd0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/DeckCustom Encounter deck 81cfd0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/DeckCustom Encounter deck 81cfd0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Custom_Tile The Outsider d5b06c.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Custom_Tile The Outsider d5b06c.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Custom_Tile The Outsider d5b06c.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Custom_Tile The Outsider d5b06c.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Custom_Tile The Outsider d5b06c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Custom_Tile The Outsider d5b06c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider 3c175c/Custom_Tile The Outsider d5b06c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Outsider 3c175c/Custom_Tile The Outsider d5b06c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38.yaml index 51f645027..f695ab5bf 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38.yaml @@ -67,9 +67,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 8.809473 - posY: 2.51142883 - posZ: -42.5189552 + posX: 0.7027054 + posY: 3.34391022 + posZ: -27.4629841 rotX: 359.983246 rotY: 269.999969 rotZ: 0.00353650819 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Card 336335.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Card 336335.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Card 336335.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Card 336335.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Card afc427.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Card afc427.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Card afc427.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Card afc427.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Card e28e5b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Card e28e5b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Card e28e5b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Card e28e5b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Card Main Street eb6cf0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Card Main Street eb6cf0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Card Main Street eb6cf0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Card Main Street eb6cf0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Card Robert Wallen 0251e6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Card Robert Wallen 0251e6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Card Robert Wallen 0251e6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Card Robert Wallen 0251e6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Card Scenario 22cf16.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Card Scenario 22cf16.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Card Scenario 22cf16.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Card Scenario 22cf16.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Card Scenario 3cf9b8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Card Scenario 3cf9b8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Card Scenario 3cf9b8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Card Scenario 3cf9b8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Card Tea Rooms 1ae75c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Card Tea Rooms 1ae75c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Card Tea Rooms 1ae75c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Card Tea Rooms 1ae75c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Card Train Station b93ec9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Card Train Station b93ec9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Card Train Station b93ec9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Card Train Station b93ec9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Black Obsidian Statue 1b170f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Black Obsidian Statue 1b170f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Black Obsidian Statue 1b170f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Black Obsidian Statue 1b170f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card John Lambton 743487.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card John Lambton 743487.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card John Lambton 743487.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card John Lambton 743487.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Mad Cultist debae4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Mad Cultist debae4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Mad Cultist debae4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Mad Cultist debae4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Pensher Hill 8f0d2d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Pensher Hill 8f0d2d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Pensher Hill 8f0d2d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Pensher Hill 8f0d2d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Pit Foreman e998cb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Pit Foreman e998cb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Pit Foreman e998cb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Pit Foreman e998cb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card The Pensher Wyrm 16a8e0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card The Pensher Wyrm 16a8e0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card The Pensher Wyrm 16a8e0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card The Pensher Wyrm 16a8e0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Wear River d5b3a4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Wear River d5b3a4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Wear River d5b3a4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Wear River d5b3a4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Deck Down in the Mines 6668d9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Deck Down in the Mines 6668d9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Deck Down in the Mines 6668d9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Deck Down in the Mines 6668d9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Deck Miners ed57c8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Deck Miners ed57c8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Deck Miners ed57c8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Deck Miners ed57c8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Deck Mines 2e28c6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Deck Mines 2e28c6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Deck Mines 2e28c6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Deck Mines 2e28c6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Deck Rats 509a9d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Deck Rats 509a9d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Deck Rats 509a9d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Deck Rats 509a9d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile f0dbb0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile f0dbb0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile f0dbb0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile f0dbb0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile The Pensher Wyrm c606a1.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile The Pensher Wyrm c606a1.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile The Pensher Wyrm c606a1.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile The Pensher Wyrm c606a1.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile The Pensher Wyrm c606a1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile The Pensher Wyrm c606a1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile The Pensher Wyrm c606a1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile The Pensher Wyrm c606a1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Act Deck 909b6f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Act Deck 909b6f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Act Deck 909b6f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Act Deck 909b6f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Agenda Deck 04fdb8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Agenda Deck 04fdb8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Agenda Deck 04fdb8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Agenda Deck 04fdb8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Encounter Deck d37670.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Encounter Deck d37670.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Encounter Deck d37670.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Encounter Deck d37670.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Setup 07bfca.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Setup 07bfca.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Setup 07bfca.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Setup 07bfca.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327.yaml index 943063890..1803c2b9f 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327.yaml @@ -59,12 +59,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 59.7409859 - posY: 8.639392 - posZ: -85.96119 + posX: -1.16355109 + posY: 3.346249 + posZ: -27.3595428 rotX: 359.983246 rotY: 269.999969 - rotZ: 0.00353683834 + rotZ: 0.00353666232 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Card Hearth 0a7a51.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Card Hearth 0a7a51.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Card Hearth 0a7a51.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Card Hearth 0a7a51.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Card Scenario 1d2e12.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Card Scenario 1d2e12.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Card Scenario 1d2e12.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Card Scenario 1d2e12.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Card Scenario d63331.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Card Scenario d63331.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Card Scenario d63331.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Card Scenario d63331.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247/Card I have seen Death 06e5e4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247/Card I have seen Death 06e5e4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247/Card I have seen Death 06e5e4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247/Card I have seen Death 06e5e4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247/Card Passage 30adbd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247/Card Passage 30adbd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247/Card Passage 30adbd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247/Card Passage 30adbd.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247/Card Red Room 52328e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247/Card Red Room 52328e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247/Card Red Room 52328e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247/Card Red Room 52328e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247/Card Staircase 8038f1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247/Card Staircase 8038f1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247/Card Staircase 8038f1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247/Card Staircase 8038f1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Deck Act Deck cde2d1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Deck Act Deck cde2d1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Deck Act Deck cde2d1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Deck Act Deck cde2d1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Deck Agenda Deck 26b589.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Deck Agenda Deck 26b589.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Deck Agenda Deck 26b589.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Deck Agenda Deck 26b589.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Deck Encounter deck 023e21.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Deck Encounter deck 023e21.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Deck Encounter deck 023e21.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Deck Encounter deck 023e21.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Deck Old Servants ce2091.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Deck Old Servants ce2091.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Deck Old Servants ce2091.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Deck Old Servants ce2091.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Deck SetupResolution 469d58.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Deck SetupResolution 469d58.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Deck SetupResolution 469d58.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Deck SetupResolution 469d58.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Tablet The Red Room 64f279.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Tablet The Red Room 64f279.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room fa4327/Tablet The Red Room 64f279.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Red Room fa4327/Tablet The Red Room 64f279.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4.yaml index d7587a19b..dc6f0cd55 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4.yaml @@ -68,12 +68,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 7.22945452 - posY: 2.47331977 - posZ: -31.78777 + posX: -1.56596231 + posY: 3.45771241 + posZ: -20.10475 rotX: 359.983246 rotY: 270.0 - rotZ: 0.00353812729 + rotZ: 0.003538129 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Card Front Door cb2e63.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Card Front Door cb2e63.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Card Front Door cb2e63.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Card Front Door cb2e63.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Card High Street 40f354.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Card High Street 40f354.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Card High Street 40f354.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Card High Street 40f354.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Card Scenario 00dc67.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Card Scenario 00dc67.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Card Scenario 00dc67.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Card Scenario 00dc67.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Card Scenario af4e73.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Card Scenario af4e73.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Card Scenario af4e73.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Card Scenario af4e73.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Card The Stolen Bacillus bf5d39.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Card The Stolen Bacillus bf5d39.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Card The Stolen Bacillus bf5d39.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Card The Stolen Bacillus bf5d39.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Card Anarchist's Cab abd634.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Card Anarchist's Cab abd634.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Card Anarchist's Cab abd634.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Card Anarchist's Cab abd634.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Card Hackney Cab 908abd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Card Hackney Cab 908abd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Card Hackney Cab 908abd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Card Hackney Cab 908abd.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Card The Bacteriologist 220f53.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Card The Bacteriologist 220f53.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Card The Bacteriologist 220f53.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Card The Bacteriologist 220f53.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Deck Blue Ruin Treachery 912d1d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Deck Blue Ruin Treachery 912d1d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Deck Blue Ruin Treachery 912d1d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Deck Blue Ruin Treachery 912d1d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Deck London Streets e42478.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Deck London Streets e42478.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Deck London Streets e42478.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Deck London Streets e42478.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Deck Weaknesses 2bec59.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Deck Weaknesses 2bec59.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Deck Weaknesses 2bec59.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Deck Weaknesses 2bec59.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 33116d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 33116d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 33116d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 33116d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 631549.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 631549.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 631549.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 631549.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 79090a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 79090a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 79090a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 79090a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 82e02f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 82e02f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 82e02f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 82e02f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile Core Difficulty ec7a73.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile Core Difficulty ec7a73.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile Core Difficulty ec7a73.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile Core Difficulty ec7a73.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile Core Difficulty ec7a73.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile Core Difficulty ec7a73.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile Core Difficulty ec7a73.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile Core Difficulty ec7a73.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Deck edcae4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Deck edcae4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Deck edcae4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Deck edcae4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Deck Act Deck f305a2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Deck Act Deck f305a2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Deck Act Deck f305a2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Deck Act Deck f305a2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Deck Agenda deck 6a9431.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Deck Agenda deck 6a9431.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Deck Agenda deck 6a9431.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Deck Agenda deck 6a9431.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Deck Encounter deck 0e6c8c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Deck Encounter deck 0e6c8c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Deck Encounter deck 0e6c8c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Deck Encounter deck 0e6c8c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Deck SetupResolution 102272.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Deck SetupResolution 102272.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen Baillius bfefd4/Deck SetupResolution 102272.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Stolen Baillius bfefd4/Deck SetupResolution 102272.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b.yaml index 454a0a44e..ee0beaa0a 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b.yaml @@ -73,12 +73,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 14.2502775 - posY: 8.491145 - posZ: -137.316177 - rotX: 0.0208086967 + posX: -0.6729292 + posY: 3.45727134 + posZ: -20.2666245 + rotX: 0.020808693 rotY: 270.0 - rotZ: 0.0167711321 + rotZ: 0.0167711359 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Card 0967ea.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Card 0967ea.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Card 0967ea.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Card 0967ea.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Card 1a4e64.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Card 1a4e64.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Card 1a4e64.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Card 1a4e64.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Card 37ec51.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Card 37ec51.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Card 37ec51.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Card 37ec51.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Card 5f0185.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Card 5f0185.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Card 5f0185.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Card 5f0185.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Card 6a72fc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Card 6a72fc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Card 6a72fc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Card 6a72fc.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Card a8a4b1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Card a8a4b1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Card a8a4b1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Card a8a4b1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Card bbe4b0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Card bbe4b0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Card bbe4b0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Card bbe4b0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Card ca0e9b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Card ca0e9b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Card ca0e9b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Card ca0e9b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Card The Svalbard Event 713671.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Card The Svalbard Event 713671.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Card The Svalbard Event 713671.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Card The Svalbard Event 713671.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Card The Svalbard Event b11646.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Card The Svalbard Event b11646.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Card The Svalbard Event b11646.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Card The Svalbard Event b11646.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 44b0c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 44b0c5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 44b0c5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 44b0c5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 4c2b84.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 4c2b84.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 4c2b84.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 4c2b84.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 88005c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 88005c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 88005c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 88005c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile b149b1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile b149b1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile b149b1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile b149b1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile bc7323.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile bc7323.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile bc7323.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile bc7323.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile e10b7c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile e10b7c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile e10b7c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile e10b7c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile Core Difficulty a751fe.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile Core Difficulty a751fe.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile Core Difficulty a751fe.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile Core Difficulty a751fe.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile Core Difficulty a751fe.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile Core Difficulty a751fe.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile Core Difficulty a751fe.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile Core Difficulty a751fe.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Act c99e9d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Act c99e9d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Act c99e9d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Act c99e9d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Agenda f9ae22.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Agenda f9ae22.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Agenda f9ae22.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Agenda f9ae22.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Encounter deck 9fac8b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Encounter deck 9fac8b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Encounter deck 9fac8b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Encounter deck 9fac8b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Instructions 963cfe.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Instructions 963cfe.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Instructions 963cfe.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Instructions 963cfe.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Put Aside 7dcc93.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Put Aside 7dcc93.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Put Aside 7dcc93.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Put Aside 7dcc93.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54.yaml new file mode 100644 index 000000000..1f64df62a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54.yaml @@ -0,0 +1,97 @@ +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: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile 1d53b9.yaml' +- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_PDF The Symphony + of Erich Zann Scenario Guide 267216.yaml' +- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom Isabel La + Fratta 2fdcf2.yaml' +- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/Deck Act Deck 389f2f.yaml' +- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile 5abb04.yaml' +- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 5fa823.yaml' +- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 6c188d.yaml' +- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 6e9f64.yaml' +- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 8de6ef.yaml' +- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom Erlkonig + 8fce51.yaml' +- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom Isabel La + Fratta a7bf6e.yaml' +- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside + b6da68.yaml' +- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile c582af.yaml' +- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/Deck Encounter Deck + c8a1e7.yaml' +- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom Scenario + Reference Card cc2260.yaml' +- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/Deck Agenda Deck e89352.yaml' +- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile The Symphony + of Erich Zann f4c93e.yaml' +- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom Cadenza + f5f35d.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/1254763972105175718/5A09C7E8EBCC79DD9E405FF6F83E49C2C27D5F29/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 18aa54 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54.ttslua' +LuaScriptState: '{"ml":{"1d53b9":{"lock":false,"pos":{"x":-27.141,"y":1.6204,"z":3.6654},"rot":{"x":359.9316,"y":315.0003,"z":359.9554}},"267216":{"lock":false,"pos":{"x":-9.3367,"y":1.5542,"z":22.8491},"rot":{"x":0.4397,"y":270.023,"z":0.035}},"2fdcf2":{"lock":false,"pos":{"x":-8.9445,"y":1.5168,"z":31.4015},"rot":{"x":0.0169,"y":179.9546,"z":0.0799}},"389f2f":{"lock":false,"pos":{"x":-2.6886,"y":1.6191,"z":-5.0485},"rot":{"x":0.0168,"y":180.005,"z":0.0803}},"5abb04":{"lock":false,"pos":{"x":-26.9153,"y":1.6212,"z":7.5498},"rot":{"x":359.9201,"y":270.0093,"z":0.0169}},"5fa823":{"lock":false,"pos":{"x":-17.12,"y":1.6189,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"6c188d":{"lock":false,"pos":{"x":-23.6764,"y":1.6303,"z":7.5557},"rot":{"x":359.9201,"y":269.9937,"z":180.0168}},"6e9f64":{"lock":false,"pos":{"x":-23.6765,"y":1.6281,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":180.0168}},"7234af":{"lock":false,"pos":{"x":-20.3189,"y":1.6098,"z":-0.0135},"rot":{"x":359.9201,"y":270.0094,"z":0.0169}},"8de6ef":{"lock":false,"pos":{"x":-30.2243,"y":1.6394,"z":7.5689},"rot":{"x":359.9201,"y":270.0008,"z":180.0168}},"8fce51":{"lock":false,"pos":{"x":-12.4593,"y":1.5213,"z":29.9679},"rot":{"x":359.9201,"y":270.0211,"z":0.0168}},"a7bf6e":{"lock":false,"pos":{"x":-6.1021,"y":1.5128,"z":31.3411},"rot":{"x":359.9201,"y":269.9942,"z":0.0169}},"b6da68":{"lock":false,"pos":{"x":1.6955,"y":1.5583,"z":14.2791},"rot":{"x":359.9552,"y":224.9335,"z":0.0687}},"c582af":{"lock":false,"pos":{"x":-23.6765,"y":1.6156,"z":3.86},"rot":{"x":359.9832,"y":0.0003,"z":359.9201}},"c8a1e7":{"lock":false,"pos":{"x":-3.9276,"y":1.7348,"z":5.7571},"rot":{"x":359.9197,"y":270,"z":180.0168}},"cc2260":{"lock":false,"pos":{"x":-3.9559,"y":1.5975,"z":-10.4413},"rot":{"x":359.9197,"y":269.9966,"z":0.0168}},"e89352":{"lock":false,"pos":{"x":-2.7247,"y":1.6208,"z":0.3733},"rot":{"x":0.0169,"y":179.9518,"z":0.0802}},"f4c93e":{"lock":false,"pos":{"x":-3.9581,"y":1.5827,"z":-14.7436},"rot":{"x":359.9197,"y":270.03,"z":0.0168}},"f5f35d":{"lock":false,"pos":{"x":-12.4731,"y":1.5221,"z":32.6961},"rot":{"x":359.9201,"y":270.0035,"z":0.0169}}}}' +MaterialIndex: -1 +MeasureMovement: false +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Symphony of Erich Zann +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.423710585 + posY: 3.34643722 + posZ: -23.9001331 + rotX: 359.983246 + rotY: 270.0 + rotZ: 0.00353678875 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 676b16.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 5fa823.yaml similarity index 60% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 676b16.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 5fa823.yaml index e9d349483..b50a22e43 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 676b16.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 5fa823.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 268900 +CardID: 273400 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2689': + '2734': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1016067538700617268/FBEFE1105FA147E788E9AD9EC9D4E6BC5BD660C8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474715753/5B10E08C0AC9F5FCDF95F30C0906A63DFC038A36/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122919379/49E9D9F297753FD24973352591B9B22D0064D7A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122919131/F4BD18D4CAFB88E2C000C5E90C71C78F0A0D36B7/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: 676b16 +GUID: 5fa823 Grid: true GridProjection: false Hands: true @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -17.107 - posY: 1.618944 - posZ: -0.05339984 + posX: -17.12 + posY: 1.6189239 + posZ: -0.0299996249 rotX: 359.9201 - rotY: 270.0001 - rotZ: 180.016861 + rotY: 269.9999 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 4d2acb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 6c188d.yaml similarity index 62% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 4d2acb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 6c188d.yaml index b266e019d..0f5248323 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 4d2acb.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 6c188d.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 269300 +CardID: 273600 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2693': + '2736': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474718205/0821951D4D5DD0602991E56C4D266C6214C86791/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474718023/1AD873952A203B7BCC0891E95E866D2B69B74B51/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122922284/9C5470AAB33A17267981BC3344A934A95E723231/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122922118/3782FD0BAD5508A93D9F41373C7600B379D9D39F/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: 4d2acb +GUID: 6c188d Grid: true GridProjection: false Hands: true @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -23.6764 - posY: 1.62811148 - posZ: -0.02999982 + posY: 1.63029575 + posZ: 7.5557003 rotX: 359.9201 - rotY: 270.0 - rotZ: 180.016861 + rotY: 269.9937 + rotZ: 180.016846 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 422e71.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 6e9f64.yaml similarity index 62% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 422e71.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 6e9f64.yaml index 89af5d9ad..5bd19e217 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 422e71.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 6e9f64.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 268800 +CardID: 273500 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2688': + '2735': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474715294/59B774F8D19C43AD789D05306BCC3DBCCF4EBF83/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700616045/3C6F46AF952F9CAC30D6A09E0408C058CCABC892/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122920667/FED3384AAE434AE79995558DAADF031D916025EB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122920510/497F1728B7AF6A8E07BF39878736A7BA9195041E/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: 422e71 +GUID: 6e9f64 Grid: true GridProjection: false Hands: true @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -30.2241 - posY: 1.63947976 - posZ: 7.57 + posX: -23.6765 + posY: 1.62806654 + posZ: -0.0299995635 rotX: 359.9201 rotY: 270.0 - rotZ: 180.016861 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 6e92f3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 8de6ef.yaml similarity index 60% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 6e92f3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 8de6ef.yaml index 1af2ce122..bd2358cb8 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 6e92f3.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 8de6ef.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 269100 +CardID: 273700 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2691': + '2737': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1016067538700617909/0A7D0F97FF0CAE1084F814FBB63ADBC4D5972F23/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474716211/29361CB7C25F088827C08953731F333B134DBF3B/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122923070/BD225542A223A1729D402A627D3705834AE860C3/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122922889/FE01B0D1B0C6A571DCEB8F1944EB9FBBC3E066F8/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: 6e92f3 +GUID: 8de6ef Grid: true GridProjection: false Hands: true @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -23.6764 - posY: 1.6303494 - posZ: 7.57000065 + posX: -30.2243 + posY: 1.63943028 + posZ: 7.56890059 rotX: 359.9201 - rotY: 270.000244 - rotZ: 180.016861 + rotY: 270.0008 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom Cadenza f5f35d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom Cadenza f5f35d.yaml new file mode 100644 index 000000000..b2d025113 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom Cadenza f5f35d.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277500 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2775': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122973789/B2649E904AB4D0FE7CEF1DBBD38B204D4EB82CAA/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: f5f35d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: Cadenza +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.4731016 + posY: 1.52213073 + posZ: 32.6961136 + rotX: 359.920135 + rotY: 270.003632 + rotZ: 0.0168679412 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom Erlkonig 8fce51.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom Erlkonig 8fce51.yaml new file mode 100644 index 000000000..1ddb94209 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom Erlkonig 8fce51.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277600 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2776': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122974268/00838B287C04E9BA52A0AB03ECE6EDECE33AE3AF/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 8fce51 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: Erlkonig +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.4593039 + posY: 1.5213083 + posZ: 29.967907 + rotX: 359.9201 + rotY: 270.020874 + rotZ: 0.016844362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom Isabel La Fratta 2fdcf2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom Isabel La Fratta 2fdcf2.yaml new file mode 100644 index 000000000..ae3618c3e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom Isabel La Fratta 2fdcf2.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277400 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2774': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122971724/3149AB76855E5DD878371B41E7465C25A1319724/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122971579/109DA85250542BD31258EA11748162C1A2E32571/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 2fdcf2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: Isabel La Fratta +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.9445 + posY: 1.5168308 + posZ: 31.4015083 + rotX: 0.0169347823 + rotY: 179.95459 + rotZ: 0.07986316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom Isabel La Fratta a7bf6e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom Isabel La Fratta a7bf6e.yaml new file mode 100644 index 000000000..17624e225 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom Isabel La Fratta a7bf6e.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 277700 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2777': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122974981/7350D77DCBD87BFCB0664D22510A8F992851EA56/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122974805/F6F70E4D40E77A4238D0DC38C7F13D1071EAB17D/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: a7bf6e +Grid: false +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: Isabel La Fratta +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -6.102102 + posY: 1.51285 + posZ: 31.3411083 + rotX: 359.920135 + rotY: 269.9942 + rotZ: 0.0168817416 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom Scenario Reference Card a5a321.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom Scenario Reference Card cc2260.yaml similarity index 59% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom Scenario Reference Card a5a321.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom Scenario Reference Card cc2260.yaml index e927d34f7..fbcf7ad17 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom Scenario Reference Card a5a321.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom Scenario Reference Card cc2260.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 270300 +CardID: 272300 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2703': + '2723': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474756130/5702C55479BEF2E95E54213901DBD9DA896FD029/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474755975/1BEB8033CB174DA86620CCF328B5CC70FC0CB23E/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122913108/18FC06D4F95B443F60E63BCD9B23D0EF0087A506/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122912939/4906A402F2DBCDCDD140E3FE6269D23D1ABC3CAC/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: a5a321 +GUID: cc2260 Grid: true GridProjection: false Hands: true @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.956001 - posY: 1.59753942 - posZ: -10.4412012 - rotX: 359.919769 - rotY: 269.934967 - rotZ: 0.0169282649 + posX: -3.955901 + posY: 1.59753931 + posZ: -10.4413033 + rotX: 359.919739 + rotY: 269.996582 + rotZ: 0.0168419369 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68.yaml similarity index 80% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68.yaml index 398ca9d39..c830d7cfb 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68.yaml @@ -4,19 +4,20 @@ ColorDiffuse: g: 0.00100758043 r: 0.02148666 ContainedObjects: -- !include 'Custom_Model_Bag Set-aside b6da68/Deck Stuck in Your Head 4b9eb6.yaml' -- !include 'Custom_Model_Bag Set-aside b6da68/CardCustom Yin''s Drumsticks 471a69.yaml' -- !include 'Custom_Model_Bag Set-aside b6da68/CardCustom Page''s Violin 4710cb.yaml' -- !include 'Custom_Model_Bag Set-aside b6da68/CardCustom La Fratta''s Piano Key 4667e0.yaml' -- !include 'Custom_Model_Bag Set-aside b6da68/CardCustom Walker''s Trumpet a57b93.yaml' -- !include 'Custom_Model_Bag Set-aside b6da68/CardCustom Beyond the Curtain 11dfd1.yaml' -- !include 'Custom_Model_Bag Set-aside b6da68/CardCustom Young Nightingale d9a9c4.yaml' -- !include 'Custom_Model_Bag Set-aside b6da68/Deck Heard by Something ee02ab.yaml' -- !include 'Custom_Model_Bag Set-aside b6da68/Deck Ears of the Void b1a9e1.yaml' -- !include 'Custom_Model_Bag Set-aside b6da68/Deck Musicians 0b8236.yaml' -- !include 'Custom_Model_Bag Set-aside b6da68/Deck Backstage Rooms a980d4.yaml' -- !include 'Custom_Model_Bag Set-aside b6da68/CardCustom Stage Hall b1e0d8.yaml' -- !include 'Custom_Model_Bag Set-aside b6da68/CardCustom Auguste Gaudin 15fb0f.yaml' +- !include 'Custom_Model_Bag Set-aside b6da68/CardCustom Beyond the Curtain 6c38e1.yaml' +- !include 'Custom_Model_Bag Set-aside b6da68/CardCustom Yin''s Drumsticks 211916.yaml' +- !include 'Custom_Model_Bag Set-aside b6da68/CardCustom Page''s Violin 4b0880.yaml' +- !include 'Custom_Model_Bag Set-aside b6da68/CardCustom Walker''s Trumpet 8a68dc.yaml' +- !include 'Custom_Model_Bag Set-aside b6da68/CardCustom La Fratta''s Piano Key f988d3.yaml' +- !include 'Custom_Model_Bag Set-aside b6da68/CardCustom Young Nightingale 680a2a.yaml' +- !include 'Custom_Model_Bag Set-aside b6da68/Deck Ears of the Void be92f6.yaml' +- !include 'Custom_Model_Bag Set-aside b6da68/Deck Heard by Something 043b84.yaml' +- !include 'Custom_Model_Bag Set-aside b6da68/Deck Musician Enemies 2eea25.yaml' +- !include 'Custom_Model_Bag Set-aside b6da68/CardCustom Auguste Gaudin (Maestro of + Symphonies) add160.yaml' +- !include 'Custom_Model_Bag Set-aside b6da68/Deck Backstage Room 76f872.yaml' +- !include 'Custom_Model_Bag Set-aside b6da68/CardCustom Stage Hall 4d0054.yaml' +- !include 'Custom_Model_Bag Set-aside b6da68/Deck Stuck in Your Head 6c0e6c.yaml' CustomMesh: CastShadows: true ColliderURL: '' @@ -58,12 +59,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 1.69640028 - posY: 1.55831718 - posZ: 14.2790012 - rotX: 359.955139 - rotY: 224.9995 - rotZ: 0.06867233 + posX: 1.69550157 + posY: 1.55831873 + posZ: 14.2791052 + rotX: 359.9552 + rotY: 224.933487 + rotZ: 0.06872258 scaleX: 2.0 scaleY: 2.0 scaleZ: 2.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Auguste Gaudin (Maestro of Symphonies) add160.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Auguste Gaudin (Maestro of Symphonies) add160.yaml new file mode 100644 index 000000000..fad243ce7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Auguste Gaudin (Maestro of Symphonies) add160.yaml @@ -0,0 +1,45 @@ +Autoraise: true +CardID: 275300 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2753': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122935589/F9C1652DB5AFEBA45DAF540DC9EA059431E33458/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +Description: '' +DragSelectable: true +GMNotes: '' +GUID: add160 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: CardCustom +Nickname: Auguste Gaudin (Maestro of Symphonies) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.696433 + posY: 3.66974282 + posZ: 14.2788343 + rotX: 359.94812 + rotY: 224.998062 + rotZ: 0.0583287366 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Beyond the Curtain 11dfd1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Beyond the Curtain 6c38e1.yaml similarity index 59% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Beyond the Curtain 11dfd1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Beyond the Curtain 6c38e1.yaml index f71f8d7af..86ea1477a 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Beyond the Curtain 11dfd1.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Beyond the Curtain 6c38e1.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 270100 +CardID: 273300 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2701': + '2733': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1016067538700644871/5C034F160C96D0DF7CA4A8F75A8B2AF16B82E8E8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474753069/F22755AF4E4C295FD7CDE29D345FE933F9434A60/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122918481/B4D46F43624F249CAC03EBDA59A1D0BA13BE54C6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122918345/014DC6F36AA52C91C9395F517F591B08AFA526BC/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: 11dfd1 +GUID: 6c38e1 Grid: true GridProjection: false Hands: true @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 1.69828463 - posY: 3.66384721 - posZ: 14.2767878 - rotX: 359.949951 - rotY: 225.013229 - rotZ: 2.73441386 + posX: 1.69643342 + posY: 3.66960168 + posZ: 14.2788334 + rotX: 359.948059 + rotY: 224.998062 + rotZ: 0.0583256 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom La Fratta's Piano Key 4667e0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom La Fratta's Piano Key f988d3.yaml similarity index 59% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom La Fratta's Piano Key 4667e0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom La Fratta's Piano Key f988d3.yaml index 98d0e1c2d..9cba9c68f 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom La Fratta's Piano Key 4667e0.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom La Fratta's Piano Key f988d3.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 268900 +CardID: 275000 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2689': + '2750': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303540348998/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474708519/4F335D34C2E1B1F3EE0C2F2F5C6B761DA237475D/ + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122933175/AE972E09C0E32039F8B6C5653E807D803500DFAB/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: 4667e0 +GUID: f988d3 Grid: true GridProjection: false Hands: true @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 1.91472578 - posY: 3.70724225 - posZ: 12.3832445 - rotX: 0.141948372 - rotY: 270.0166 - rotZ: 0.222267643 + posX: 1.375324 + posY: 3.666483 + posZ: 12.5737314 + rotX: 0.254640639 + rotY: 270.0011 + rotZ: 0.351953536 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Page's Violin 4710cb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Page's Violin 4b0880.yaml similarity index 59% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Page's Violin 4710cb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Page's Violin 4b0880.yaml index d1d9c4667..b8d59cd45 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Page's Violin 4710cb.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Page's Violin 4b0880.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 268800 +CardID: 274900 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2688': + '2749': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303540348998/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700602362/919BA9C82779153D484CE3771F0012F114C01492/ + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122932560/2DFFE29765A0D15A92F0192A7F5751D135A9ED59/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: 4710cb +GUID: 4b0880 Grid: true GridProjection: false Hands: true @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 1.69653261 - posY: 3.69826746 - posZ: 14.2787743 - rotX: 359.947479 - rotY: 224.998138 - rotZ: 0.05850185 + posX: 1.69643414 + posY: 3.669504 + posZ: 14.2788334 + rotX: 359.948242 + rotY: 224.998062 + rotZ: 0.0582847 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Stage Hall b1e0d8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Stage Hall 4d0054.yaml similarity index 58% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Stage Hall b1e0d8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Stage Hall 4d0054.yaml index 20de82f64..7881a694f 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Stage Hall b1e0d8.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Stage Hall 4d0054.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 269600 +CardID: 274200 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2696': + '2742': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1016067538700621527/BB93C7C96AAB6CC6074471B38FA76609BC0D8BF3/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474720161/89E1AEEAE9AEB157E9C3663CCF5A8C90D7FCEC70/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122926096/1D3D323E8D19A830EC63D24CC2866C419FCD87BC/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122925796/0A716EE963BE1221D1C376AAF1C9204B8089E921/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: b1e0d8 +GUID: 4d0054 Grid: true GridProjection: false Hands: true @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 1.69270134 - posY: 3.69247246 - posZ: 14.2754049 - rotX: 0.466938883 - rotY: 225.026962 - rotZ: 180.073044 + posX: 1.69643271 + posY: 3.66976762 + posZ: 14.2788343 + rotX: 359.94812 + rotY: 224.998062 + rotZ: 180.058319 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Walker's Trumpet a57b93.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Walker's Trumpet 8a68dc.yaml similarity index 59% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Walker's Trumpet a57b93.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Walker's Trumpet 8a68dc.yaml index 60232a638..fc9b6ea7a 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Walker's Trumpet a57b93.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Walker's Trumpet 8a68dc.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 269000 +CardID: 275100 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2690': + '2751': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303540348998/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700603964/474DB82D444B841C247D3B88E902B85B885472DC/ + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122933901/E0BF7D42BF33FA812117EB40E8DBD0BA4511C8D1/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: a57b93 +GUID: 8a68dc Grid: true GridProjection: false Hands: true @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 1.69646013 - posY: 3.71123862 - posZ: 14.2787895 - rotX: 359.9475 - rotY: 224.998138 - rotZ: 0.0584965162 + posX: 1.69643366 + posY: 3.66958737 + posZ: 14.2788334 + rotX: 359.948151 + rotY: 224.998062 + rotZ: 0.0583274066 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Yin's Drumsticks 471a69.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Yin's Drumsticks 211916.yaml similarity index 61% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Yin's Drumsticks 471a69.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Yin's Drumsticks 211916.yaml index e2c8f7bfd..48a198275 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Yin's Drumsticks 471a69.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Yin's Drumsticks 211916.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 268700 +CardID: 274800 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2687': + '2748': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303540348998/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700601864/CAF6A4D614DA46007134550588613957831B088A/ + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122930555/392BDCAA387ECD9CCA9F5D749721788409C6A5D9/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: 471a69 +GUID: '211916' Grid: true GridProjection: false Hands: true @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 1.69643581 - posY: 3.72790051 - posZ: 14.2788363 - rotX: 359.948059 + posX: 1.69643235 + posY: 3.66983032 + posZ: 14.2788343 + rotX: 359.9482 rotY: 224.998062 - rotZ: 0.058319144 + rotZ: 0.0582821965 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Young Nightingale d9a9c4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Young Nightingale 680a2a.yaml similarity index 61% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Young Nightingale d9a9c4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Young Nightingale 680a2a.yaml index 944c6d914..86814ea41 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Young Nightingale d9a9c4.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Young Nightingale 680a2a.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 268000 +CardID: 277000 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2680': + '2770': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700570168/720ADFD2FC7A0F4DD64693A396B3B0FE317F5E28/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122947633/57D8977EFAE1F82A732513C75FA1C9E5FC48C39A/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: d9a9c4 +GUID: 680a2a Grid: true GridProjection: false Hands: true @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 1.69643521 - posY: 3.72767448 - posZ: 14.2788353 - rotX: 359.948151 + posX: 1.69643 + posY: 3.67024422 + posZ: 14.2788343 + rotX: 359.94812 rotY: 224.998062 - rotZ: 0.0583290234 + rotZ: 0.0583254062 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Backstage Rooms a980d4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Backstage Room 76f872.yaml similarity index 53% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Backstage Rooms a980d4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Backstage Room 76f872.yaml index 51d56db5e..dc6f5f460 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Backstage Rooms a980d4.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Backstage Room 76f872.yaml @@ -5,16 +5,16 @@ ColorDiffuse: r: 0.713235259 ContainedObjects: - Autoraise: true - CardID: 268700 + CardID: 274100 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2687': + '2741': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474714672/4CFBA032252B55442F6AAD850155BE27459B7763/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700615356/E19A6FA298EB472794C9D62CD1D350C0A96ED08D/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122924431/03246524CCFEE2132E420EF0AB21A51216BDA88E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122925354/6CA8501AD5414BCD92F816E17B7572CD4EAFEA20/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -22,7 +22,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 99c5c8 + GUID: 674c43 Grid: true GridProjection: false Hands: true @@ -39,27 +39,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 3.5101676 - posY: 1.65113258 - posZ: 0.174064219 - rotX: 359.919769 - rotY: 269.996948 - rotZ: 180.016922 + posX: -13.0966015 + posY: 1.61642671 + posZ: -3.40933037 + rotX: 0.043130666 + rotY: 270.0 + rotZ: 179.976074 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 269800 + CardID: 277200 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2698': + '2772': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474740935/4108C51654AD696DB1C9849B2C37FD157E2B1566/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474726692/5E2C8196476A07F723ADE1636D3BCD7DC2BD7144/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122924431/03246524CCFEE2132E420EF0AB21A51216BDA88E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122949190/8B216766EF555E65EBEE3A7F5740060D577A96DA/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -67,7 +67,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: cf3934 + GUID: c714a2 Grid: true GridProjection: false Hands: true @@ -84,27 +84,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 5.258204 - posY: 1.86216366 - posZ: 1.173213 - rotX: 357.579285 - rotY: 270.0023 - rotZ: 180.017822 + posX: -13.3618011 + posY: 1.61731184 + posZ: 12.1393461 + rotX: 359.9201 + rotY: 270.0 + rotZ: 180.016861 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 269200 + CardID: 277100 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2692': + '2771': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474717407/4108C51654AD696DB1C9849B2C37FD157E2B1566/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474717189/5BBB4B9514FFE74598C45E6BFC4BA332DEB9A208/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122924431/03246524CCFEE2132E420EF0AB21A51216BDA88E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122948710/37484964A7D79FF1BE1A87EEF70C98663945FDB7/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -112,7 +112,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: ded3d7 + GUID: 20816e Grid: true GridProjection: false Hands: true @@ -129,27 +129,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 3.16353726 - posY: 1.75803745 - posZ: -1.31705022 - rotX: 359.977875 - rotY: 270.047882 - rotZ: 178.2241 + posX: -13.3545341 + posY: 1.61648786 + posZ: 9.375462 + rotX: 359.9201 + rotY: 270.000031 + rotZ: 180.016861 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 269400 + CardID: 274000 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2694': + '2740': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474718855/4108C51654AD696DB1C9849B2C37FD157E2B1566/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474718678/B1E7ACE30B9962B85DCFB03030C741C568EC7066/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122924431/03246524CCFEE2132E420EF0AB21A51216BDA88E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122924941/E8B3036FFC088E6D7C3310213A3D34DF1AD99FA7/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -157,7 +157,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: cb1964 + GUID: d1cf1a Grid: true GridProjection: false Hands: true @@ -174,27 +174,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 3.53710628 - posY: 1.70052361 - posZ: -0.766431451 - rotX: 359.9121 - rotY: 269.983582 - rotZ: 180.01387 + posX: -13.0356884 + posY: 1.61316657 + posZ: -0.394158155 + rotX: 359.9201 + rotY: 270.000031 + rotZ: 180.016861 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 269500 + CardID: 273800 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2695': + '2738': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474719742/4108C51654AD696DB1C9849B2C37FD157E2B1566/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700620682/A1ACA9EC09BECFE1A53CDB9F175AC9037E16B2AE/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122923749/03246524CCFEE2132E420EF0AB21A51216BDA88E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122923563/03084ED3A1BBFD892394D5977CD2E72CF6F0AA18/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -202,7 +202,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 1320d4 + GUID: e663b5 Grid: true GridProjection: false Hands: true @@ -219,27 +219,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 4.177261 - posY: 1.8284514 - posZ: 0.6665632 - rotX: 359.92 - rotY: 270.0573 - rotZ: 177.005127 + posX: -13.1332912 + posY: 1.61498523 + posZ: 5.31990528 + rotX: 359.9201 + rotY: 270.000061 + rotZ: 180.016861 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 269700 + CardID: 273900 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2697': + '2739': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474739718/4CFBA032252B55442F6AAD850155BE27459B7763/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474725970/CBB2C35471583C2835CB9CDDFBFC03B252BFD2EA/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122924431/03246524CCFEE2132E420EF0AB21A51216BDA88E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122924277/AF834705283D98857A110C1E4B2CFCBACB0A5F3C/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -247,7 +247,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: f6568d + GUID: cfe3bf Grid: true GridProjection: false Hands: true @@ -264,76 +264,76 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 5.3839426 - posY: 1.86334336 - posZ: 1.15862656 - rotX: 357.515 - rotY: 270.0019 - rotZ: 180.017761 + posX: -13.1338749 + posY: 1.6141212 + posZ: 2.38288832 + rotX: 359.9201 + rotY: 270.0 + rotZ: 180.016861 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' CustomDeck: - '2687': + '2738': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474714672/4CFBA032252B55442F6AAD850155BE27459B7763/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700615356/E19A6FA298EB472794C9D62CD1D350C0A96ED08D/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122923749/03246524CCFEE2132E420EF0AB21A51216BDA88E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122923563/03084ED3A1BBFD892394D5977CD2E72CF6F0AA18/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - '2692': + '2739': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474717407/4108C51654AD696DB1C9849B2C37FD157E2B1566/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474717189/5BBB4B9514FFE74598C45E6BFC4BA332DEB9A208/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122924431/03246524CCFEE2132E420EF0AB21A51216BDA88E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122924277/AF834705283D98857A110C1E4B2CFCBACB0A5F3C/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - '2694': + '2740': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474718855/4108C51654AD696DB1C9849B2C37FD157E2B1566/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474718678/B1E7ACE30B9962B85DCFB03030C741C568EC7066/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122924431/03246524CCFEE2132E420EF0AB21A51216BDA88E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122924941/E8B3036FFC088E6D7C3310213A3D34DF1AD99FA7/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - '2695': + '2741': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474719742/4108C51654AD696DB1C9849B2C37FD157E2B1566/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700620682/A1ACA9EC09BECFE1A53CDB9F175AC9037E16B2AE/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122924431/03246524CCFEE2132E420EF0AB21A51216BDA88E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122925354/6CA8501AD5414BCD92F816E17B7572CD4EAFEA20/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - '2697': + '2771': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474739718/4CFBA032252B55442F6AAD850155BE27459B7763/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474725970/CBB2C35471583C2835CB9CDDFBFC03B252BFD2EA/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122924431/03246524CCFEE2132E420EF0AB21A51216BDA88E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122948710/37484964A7D79FF1BE1A87EEF70C98663945FDB7/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - '2698': + '2772': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474740935/4108C51654AD696DB1C9849B2C37FD157E2B1566/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474726692/5E2C8196476A07F723ADE1636D3BCD7DC2BD7144/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122924431/03246524CCFEE2132E420EF0AB21A51216BDA88E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122949190/8B216766EF555E65EBEE3A7F5740060D577A96DA/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false DeckIDs: -- 268700 -- 269800 -- 269200 -- 269400 -- 269500 -- 269700 +- 274100 +- 277200 +- 277100 +- 274000 +- 273800 +- 273900 Description: '' DragSelectable: true GMNotes: '' -GUID: a980d4 +GUID: 76f872 Grid: true GridProjection: false Hands: false @@ -344,16 +344,16 @@ LuaScript: '' LuaScriptState: '' MeasureMovement: false Name: Deck -Nickname: Backstage Rooms +Nickname: Backstage Room SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 1.69643307 - posY: 3.73861933 - posZ: 14.27883 - rotX: 359.948029 + posX: 1.69643521 + posY: 3.705511 + posZ: 14.2788334 + rotX: 359.94812 rotY: 224.998062 rotZ: 180.058334 scaleX: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Ears of the Void b1a9e1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Ears of the Void be92f6.yaml similarity index 60% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Ears of the Void b1a9e1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Ears of the Void be92f6.yaml index e1c893999..246120d7e 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Ears of the Void b1a9e1.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Ears of the Void be92f6.yaml @@ -5,16 +5,16 @@ ColorDiffuse: r: 0.713235259 ContainedObjects: - Autoraise: true - CardID: 268100 + CardID: 275600 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2681': + '2756': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474626072/064734E02D03E2B5332730EA5B5D08D28BEA138B/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122939099/92BD660091258DE1A72861C258F3B7ECE731BB92/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -22,7 +22,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 891d77 + GUID: 8a53c3 Grid: true GridProjection: false Hands: true @@ -39,27 +39,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 8.173742 - posY: 1.54199076 - posZ: 0.6073738 - rotX: 359.920258 - rotY: 270.1245 - rotZ: 0.0156369954 + posX: -1.46646476 + posY: 1.4907583 + posZ: -26.9259281 + rotX: 359.914063 + rotY: 270.062256 + rotZ: 0.105296664 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 268100 + CardID: 275600 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2681': + '2756': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474626072/064734E02D03E2B5332730EA5B5D08D28BEA138B/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122939099/92BD660091258DE1A72861C258F3B7ECE731BB92/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -67,7 +67,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 10ca48 + GUID: e72cdc Grid: true GridProjection: false Hands: true @@ -84,32 +84,32 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 8.661764 - posY: 1.70904779 - posZ: 0.306444943 - rotX: 359.917816 - rotY: 270.124481 - rotZ: 0.0172225758 + posX: -1.46575022 + posY: 1.53429973 + posZ: -26.9287815 + rotX: 359.401733 + rotY: 270.099976 + rotZ: 0.67344594 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' CustomDeck: - '2681': + '2756': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474626072/064734E02D03E2B5332730EA5B5D08D28BEA138B/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122939099/92BD660091258DE1A72861C258F3B7ECE731BB92/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false DeckIDs: -- 268100 -- 268100 +- 275600 +- 275600 Description: '' DragSelectable: true GMNotes: '' -GUID: b1a9e1 +GUID: be92f6 Grid: true GridProjection: false Hands: false @@ -126,12 +126,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 1.69300878 - posY: 3.80593038 - posZ: 14.2755842 - rotX: 355.965973 - rotY: 225.031 - rotZ: 0.07646669 + posX: 1.69643545 + posY: 3.68621683 + posZ: 14.2788334 + rotX: 359.94812 + rotY: 224.998062 + rotZ: 0.0582896359 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Heard by Something ee02ab.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Heard by Something 043b84.yaml similarity index 55% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Heard by Something ee02ab.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Heard by Something 043b84.yaml index 2e853c0f5..fbe2436f1 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Heard by Something ee02ab.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Heard by Something 043b84.yaml @@ -5,16 +5,16 @@ ColorDiffuse: r: 0.713235259 ContainedObjects: - Autoraise: true - CardID: 267200 + CardID: 275900 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2672': + '2759': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700565668/D413EB43BF33DB318F3C703AEB79AE916DFB6826/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122941120/431D4A60826B905FF708305C15E6B42415638E69/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -22,7 +22,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: c51dcd + GUID: 8a53c3 Grid: true GridProjection: false Hands: true @@ -39,27 +39,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 11.8943682 - posY: 1.53445923 - posZ: -7.310184 - rotX: 359.920441 - rotY: 269.9944 - rotZ: 0.0149213141 + posX: -6.25178528 + posY: 1.4946878 + posZ: -28.5462036 + rotX: 359.927 + rotY: 270.0 + rotZ: 359.968658 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 267100 + CardID: 275900 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2671': + '2759': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700565668/D413EB43BF33DB318F3C703AEB79AE916DFB6826/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122941120/431D4A60826B905FF708305C15E6B42415638E69/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -67,7 +67,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 056851 + GUID: 3360a5 Grid: true GridProjection: false Hands: true @@ -84,27 +84,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 12.1306257 - posY: 1.69400239 - posZ: -7.41081524 - rotX: 359.914734 - rotY: 269.90097 - rotZ: 0.0162927415 + posX: -6.608443 + posY: 1.52789617 + posZ: -28.6036758 + rotX: 0.106155768 + rotY: 269.9992 + rotZ: 359.9917 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 267100 + CardID: 275900 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2671': + '2759': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700565668/D413EB43BF33DB318F3C703AEB79AE916DFB6826/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122941120/431D4A60826B905FF708305C15E6B42415638E69/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -112,7 +112,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 48e106 + GUID: 8a53c3 Grid: true GridProjection: false Hands: true @@ -129,41 +129,33 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 7.9626565 - posY: 1.70596921 - posZ: 11.7210264 - rotX: 359.936249 - rotY: 270.1038 - rotZ: 359.977844 + posX: -6.23164558 + posY: 1.57663846 + posZ: -28.63645 + rotX: 359.9207 + rotY: 269.999969 + rotZ: 0.01623555 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' CustomDeck: - '2671': + '2759': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700565668/D413EB43BF33DB318F3C703AEB79AE916DFB6826/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - '2672': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700565668/D413EB43BF33DB318F3C703AEB79AE916DFB6826/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122941120/431D4A60826B905FF708305C15E6B42415638E69/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false DeckIDs: -- 267200 -- 267100 -- 267100 +- 275900 +- 275900 +- 275900 Description: '' DragSelectable: true GMNotes: '' -GUID: ee02ab +GUID: 043b84 Grid: true GridProjection: false Hands: false @@ -180,12 +172,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 1.69647038 - posY: 3.710472 - posZ: 14.2787933 - rotX: 359.947449 - rotY: 224.9981 - rotZ: 0.058470156 + posX: 1.34349144 + posY: 3.68519664 + posZ: 12.6417427 + rotX: 0.3864027 + rotY: 270.001862 + rotZ: 0.485737562 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Musicians 0b8236.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Musician Enemies 2eea25.yaml similarity index 54% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Musicians 0b8236.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Musician Enemies 2eea25.yaml index d8b46facc..0f01cf09c 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Musicians 0b8236.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Musician Enemies 2eea25.yaml @@ -5,16 +5,16 @@ ColorDiffuse: r: 0.713235259 ContainedObjects: - Autoraise: true - CardID: 266500 + CardID: 274400 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2665': + '2744': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474622420/B5D3AE81798F685B40989CA676CBC4B2973600CF/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700552497/1906274946E32B6B20FD2696BFD1FD103F7A3CA6/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122928279/1E877F4D5C234BFC2C3E3A7ACE89E6A194D3C25C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122928049/FC8A4948E7A5737C62FCED55CB3BFFCAED41263A/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -22,7 +22,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 132eb9 + GUID: b20623 Grid: true GridProjection: false Hands: true @@ -39,27 +39,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 1.678428 - posY: 1.85361135 - posZ: 9.831564 - rotX: 359.9411 - rotY: 269.992462 - rotZ: -0.004902039 + posX: -10.4014587 + posY: 1.612143 + posZ: 8.604762 + rotX: 359.920227 + rotY: 269.622467 + rotZ: 180.0174 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266400 + CardID: 274500 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2664': + '2745': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474621630/24EFFA0BAD3E74E70F7C1895C72D86BB0D0B526A/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700551872/C7C1D484F144676D59C4337B8CF82D512398DC62/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122929245/D3AACACF1FA88952DD23CC32478AD72DF75FCFE6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122928802/C8B94C5230EC499A3021D3A1F39B3CA27C3DD731/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -67,7 +67,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 0fa50f + GUID: 1bf155 Grid: true GridProjection: false Hands: true @@ -84,27 +84,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 2.042945 - posY: 1.996721 - posZ: 9.621342 - rotX: 359.986572 - rotY: 269.983215 - rotZ: 359.954132 + posX: -10.2915325 + posY: 1.60925722 + posZ: -0.6753388 + rotX: 359.9201 + rotY: 269.996765 + rotZ: 180.016876 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266300 + CardID: 274600 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '2746': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1016067538700551408/7E64CACE8D7521C1F2103691E8BF2F4C8FDC87E4/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700550940/7DA34995105813149D41F1A6FA40F252CCAFF31C/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122929943/E5C937D598696C2FE21B0A56795582B70D02D3EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122929675/66F196B21767CE0318062022608FFE8B52D0BC59/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -112,7 +112,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: fef231 + GUID: d38a95 Grid: true GridProjection: false Hands: true @@ -129,27 +129,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 2.29409456 - posY: 2.01366758 - posZ: 9.809417 - rotX: 359.935516 - rotY: 269.997955 - rotZ: 0.00277390517 + posX: -10.1095819 + posY: 1.60987234 + posZ: 2.275499 + rotX: 359.920074 + rotY: 270.054047 + rotZ: 180.0168 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266200 + CardID: 274300 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': + '2743': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474620526/69F281473219FBF57E35A86AD246BF4C10769988/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700550180/CEB9567ACCBBBD31158F51BCE9A7238C5B046CCE/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122927506/365F99AE00FD1461FA83B18EB691ECF3DEA7C9F9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122927252/07B09DAF38A0A33198139C4D534A2AAFC3B2035C/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -157,7 +157,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 2247d7 + GUID: 1d3195 Grid: true GridProjection: false Hands: true @@ -174,58 +174,58 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 2.61659551 - posY: 1.98686969 - posZ: 10.36967 - rotX: 359.9287 - rotY: 270.026 - rotZ: 358.2349 + posX: -9.969094 + posY: 1.610618 + posZ: 5.473062 + rotX: 359.920074 + rotY: 270.153442 + rotZ: 180.016663 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' CustomDeck: - '2662': + '2743': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474620526/69F281473219FBF57E35A86AD246BF4C10769988/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700550180/CEB9567ACCBBBD31158F51BCE9A7238C5B046CCE/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122927506/365F99AE00FD1461FA83B18EB691ECF3DEA7C9F9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122927252/07B09DAF38A0A33198139C4D534A2AAFC3B2035C/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - '2663': + '2744': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1016067538700551408/7E64CACE8D7521C1F2103691E8BF2F4C8FDC87E4/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700550940/7DA34995105813149D41F1A6FA40F252CCAFF31C/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122928279/1E877F4D5C234BFC2C3E3A7ACE89E6A194D3C25C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122928049/FC8A4948E7A5737C62FCED55CB3BFFCAED41263A/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - '2664': + '2745': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474621630/24EFFA0BAD3E74E70F7C1895C72D86BB0D0B526A/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700551872/C7C1D484F144676D59C4337B8CF82D512398DC62/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122929245/D3AACACF1FA88952DD23CC32478AD72DF75FCFE6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122928802/C8B94C5230EC499A3021D3A1F39B3CA27C3DD731/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - '2665': + '2746': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474622420/B5D3AE81798F685B40989CA676CBC4B2973600CF/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700552497/1906274946E32B6B20FD2696BFD1FD103F7A3CA6/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122929943/E5C937D598696C2FE21B0A56795582B70D02D3EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122929675/66F196B21767CE0318062022608FFE8B52D0BC59/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false DeckIDs: -- 266500 -- 266400 -- 266300 -- 266200 +- 274400 +- 274500 +- 274600 +- 274300 Description: '' DragSelectable: true GMNotes: '' -GUID: 0b8236 +GUID: 2eea25 Grid: true GridProjection: false Hands: false @@ -236,18 +236,18 @@ LuaScript: '' LuaScriptState: '' MeasureMovement: false Name: Deck -Nickname: Musicians +Nickname: Musician Enemies SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 1.69646978 - posY: 3.70904326 - posZ: 14.2787943 - rotX: 359.947449 - rotY: 224.9981 - rotZ: 0.058467295 + posX: 1.69643521 + posY: 3.69589782 + posZ: 14.2788334 + rotX: 359.94812 + rotY: 224.998062 + rotZ: 180.058289 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Stuck in Your Head 4b9eb6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Stuck in Your Head 6c0e6c.yaml similarity index 60% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Stuck in Your Head 4b9eb6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Stuck in Your Head 6c0e6c.yaml index cc9285f63..0f8ce92e5 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Stuck in Your Head 4b9eb6.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/Deck Stuck in Your Head 6c0e6c.yaml @@ -5,16 +5,16 @@ ColorDiffuse: r: 0.713235259 ContainedObjects: - Autoraise: true - CardID: 269100 + CardID: 275200 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2691': + '2752': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303540348998/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700603377/E984B095D5421B9A559AC26BD4CB5CCE238FB646/ + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122934607/6092C8ACFFB805C65A9F51D09E47D0570BA541EA/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -22,7 +22,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 830dd1 + GUID: bd6390 Grid: true GridProjection: false Hands: true @@ -39,27 +39,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 3.5109663 - posY: 1.64346385 - posZ: 4.445556 - rotX: 359.9752 - rotY: 270.002167 - rotZ: 359.6143 + posX: -8.672729 + posY: 1.60248876 + posZ: -16.009306 + rotX: 359.9204 + rotY: 270.0006 + rotZ: 0.0169083811 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 269100 + CardID: 275200 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2691': + '2752': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303540348998/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700603377/E984B095D5421B9A559AC26BD4CB5CCE238FB646/ + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122934607/6092C8ACFFB805C65A9F51D09E47D0570BA541EA/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -67,7 +67,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 946ac7 + GUID: 7f9536 Grid: true GridProjection: false Hands: true @@ -84,27 +84,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 3.381383 - posY: 1.66352677 - posZ: 3.60807419 - rotX: 359.951874 - rotY: 269.999817 - rotZ: 0.08841065 + posX: -8.837386 + posY: 1.64368546 + posZ: -15.7027884 + rotX: 359.918854 + rotY: 269.999847 + rotZ: 0.0150094759 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 269100 + CardID: 275200 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2691': + '2752': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303540348998/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700603377/E984B095D5421B9A559AC26BD4CB5CCE238FB646/ + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122934607/6092C8ACFFB805C65A9F51D09E47D0570BA541EA/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -112,7 +112,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: ba2359 + GUID: f73e45 Grid: true GridProjection: false Hands: true @@ -129,27 +129,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 3.29863858 - posY: 1.832957 - posZ: 4.046995 - rotX: 0.173379838 - rotY: 269.9975 - rotZ: 359.9625 + posX: -8.140635 + posY: 1.67665422 + posZ: -16.13267 + rotX: 359.919739 + rotY: 269.9971 + rotZ: 0.01761754 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 269100 + CardID: 275200 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2691': + '2752': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303540348998/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700603377/E984B095D5421B9A559AC26BD4CB5CCE238FB646/ + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122934607/6092C8ACFFB805C65A9F51D09E47D0570BA541EA/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -157,7 +157,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 7461af + GUID: 2b6e25 Grid: true GridProjection: false Hands: true @@ -174,34 +174,34 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 3.20083928 - posY: 1.97977448 - posZ: 3.75424 - rotX: 0.245988846 - rotY: 269.9965 - rotZ: 0.0608789027 + posX: -8.593784 + posY: 1.68676567 + posZ: -16.5311756 + rotX: 359.920532 + rotY: 269.999268 + rotZ: 0.018303996 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' CustomDeck: - '2691': + '2752': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303540348998/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700603377/E984B095D5421B9A559AC26BD4CB5CCE238FB646/ + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122934607/6092C8ACFFB805C65A9F51D09E47D0570BA541EA/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false DeckIDs: -- 269100 -- 269100 -- 269100 -- 269100 +- 275200 +- 275200 +- 275200 +- 275200 Description: '' DragSelectable: true GMNotes: '' -GUID: 4b9eb6 +GUID: 6c0e6c Grid: true GridProjection: false Hands: false @@ -218,12 +218,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 1.69643712 - posY: 3.725368 - posZ: 14.2788363 - rotX: 359.948059 + posX: 1.69643557 + posY: 3.69584084 + posZ: 14.2788334 + rotX: 359.948242 rotY: 224.998062 - rotZ: 0.0583018623 + rotZ: 0.0582804456 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_PDF The Symphony of Erich Zann Scenario Guide 267216.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_PDF The Symphony of Erich Zann Scenario Guide 267216.yaml new file mode 100644 index 000000000..3cbf585e4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_PDF The Symphony of Erich Zann Scenario Guide 267216.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomPDF: + PDFPage: 0 + PDFPageOffset: 0 + PDFPassword: '' + PDFUrl: http://cloud-3.steamusercontent.com/ugc/1496838227122963257/792611CC019FD357E2A6FBBF5CF848E960704304/ +Description: '' +DragSelectable: true +GMNotes: '' +GUID: '267216' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_PDF +Nickname: The Symphony of Erich Zann Scenario Guide +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.336395 + posY: 1.501254 + posZ: 22.8492527 + rotX: 359.9201 + rotY: 270.0247 + rotZ: 0.01683781 + scaleX: 2.18 + scaleY: 1.0 + scaleZ: 2.18 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile 1d53b9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile 1d53b9.yaml new file mode 100644 index 000000000..5c455ea70 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile 1d53b9.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 1d53b9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -27.141 + posY: 1.62037885 + posZ: 3.66540074 + rotX: 359.93158 + rotY: 315.000336 + rotZ: 359.9554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile 5abb04.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile 5abb04.yaml new file mode 100644 index 000000000..0a80e3c14 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile 5abb04.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 5abb04 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -26.9153 + posY: 1.62120545 + posZ: 7.54979944 + rotX: 359.9201 + rotY: 270.0092 + rotZ: 0.0168571826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..1269c18a1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile 7234af.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -20.3189 + posY: 1.60978448 + posZ: -0.0135005554 + rotX: 359.9201 + rotY: 270.0094 + rotZ: 0.0168546829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile c582af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile c582af.yaml new file mode 100644 index 000000000..89b3aa70d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile c582af.yaml @@ -0,0 +1,135 @@ +Autoraise: true +ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/vppt2my.png + ImageURL: https://i.imgur.com/vppt2my.png + WidthScale: 0.0 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: c582af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/HyfE8m8.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7933121 + posY: 1.63758957 + posZ: 2.038383 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168742146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.6045295 + g: 0.6045295 + r: 0.6045295 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png + ImageURL: https://i.imgur.com/dHKBLoD.png + WidthScale: 0.0 + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8217163 + posY: 1.99356019 + posZ: 0.4159239 + rotX: 359.9201 + rotY: 272.9828 + rotZ: 0.01687373 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -23.6764984 + posY: 1.615605 + posZ: 3.86000013 + rotX: 359.983154 + rotY: 0.000354884454 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile The Symphony of Erich Zann f4c93e.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile The Symphony of Erich Zann f4c93e.ttslua similarity index 92% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile The Symphony of Erich Zann f4c93e.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile The Symphony of Erich Zann f4c93e.ttslua index 46732a4a2..9cecde9ef 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile The Symphony of Erich Zann f4c93e.ttslua +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile The Symphony of Erich Zann f4c93e.ttslua @@ -1,4 +1,4 @@ -name = 'Excelsior' +name = 'Erich Zann' function onLoad() Global.call('createSetupButtons', {object=self, key=name}) diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile The Symphony of Erich Zann f4c93e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile The Symphony of Erich Zann f4c93e.yaml similarity index 90% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile The Symphony of Erich Zann f4c93e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile The Symphony of Erich Zann f4c93e.yaml index 1976a08a0..d616772c9 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile The Symphony of Erich Zann f4c93e.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile The Symphony of Erich Zann f4c93e.yaml @@ -32,12 +32,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.9715 - posY: 1.58271575 - posZ: -14.663003 + posX: -3.95810056 + posY: 1.58267343 + posZ: -14.7436066 rotX: 359.919739 - rotY: 270.030029 - rotZ: 0.0167958084 + rotY: 270.029968 + rotZ: 0.0167957973 scaleX: 2.2 scaleY: 1.0 scaleZ: 2.2 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Deck ed44f7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Deck Act Deck 389f2f.yaml similarity index 50% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Deck ed44f7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Deck Act Deck 389f2f.yaml index 8572ef080..e21d19c52 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Deck ed44f7.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Deck Act Deck 389f2f.yaml @@ -5,16 +5,16 @@ ColorDiffuse: r: 0.713235259 ContainedObjects: - Autoraise: true - CardID: 269600 + CardID: 273200 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2696': + '2732': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474749775/2C20F1FFE5728E64B234A484767EF46D0CB52067/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474749615/8F9DB945812A26A4215E794C23717AA701F96909/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122917728/54D099F62A3930EDED4DB231F04FD01C0C3BA296/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122917592/3B9966AB5EE8FD4BEF3DAA4A5B8337FCDBCE23FC/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -22,7 +22,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: bcada8 + GUID: '642055' Grid: true GridProjection: false Hands: true @@ -34,32 +34,32 @@ ContainedObjects: MeasureMovement: false Name: CardCustom Nickname: '' - SidewaysCard: false + SidewaysCard: true Snap: true Sticky: true Tooltip: true Transform: - posX: -2.68876433 - posY: 1.65546644 - posZ: -5.04881334 - rotX: 359.923584 - rotY: 269.9887 - rotZ: 0.0205234233 - scaleX: 0.7375908 + posX: 2.93643212 + posY: 1.58966351 + posZ: -4.324253 + rotX: 0.0162624586 + rotY: 180.555237 + rotZ: 0.0791272148 + scaleX: 1.0 scaleY: 1.0 - scaleZ: 0.7375908 + scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 270400 + CardID: 273100 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2704': + '2731': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474783957/1B6BD9A7521CAD3849ECC4A2C4C319A0D32640FD/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474749023/AAD78F6CC49D086DF9C3D93613DE7213E1B42324/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122916962/0280E57987E13DA1A53C2ED0C4EC898EEEAB12F8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122916770/C763F987EF9A70E27681E0A6A77FD1563D2E5CA0/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -67,7 +67,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 58f62a + GUID: 6c38e1 Grid: true GridProjection: false Hands: true @@ -79,32 +79,32 @@ ContainedObjects: MeasureMovement: false Name: CardCustom Nickname: '' - SidewaysCard: false + SidewaysCard: true Snap: true Sticky: true Tooltip: true Transform: - posX: -2.688248 - posY: 1.86179364 - posZ: -5.04399 - rotX: 359.957275 - rotY: 269.996155 - rotZ: 2.14255428 - scaleX: 0.7375908 + posX: 2.78736019 + posY: 1.63052893 + posZ: -4.54469156 + rotX: 0.01421005 + rotY: 179.995987 + rotZ: 0.07688537 + scaleX: 1.0 scaleY: 1.0 - scaleZ: 0.7375908 + scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 269400 + CardID: 272700 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2694': + '2727': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474748583/DCA1EBC360DD64E1C8A118E3B5EA94A30D928C18/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700639848/10DB80B7353284CED31D91E617509E997AC82576/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122915799/92FB9B7C8C4B108309360C3F569DC221B514CD06/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122915617/E42E1AF58C98AF6DFF12FC7C4B45A682A864FC71/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -112,7 +112,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 784feb + GUID: 964d32 Grid: true GridProjection: false Hands: true @@ -129,49 +129,49 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -2.68790841 - posY: 1.82144117 - posZ: -5.04829741 - rotX: 359.9431 - rotY: 264.1222 - rotZ: 0.001674406 - scaleX: 0.7375908 + posX: 2.856022 + posY: 1.66443729 + posZ: -4.68211937 + rotX: 0.016289562 + rotY: 180.000031 + rotZ: 0.07967696 + scaleX: 1.0 scaleY: 1.0 - scaleZ: 0.7375908 + scaleZ: 1.0 XmlUI: '' CustomDeck: - '2694': + '2727': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474748583/DCA1EBC360DD64E1C8A118E3B5EA94A30D928C18/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700639848/10DB80B7353284CED31D91E617509E997AC82576/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122915799/92FB9B7C8C4B108309360C3F569DC221B514CD06/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122915617/E42E1AF58C98AF6DFF12FC7C4B45A682A864FC71/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - '2696': + '2731': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474749775/2C20F1FFE5728E64B234A484767EF46D0CB52067/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474749615/8F9DB945812A26A4215E794C23717AA701F96909/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122916962/0280E57987E13DA1A53C2ED0C4EC898EEEAB12F8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122916770/C763F987EF9A70E27681E0A6A77FD1563D2E5CA0/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - '2704': + '2732': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474783957/1B6BD9A7521CAD3849ECC4A2C4C319A0D32640FD/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474749023/AAD78F6CC49D086DF9C3D93613DE7213E1B42324/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122917728/54D099F62A3930EDED4DB231F04FD01C0C3BA296/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122917592/3B9966AB5EE8FD4BEF3DAA4A5B8337FCDBCE23FC/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false DeckIDs: -- 269600 -- 270400 -- 269400 +- 273200 +- 273100 +- 272700 Description: '' DragSelectable: true GMNotes: '' -GUID: ed44f7 +GUID: 389f2f Grid: true GridProjection: false Hands: false @@ -182,19 +182,19 @@ LuaScript: '' LuaScriptState: '' MeasureMovement: false Name: Deck -Nickname: '' -SidewaysCard: false +Nickname: Act Deck +SidewaysCard: true Snap: true Sticky: true Tooltip: true Transform: - posX: -2.68879986 - posY: 1.6191169 - posZ: -5.04880142 - rotX: 359.919739 - rotY: 269.9885 - rotZ: 0.01685344 - scaleX: 0.7375908 + posX: -2.6886 + posY: 1.61911666 + posZ: -5.048501 + rotX: 0.0168286115 + rotY: 180.00499 + rotZ: 0.08025741 + scaleX: 1.0 scaleY: 1.0 - scaleZ: 0.7375908 + scaleZ: 1.0 XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Deck Agenda Deck e89352.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Deck Agenda Deck e89352.yaml new file mode 100644 index 000000000..4e153dcd3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Deck Agenda Deck e89352.yaml @@ -0,0 +1,200 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 272800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2728': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122914975/8C54B3A2182AEB52F0CA4AEA2AD63207AA32414F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122914848/E981B769A4A8FCBCC84AB6C93727BC6247F63B01/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: bfce4c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.72473 + posY: 1.59898341 + posZ: 0.373333633 + rotX: 0.0170015 + rotY: 179.951859 + rotZ: 0.0796219856 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2729': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122914324/95B3601D7B14E9EAD70D6AA8E132F006B42D5134/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122914184/A57F6C27C2A59094283D7DBC605A256A48D2697D/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 945a7d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.724715 + posY: 1.64461958 + posZ: 0.373322368 + rotX: 0.0153908981 + rotY: 179.988266 + rotZ: 0.07951251 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2724': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122913755/03C6354D0ED72EAAFAB54BDB3A57427D396DA629/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122913643/49DB0F7BB86CA81A4A90D4E61BFB20E49EC543ED/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 68b92d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.72470975 + posY: 1.70452023 + posZ: 0.373321265 + rotX: 0.0134696914 + rotY: 179.999756 + rotZ: 358.218323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2724': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122913755/03C6354D0ED72EAAFAB54BDB3A57427D396DA629/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122913643/49DB0F7BB86CA81A4A90D4E61BFB20E49EC543ED/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2728': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122914975/8C54B3A2182AEB52F0CA4AEA2AD63207AA32414F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122914848/E981B769A4A8FCBCC84AB6C93727BC6247F63B01/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + '2729': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1496838227122914324/95B3601D7B14E9EAD70D6AA8E132F006B42D5134/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122914184/A57F6C27C2A59094283D7DBC605A256A48D2697D/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false +DeckIDs: +- 272800 +- 272900 +- 272400 +Description: '' +DragSelectable: true +GMNotes: '' +GUID: e89352 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7247 + posY: 1.62076044 + posZ: 0.373300582 + rotX: 0.0169031564 + rotY: 179.9518 + rotZ: 0.08024173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Deck Encounter Deck 7927f6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Deck Encounter Deck c8a1e7.yaml similarity index 55% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Deck Encounter Deck 7927f6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Deck Encounter Deck c8a1e7.yaml index c721670be..21d14bbed 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Deck Encounter Deck 7927f6.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Deck Encounter Deck c8a1e7.yaml @@ -5,16 +5,16 @@ ColorDiffuse: r: 0.713235259 ContainedObjects: - Autoraise: true - CardID: 268400 + CardID: 276200 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2684': + '2762': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474644141/3B6744DE3370C464299D87DA1AB212E3E2CF5F0D/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122943219/7F34F14EA066214432E06B412976B449A425C317/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -22,7 +22,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 5cd288 + GUID: '929434' Grid: true GridProjection: false Hands: true @@ -39,27 +39,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 3.39393163 - posY: 1.6982013 - posZ: 0.9743967 - rotX: 359.9198 - rotY: 269.973236 - rotZ: 0.00168559072 + posX: -9.946281 + posY: 1.53221488 + posZ: -31.8018761 + rotX: 0.161452264 + rotY: 269.9993 + rotZ: 359.6658 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 267000 + CardID: 275500 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2670': + '2755': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700565186/B998913B81D3FFD1B358385779953158615A4B18/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122938478/293CFB8A04EF68ECCD2BB7B10C809601663415E4/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -67,7 +67,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: c1fab3 + GUID: 2a9614 Grid: true GridProjection: false Hands: true @@ -84,27 +84,162 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 9.169652 - posY: 1.53748715 - posZ: -9.976947 + posX: -2.76662755 + posY: 1.52532339 + posZ: -25.16048 + rotX: 359.9176 + rotY: 269.999664 + rotZ: 359.956726 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2761': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122942624/3D4B663C90130E7F93B452AF03FF914B59D7AC00/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8a53c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.835652 + posY: 1.50081956 + posZ: -27.72891 + rotX: 359.919 + rotY: 269.9997 + rotZ: 0.0267312322 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2761': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122942624/3D4B663C90130E7F93B452AF03FF914B59D7AC00/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 361e50 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.09932 + posY: 1.53477991 + posZ: -27.4069538 + rotX: 359.874054 + rotY: 269.9999 + rotZ: 359.907532 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2773': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122949905/E04DEEF81B2C4E43EC021591E08362C0F8826F5E/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '811873' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.290951 + posY: 1.536284 + posZ: -35.7166328 rotX: 359.920258 - rotY: 269.9917 - rotZ: 0.0159313269 + rotY: 269.999481 + rotZ: 0.0170117654 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 267400 + CardID: 276900 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2674': + '2769': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700566160/7B8DA6001224B416692D654614EE4EAEF2BEFE01/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122946622/677E4503CF0C8635C49D7BF24FD41EFC1A57FBFE/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -112,7 +247,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: ad9e40 + GUID: f70a1f Grid: true GridProjection: false Hands: true @@ -129,27 +264,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 8.211897 - posY: 1.54103088 - posZ: -2.338191 - rotX: 359.920654 - rotY: 270.003571 - rotZ: 0.0132048652 + posX: -15.371583 + posY: 1.60351539 + posZ: -40.1707 + rotX: 0.329238027 + rotY: 270.008026 + rotZ: 0.2129295 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 267600 + CardID: 276500 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2676': + '2765': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700596385/CDD3EF96F57825B4E12621AA1A19D79294D5039E/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122944981/FB59D6A65E0ED0FDB6A2B6DA45BD040AF12A691A/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -157,7 +292,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: f4e3c1 + GUID: 8a53c3 Grid: true GridProjection: false Hands: true @@ -174,27 +309,297 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 9.097483 - posY: 1.541638 - posZ: 3.76509428 - rotX: 359.920227 + posX: -12.58144 + posY: 1.50202 + posZ: -36.13486 + rotX: 359.9201 + rotY: 269.998779 + rotZ: 0.01731995 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2767': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122945968/732C9D55B41BFE79C72AE76039B7F7100F0C5119/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a89c36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.0108633 + posY: 1.52358365 + posZ: -37.06852 + rotX: 0.5641611 + rotY: 270.01178 + rotZ: 359.951447 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2764': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122944426/0F1E1BDEC0BE235BE088208EB1744CA0607396E8/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8a53c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.2545824 + posY: 1.50430334 + posZ: -31.7359657 + rotX: 359.9197 + rotY: 270.0 + rotZ: 0.020365512 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2755': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122938478/293CFB8A04EF68ECCD2BB7B10C809601663415E4/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8a53c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.66347933 + posY: 1.49143159 + posZ: -24.730917 + rotX: 359.921326 + rotY: 270.0 + rotZ: 0.00923521351 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2766': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122945430/405BE3102ED50E831BD4C1AA4A43873898971F92/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8fb4e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.5466738 + posY: 1.50877857 + posZ: -38.59175 + rotX: -0.00413634675 + rotY: 270.001434 + rotZ: 359.7281 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2773': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122949905/E04DEEF81B2C4E43EC021591E08362C0F8826F5E/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '205040' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.14666986 + posY: 1.48789656 + posZ: -34.660923 + rotX: 359.920166 + rotY: 270.001953 + rotZ: 0.0166068468 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122942036/10B067CE6048EFB85B200A1F022D10CD04C7CB33/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 8a53c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.228241 + posY: 1.4937607 + posZ: -31.6144161 + rotX: 359.927032 rotY: 270.000031 - rotZ: 0.0161633249 + rotZ: 359.969116 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 267700 + CardID: 275400 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2677': + '2754': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700567506/68D0CD914BED3674191D526B57C80457F635868B/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122937409/3780C53A588BB27B21961BD8E37843FF0EDB34F8/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -202,7 +607,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 2c971f + GUID: 50db61 Grid: true GridProjection: false Hands: true @@ -219,27 +624,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 12.79081 - posY: 1.53555655 - posZ: 0.6278674 - rotX: 359.920319 - rotY: 270.008484 - rotZ: 0.0155714825 + posX: -3.085102 + posY: 1.52586913 + posZ: -22.1441269 + rotX: 0.0335290171 + rotY: 269.999847 + rotZ: 359.911224 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 268300 + CardID: 276000 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2683': + '2760': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474643225/D5225B8195BA8CD32E1DF4F3AD72F61E4DDA5116/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122942036/10B067CE6048EFB85B200A1F022D10CD04C7CB33/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -247,7 +652,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 42d044 + GUID: a5bf08 Grid: true GridProjection: false Hands: true @@ -264,27 +669,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 3.01652169 - posY: 1.74695671 - posZ: 1.74520445 - rotX: 359.9235 - rotY: 269.9737 - rotZ: 359.981018 + posX: -6.45598936 + posY: 1.52704906 + posZ: -31.7215347 + rotX: 0.0372031853 + rotY: 269.999939 + rotZ: 0.009729327 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 268200 + CardID: 275700 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2682': + '2757': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700561786/81D2AE8D9460829737059BD2E200CA19461D8F64/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122939830/D6AF7DF8FB22FAD98DFDD5A0D521D963AC14409C/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -292,7 +697,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 8bb216 + GUID: 8a53c3 Grid: true GridProjection: false Hands: true @@ -309,477 +714,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 8.165214 - posY: 1.539056 - posZ: -9.442857 - rotX: 359.9202 - rotY: 269.84787 - rotZ: 0.0168717038 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 268600 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2686': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474668282/32FBF628EC83D250E2688A459BE2B318B81D92CD/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3ad301 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 6.849497 - posY: 1.54370117 - posZ: 0.113148071 - rotX: 359.9202 - rotY: 269.9928 - rotZ: 0.0164803863 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 267000 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2670': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700565186/B998913B81D3FFD1B358385779953158615A4B18/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5e9965 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 8.674835 - posY: 1.70503 - posZ: -10.2631416 - rotX: 359.921448 - rotY: 269.9917 - rotZ: 0.014256998 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 267800 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2678': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700567925/3C802BBB583CCBA2D25620610D7B46675FDC3A9C/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a678fc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.2495909 - posY: 1.53477371 - posZ: -4.01320076 - rotX: 359.921936 - rotY: 269.9985 - rotZ: 0.004241711 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 267500 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2675': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700566594/6DB311F3B1E098B8363DBC2CE0235CBAA0390B61/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '504319' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.25016 - posY: 1.53259408 - posZ: -12.0136633 - rotX: 359.920258 - rotY: 269.9987 - rotZ: 0.0159914233 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 267900 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2679': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700569754/671DC85F95BDDDBA0AE2CB3A6C9F48892412ED0E/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: bbba50 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 7.96069241 - posY: 1.72266281 - posZ: -3.339644 - rotX: 359.92 - rotY: 270.071655 - rotZ: 0.0164183751 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 267800 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2678': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700567925/3C802BBB583CCBA2D25620610D7B46675FDC3A9C/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0640b6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 12.2496862 - posY: 1.6694572 - posZ: -4.01367426 - rotX: 359.91568 - rotY: 269.9911 - rotZ: 0.0289669968 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266700 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2667': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700562581/1E98F18790D8996F54092CDB499F23E1E3051122/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 445da1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 8.281316 - posY: 1.54042089 - posZ: -4.16689825 - rotX: 359.9204 - rotY: 269.991669 - rotZ: 0.0149057554 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 267600 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2676': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700596385/CDD3EF96F57825B4E12621AA1A19D79294D5039E/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 295eff - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 9.02928 - posY: 1.70946789 - posZ: 3.72328138 - rotX: 359.922 - rotY: 270.000031 - rotZ: 0.016027106 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 268600 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2686': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474668282/32FBF628EC83D250E2688A459BE2B318B81D92CD/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9d3143 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 6.400805 - posY: 1.71250772 - posZ: 0.07043371 - rotX: 359.921021 - rotY: 269.9928 - rotZ: 0.0150628313 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 267900 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2679': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700569754/671DC85F95BDDDBA0AE2CB3A6C9F48892412ED0E/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 35ee71 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 7.96067333 - posY: 1.70882893 - posZ: -3.33964 + posX: -1.9679755 + posY: 1.48885632 + posZ: -30.807 rotX: 359.919922 - rotY: 270.071655 - rotZ: 0.0150990486 + rotY: 269.999817 + rotZ: 0.0208396 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 267300 + CardID: 275800 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2673': + '2758': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700566160/7B8DA6001224B416692D654614EE4EAEF2BEFE01/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122940550/D5A12E0F4E16CD5E6E7EFA9F30DF1EDC44207413/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -787,7 +742,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 6f6119 + GUID: 7bb1ef Grid: true GridProjection: false Hands: true @@ -804,27 +759,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 8.175704 - posY: 1.68404436 - posZ: -2.65816021 - rotX: 359.9333 - rotY: 269.9942 - rotZ: -0.00355608272 + posX: -6.59242535 + posY: 1.529846 + posZ: -24.906971 + rotX: 359.847748 + rotY: 269.999817 + rotZ: 0.0521674231 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 267500 + CardID: 276300 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2675': + '2763': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700566594/6DB311F3B1E098B8363DBC2CE0235CBAA0390B61/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122943818/A5F516370A49A6841F580701589425EFBA1A0622/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -832,7 +787,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 8607ce + GUID: 8a53c3 Grid: true GridProjection: false Hands: true @@ -849,27 +804,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 12.25011 - posY: 1.69749582 - posZ: -12.0136509 - rotX: 359.91983 - rotY: 269.994751 - rotZ: 0.0177201144 + posX: -13.607296 + posY: 1.50576282 + posZ: -26.60884 + rotX: 359.9251 + rotY: 269.9999 + rotZ: 359.984436 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266600 + CardID: 276900 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2666': + '2769': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700561563/B11A1F0717673494329BE06588D340B842BAB262/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122946622/677E4503CF0C8635C49D7BF24FD41EFC1A57FBFE/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -877,7 +832,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 97089d + GUID: 9e83bc Grid: true GridProjection: false Hands: true @@ -894,27 +849,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 6.98297167 - posY: 1.69638538 - posZ: -0.3719042 - rotX: 359.925964 - rotY: 269.991516 - rotZ: 0.002416091 + posX: -15.3715754 + posY: 1.58007526 + posZ: -40.17021 + rotX: 0.3030251 + rotY: 270.008118 + rotZ: 0.3550315 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 268500 + CardID: 276200 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2685': + '2762': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474644671/77B231B8E0590D03140394E121CC22C716C7E3BE/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122943219/7F34F14EA066214432E06B412976B449A425C317/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -922,7 +877,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: da2d20 + GUID: 8a53c3 Grid: true GridProjection: false Hands: true @@ -939,27 +894,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 3.12170315 - posY: 1.64893162 - posZ: 0.3302735 - rotX: 359.919464 - rotY: 269.999756 - rotZ: 0.018882649 + posX: -9.899715 + posY: 1.49953449 + posZ: -31.9202576 + rotX: 359.919983 + rotY: 269.999939 + rotZ: 0.0180185121 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 268200 + CardID: 275800 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2682': + '2758': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700561786/81D2AE8D9460829737059BD2E200CA19461D8F64/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122940550/D5A12E0F4E16CD5E6E7EFA9F30DF1EDC44207413/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -967,7 +922,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: '842772' + GUID: 8a53c3 Grid: true GridProjection: false Hands: true @@ -984,27 +939,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 8.134882 - posY: 1.70635462 - posZ: -9.496382 - rotX: 359.919861 - rotY: 269.84787 - rotZ: 0.0147926239 + posX: -6.9459 + posY: 1.49694383 + posZ: -24.688921 + rotX: 359.926147 + rotY: 270.000336 + rotZ: 359.9778 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266600 + CardID: 276900 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2666': + '2769': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700561563/B11A1F0717673494329BE06588D340B842BAB262/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122946622/677E4503CF0C8635C49D7BF24FD41EFC1A57FBFE/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -1012,7 +967,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: a03675 + GUID: 680a2a Grid: true GridProjection: false Hands: true @@ -1029,27 +984,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 7.43317366 - posY: 1.54275739 - posZ: -0.103585988 - rotX: 359.920715 - rotY: 269.9917 - rotZ: 0.01217336 + posX: -15.2785435 + posY: 1.52823377 + posZ: -40.07058 + rotX: 0.430487961 + rotY: 270.007263 + rotZ: 0.163527474 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 267700 + CardID: 275400 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2677': + '2754': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700567506/68D0CD914BED3674191D526B57C80457F635868B/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122937409/3780C53A588BB27B21961BD8E37843FF0EDB34F8/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -1057,7 +1012,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: d39e29 + GUID: 8a53c3 Grid: true GridProjection: false Hands: true @@ -1074,27 +1029,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 12.6538143 - posY: 1.70224285 - posZ: 0.48901847 - rotX: 359.923035 - rotY: 270.008484 - rotZ: 0.0160702746 + posX: -2.63318133 + posY: 1.492145 + posZ: -21.9579124 + rotX: 359.921661 + rotY: 269.999939 + rotZ: 0.005558408 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266700 + CardID: 276300 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2667': + '2763': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700562581/1E98F18790D8996F54092CDB499F23E1E3051122/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122943818/A5F516370A49A6841F580701589425EFBA1A0622/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -1102,7 +1057,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 3cea9c + GUID: 3fca34 Grid: true GridProjection: false Hands: true @@ -1119,27 +1074,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 8.26493549 - posY: 1.7078073 - posZ: -4.601125 - rotX: 359.922852 - rotY: 269.991669 - rotZ: 0.0181055889 + posX: -13.30057 + posY: 1.54065216 + posZ: -26.93526 + rotX: 359.871948 + rotY: 269.999939 + rotZ: 0.0390740745 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 267900 + CardID: 276400 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2679': + '2764': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700569754/671DC85F95BDDDBA0AE2CB3A6C9F48892412ED0E/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122944426/0F1E1BDEC0BE235BE088208EB1744CA0607396E8/ NumHeight: 1 NumWidth: 1 Type: 0 @@ -1147,7 +1102,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 14e334 + GUID: 29a5c2 Grid: true GridProjection: false Hands: true @@ -1164,168 +1119,205 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 8.035485 - posY: 1.54111338 - posZ: -3.06526136 - rotX: 359.920135 - rotY: 270.071655 - rotZ: 0.0164640453 + posX: -13.3674641 + posY: 1.540568 + posZ: -31.37377 + rotX: 359.907654 + rotY: 269.999969 + rotZ: 359.976349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2757': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122939830/D6AF7DF8FB22FAD98DFDD5A0D521D963AC14409C/ + NumHeight: 1 + NumWidth: 1 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cc8dbf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.021655 + posY: 1.52163661 + posZ: -30.6677265 + rotX: 359.8519 + rotY: 269.999847 + rotZ: 359.936218 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' CustomDeck: - '2666': + '2754': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700561563/B11A1F0717673494329BE06588D340B842BAB262/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122937409/3780C53A588BB27B21961BD8E37843FF0EDB34F8/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - '2667': + '2755': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700562581/1E98F18790D8996F54092CDB499F23E1E3051122/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122938478/293CFB8A04EF68ECCD2BB7B10C809601663415E4/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - '2670': + '2757': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700565186/B998913B81D3FFD1B358385779953158615A4B18/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122939830/D6AF7DF8FB22FAD98DFDD5A0D521D963AC14409C/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - '2673': + '2758': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700566160/7B8DA6001224B416692D654614EE4EAEF2BEFE01/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122940550/D5A12E0F4E16CD5E6E7EFA9F30DF1EDC44207413/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - '2674': + '2760': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700566160/7B8DA6001224B416692D654614EE4EAEF2BEFE01/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122942036/10B067CE6048EFB85B200A1F022D10CD04C7CB33/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - '2675': + '2761': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700566594/6DB311F3B1E098B8363DBC2CE0235CBAA0390B61/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122942624/3D4B663C90130E7F93B452AF03FF914B59D7AC00/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - '2676': + '2762': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700596385/CDD3EF96F57825B4E12621AA1A19D79294D5039E/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122943219/7F34F14EA066214432E06B412976B449A425C317/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - '2677': + '2763': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700567506/68D0CD914BED3674191D526B57C80457F635868B/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122943818/A5F516370A49A6841F580701589425EFBA1A0622/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - '2678': + '2764': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700567925/3C802BBB583CCBA2D25620610D7B46675FDC3A9C/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122944426/0F1E1BDEC0BE235BE088208EB1744CA0607396E8/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - '2679': + '2765': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700569754/671DC85F95BDDDBA0AE2CB3A6C9F48892412ED0E/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122944981/FB59D6A65E0ED0FDB6A2B6DA45BD040AF12A691A/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - '2682': + '2766': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700561786/81D2AE8D9460829737059BD2E200CA19461D8F64/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122945430/405BE3102ED50E831BD4C1AA4A43873898971F92/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - '2683': + '2767': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474643225/D5225B8195BA8CD32E1DF4F3AD72F61E4DDA5116/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122945968/732C9D55B41BFE79C72AE76039B7F7100F0C5119/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - '2684': + '2769': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474644141/3B6744DE3370C464299D87DA1AB212E3E2CF5F0D/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122946622/677E4503CF0C8635C49D7BF24FD41EFC1A57FBFE/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false - '2685': + '2773': BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474644671/77B231B8E0590D03140394E121CC22C716C7E3BE/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - '2686': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303539146639/424E94AE6A0C55BE6155598F3DC55F23E81197A8/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474668282/32FBF628EC83D250E2688A459BE2B318B81D92CD/ + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1496838227122949905/E04DEEF81B2C4E43EC021591E08362C0F8826F5E/ NumHeight: 1 NumWidth: 1 Type: 0 UniqueBack: false DeckIDs: -- 268400 -- 267000 -- 267400 -- 267600 -- 267700 -- 268300 -- 268200 -- 268600 -- 267000 -- 267800 -- 267500 -- 267900 -- 267800 -- 266700 -- 267600 -- 268600 -- 267900 -- 267300 -- 267500 -- 266600 -- 268500 -- 268200 -- 266600 -- 267700 -- 266700 -- 267900 +- 276200 +- 275500 +- 276100 +- 276100 +- 277300 +- 276900 +- 276500 +- 276700 +- 276400 +- 275500 +- 276600 +- 277300 +- 276000 +- 275400 +- 276000 +- 275700 +- 275800 +- 276300 +- 276900 +- 276200 +- 275800 +- 276900 +- 275400 +- 276300 +- 276400 +- 275700 Description: '' DragSelectable: true GMNotes: '' -GUID: 7927f6 +GUID: c8a1e7 Grid: true GridProjection: false Hands: false @@ -1342,9 +1334,9 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.92760015 + posX: -3.92760038 posY: 1.73475027 - posZ: 5.757101 + posZ: 5.757102 rotX: 359.919739 rotY: 270.0 rotZ: 180.016815 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49.yaml index d390d6de1..3d2252a3d 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49.yaml @@ -69,12 +69,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 54.1220665 - posY: 8.640338 - posZ: -109.351395 + posX: -0.466133267 + posY: 3.34515667 + posZ: -27.7416954 rotX: 359.983246 rotY: 270.000061 - rotZ: 0.00353690656 + rotZ: 0.003536907 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Card Bishop's Brook Bridge 51527f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Card Bishop's Brook Bridge 51527f.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Card Bishop's Brook Bridge 51527f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Card Bishop's Brook Bridge 51527f.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Card Country Farm 383672.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Card Country Farm 383672.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Card Country Farm 383672.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Card Country Farm 383672.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Card Country Farm 5942b3.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Card Country Farm 5942b3.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Card Country Farm 5942b3.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Card Country Farm 5942b3.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Card Osborn's General Store 641bdb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Card Osborn's General Store 641bdb.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Card Osborn's General Store 641bdb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Card Osborn's General Store 641bdb.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Card Scenario 8480f8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Card Scenario 8480f8.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Card Scenario 8480f8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Card Scenario 8480f8.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Card Scenario 98d4a2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Card Scenario 98d4a2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Card Scenario 98d4a2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Card Scenario 98d4a2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Banishing Tome 744c53.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Banishing Tome 744c53.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Banishing Tome 744c53.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Banishing Tome 744c53.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Caught off Guard 2ffe30.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Caught off Guard 2ffe30.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Caught off Guard 2ffe30.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Caught off Guard 2ffe30.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Dr. Francis Morgan f38494.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Dr. Francis Morgan f38494.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Dr. Francis Morgan f38494.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Dr. Francis Morgan f38494.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Dr. Henry Armitage a82b6d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Dr. Henry Armitage a82b6d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Dr. Henry Armitage a82b6d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Dr. Henry Armitage a82b6d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Powder of Iban Ghazi 44808e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Powder of Iban Ghazi 44808e.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Powder of Iban Ghazi 44808e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Powder of Iban Ghazi 44808e.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Wilbur's Chantings bae9d6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Wilbur's Chantings bae9d6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Wilbur's Chantings bae9d6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Wilbur's Chantings bae9d6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Deck Dunwich Horror Encounter Deck bb89ae.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Deck Dunwich Horror Encounter Deck bb89ae.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Deck Dunwich Horror Encounter Deck bb89ae.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Deck Dunwich Horror Encounter Deck bb89ae.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Deck Set-aside Enemies 8050fd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Deck Set-aside Enemies 8050fd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Deck Set-aside Enemies 8050fd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Deck Set-aside Enemies 8050fd.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Deck Set-aside Locations 380a98.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Deck Set-aside Locations 380a98.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Deck Set-aside Locations 380a98.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Deck Set-aside Locations 380a98.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Deck Wilbur Whately Encounter Deck dff8b5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Deck Wilbur Whately Encounter Deck dff8b5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Deck Wilbur Whately Encounter Deck dff8b5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Deck Wilbur Whately Encounter Deck dff8b5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile 0f3e93.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile 0f3e93.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile 0f3e93.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile 0f3e93.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile Core Difficulty 2261a5.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile Core Difficulty 2261a5.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile Core Difficulty 2261a5.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile Core Difficulty 2261a5.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile Core Difficulty 2261a5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile Core Difficulty 2261a5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile Core Difficulty 2261a5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile Core Difficulty 2261a5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile Credits 46b65b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile Credits 46b65b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile Credits 46b65b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile Credits 46b65b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Deck Act Deck 57318a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Deck Act Deck 57318a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Deck Act Deck 57318a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Deck Act Deck 57318a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Deck Agenda Deck c6305b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Deck Agenda Deck c6305b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Deck Agenda Deck c6305b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Deck Agenda Deck c6305b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Deck Main Encounter Deck 491279.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Deck Main Encounter Deck 491279.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Deck Main Encounter Deck 491279.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Deck Main Encounter Deck 491279.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Notecard 2ec534.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Notecard 2ec534.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in the Woods c90c49/Notecard 2ec534.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The Thing in the Woods c90c49/Notecard 2ec534.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469.yaml similarity index 74% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469.yaml index 7de90dd71..9042f63f9 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469.yaml @@ -19,20 +19,14 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: -- !include 'Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard - 1708ee.yaml' - !include 'Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523.yaml' -- !include 'Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard - 3671bf.yaml' -- !include 'Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert - 38fcc6.yaml' - !include 'Custom_Model_Bag The War of the Worlds 19d469/Custom_PDF War of the Worlds Campaign Guide 480756.yaml' - !include 'Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1.yaml' -- !include 'Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy - e9f3b1.yaml' +- !include 'Custom_Model_Bag The War of the Worlds 19d469/Custom_Tile War of the Worlds + b5928a.yaml' - !include 'Custom_Model_Bag The War of the Worlds 19d469/Custom_Token War of the Worlds Campaign Log eda22b.yaml' - !include 'Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First @@ -65,7 +59,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: false LuaScript: !include 'Custom_Model_Bag The War of the Worlds 19d469.ttslua' -LuaScriptState: '{"ml":{"1708ee":{"lock":false,"pos":{"x":8.985,"y":1.2765,"z":-25.4264},"rot":{"x":359.9767,"y":355.3276,"z":359.9217}},"313523":{"lock":false,"pos":{"x":10.762,"y":1.4665,"z":-0.0039},"rot":{"x":359.9201,"y":270.0055,"z":0.0169}},"3671bf":{"lock":false,"pos":{"x":9.0068,"y":1.2755,"z":-28.7444},"rot":{"x":359.9831,"y":0.001,"z":359.92}},"38fcc6":{"lock":false,"pos":{"x":9.0367,"y":1.2744,"z":-32.2131},"rot":{"x":359.9832,"y":0.0001,"z":359.92}},"480756":{"lock":false,"pos":{"x":12.2534,"y":1.4727,"z":28.0062},"rot":{"x":359.9201,"y":269.9944,"z":0.0169}},"a0d2b1":{"lock":false,"pos":{"x":10.5681,"y":1.4641,"z":-8.947},"rot":{"x":359.9201,"y":270.0628,"z":0.0168}},"e9f3b1":{"lock":false,"pos":{"x":9.0726,"y":1.2773,"z":-22.1196},"rot":{"x":359.9831,"y":0.001,"z":359.92}},"eda22b":{"lock":false,"pos":{"x":-1.4655,"y":1.5756,"z":-26.9305},"rot":{"x":359.9201,"y":270.0098,"z":0.0169}},"f70a0d":{"lock":false,"pos":{"x":10.9036,"y":1.4689,"z":8.8896},"rot":{"x":359.9201,"y":269.999,"z":0.0169}}}}' +LuaScriptState: '{"ml":{"1708ee":{"lock":false,"pos":{"x":8.985,"y":1.2765,"z":-25.4264},"rot":{"x":359.9767,"y":355.3276,"z":359.9217}},"313523":{"lock":false,"pos":{"x":10.762,"y":1.4665,"z":-0.0039},"rot":{"x":359.9201,"y":270.0055,"z":0.0169}},"3671bf":{"lock":false,"pos":{"x":9.0068,"y":1.2755,"z":-28.7444},"rot":{"x":359.9831,"y":0.001,"z":359.92}},"38fcc6":{"lock":false,"pos":{"x":9.0367,"y":1.2744,"z":-32.2131},"rot":{"x":359.9832,"y":0.0001,"z":359.92}},"480756":{"lock":false,"pos":{"x":12.2534,"y":1.4727,"z":28.0062},"rot":{"x":359.9201,"y":269.9944,"z":0.0169}},"a0d2b1":{"lock":false,"pos":{"x":10.5681,"y":1.4641,"z":-8.947},"rot":{"x":359.9201,"y":270.0628,"z":0.0168}},"b5928a":{"lock":false,"pos":{"x":-3.8482,"y":1.5825,"z":-14.7051},"rot":{"x":359.9197,"y":270.003,"z":0.0168}},"e9f3b1":{"lock":false,"pos":{"x":9.0726,"y":1.2773,"z":-22.1196},"rot":{"x":359.9831,"y":0.001,"z":359.92}},"eda22b":{"lock":false,"pos":{"x":-1.4655,"y":1.5756,"z":-26.9305},"rot":{"x":359.9201,"y":270.0098,"z":0.0169}},"f70a0d":{"lock":false,"pos":{"x":10.9036,"y":1.4689,"z":8.8896},"rot":{"x":359.9201,"y":269.999,"z":0.0169}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 @@ -75,12 +69,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 12.5484 - posY: 3.32407355 - posZ: -31.5532837 - rotX: 1.4593877e-06 - rotY: 45.0319557 - rotZ: 2.13039038e-06 + posX: 0.344942451 + posY: 3.34257364 + posZ: -32.6722755 + rotX: 359.983246 + rotY: 269.999817 + rotZ: 0.00353766023 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d.yaml similarity index 55% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d.yaml index dd3c4a042..3217fb930 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d.yaml @@ -19,26 +19,25 @@ ColorDiffuse: g: 1.0 r: 1.0 ContainedObjects: -- !include 'Custom_Model_Bag 1 First Contact f70a0d/Card Token Effects 1c7d23.yaml' -- !include 'Custom_Model_Bag 1 First Contact f70a0d/Card Plainsboro Field 27948c.yaml' -- !include 'Custom_Model_Bag 1 First Contact f70a0d/Card Millstone River 49a00b.yaml' +- !include 'Custom_Model_Bag 1 First Contact f70a0d/Card Token Effects 033a2d.yaml' +- !include 'Custom_Model_Bag 1 First Contact f70a0d/Card Princeton Junction 145dbc.yaml' - !include 'Custom_Model_Bag 1 First Contact f70a0d/Deck Agenda Deck 4d0fa5.yaml' -- !include 'Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 6436eb.yaml' +- !include 'Custom_Model_Bag 1 First Contact f70a0d/Card State Militia Field HQ 5b9b85.yaml' - !include 'Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 6f7d7d.yaml' - !include 'Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 7234af.yaml' - !include 'Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are proceeding without permission 7d8753.yaml' -- !include 'Custom_Model_Bag 1 First Contact f70a0d/Deck Encounter Deck 7f3d54.yaml' +- !include 'Custom_Model_Bag 1 First Contact f70a0d/Card Millstone River 84f32c.yaml' - !include 'Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 8c1268.yaml' +- !include 'Custom_Model_Bag 1 First Contact f70a0d/Card Plainsboro Field 9c89ac.yaml' +- !include 'Custom_Model_Bag 1 First Contact f70a0d/Deck Encounter Deck a14980.yaml' - !include 'Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile a84218.yaml' - !include 'Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile aef61c.yaml' - !include 'Custom_Model_Bag 1 First Contact f70a0d/Custom_Model_Bag Set-aside b19a6b.yaml' -- !include 'Custom_Model_Bag 1 First Contact f70a0d/Card Princeton Junction deda1f.yaml' -- !include 'Custom_Model_Bag 1 First Contact f70a0d/Card Wilmuth Farm e92c4b.yaml' - !include 'Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile eb56cf.yaml' +- !include 'Custom_Model_Bag 1 First Contact f70a0d/Card Wilmuth Farm ebe292.yaml' - !include 'Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are cooperating with the militia f4eb10.yaml' -- !include 'Custom_Model_Bag 1 First Contact f70a0d/Card State Militia Field HQ fa3287.yaml' CustomMesh: CastShadows: true ColliderURL: '' @@ -67,7 +66,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: false LuaScript: !include 'Custom_Model_Bag 1 First Contact f70a0d.ttslua' -LuaScriptState: '{"ml":{"1c7d23":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4414},"rot":{"x":359.9197,"y":269.9984,"z":0.0168}},"27948c":{"lock":false,"pos":{"x":-30.2243,"y":1.6361,"z":-3.83},"rot":{"x":359.9201,"y":270,"z":180.0169}},"49a00b":{"lock":false,"pos":{"x":-30.2243,"y":1.6384,"z":3.86},"rot":{"x":359.9201,"y":270,"z":180.0169}},"4d0fa5":{"lock":false,"pos":{"x":-2.7247,"y":1.6208,"z":0.3733},"rot":{"x":0.0168,"y":179.9999,"z":0.0803}},"6436eb":{"lock":false,"pos":{"x":-32.0494,"y":1.6262,"z":-0.0812},"rot":{"x":0.0169,"y":179.9974,"z":0.08}},"6f7d7d":{"lock":false,"pos":{"x":-33.7186,"y":1.628,"z":-1.904},"rot":{"x":359.9224,"y":300.0158,"z":359.9747}},"7234af":{"lock":false,"pos":{"x":-36.7734,"y":1.6339,"z":3.86},"rot":{"x":0.0168,"y":180.0159,"z":0.08}},"7d8753":{"lock":false,"pos":{"x":2.3699,"y":1.3921,"z":-3.2837},"rot":{"x":359.9832,"y":0,"z":359.9197}},"7f3d54":{"lock":false,"pos":{"x":-3.9278,"y":1.7444,"z":5.7572},"rot":{"x":359.9197,"y":269.9993,"z":180.0168}},"8c1268":{"lock":false,"pos":{"x":-33.5,"y":1.63,"z":5.9474},"rot":{"x":359.9224,"y":300.0063,"z":359.9747}},"a84218":{"lock":false,"pos":{"x":-33.4607,"y":1.6264,"z":-5.8547},"rot":{"x":359.9392,"y":240.0125,"z":0.0545}},"aef61c":{"lock":false,"pos":{"x":-36.7733,"y":1.6317,"z":-3.83},"rot":{"x":0.0169,"y":179.9992,"z":0.0799}},"b19a6b":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.2789},"rot":{"x":359.9551,"y":225.0016,"z":0.0687}},"deda1f":{"lock":false,"pos":{"x":-36.7732,"y":1.6486,"z":7.57},"rot":{"x":359.9201,"y":270,"z":180.0169}},"e92c4b":{"lock":false,"pos":{"x":-36.7733,"y":1.6441,"z":-7.7001},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"eb56cf":{"lock":false,"pos":{"x":-33.6661,"y":1.629,"z":1.8964},"rot":{"x":359.9391,"y":240.1148,"z":0.0544}},"f4eb10":{"lock":false,"pos":{"x":2.5139,"y":1.3938,"z":3.1084},"rot":{"x":359.9832,"y":0.0012,"z":359.9197}},"fa3287":{"lock":false,"pos":{"x":-36.7732,"y":1.6464,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}}}}' +LuaScriptState: '{"ml":{"033a2d":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":270.0024,"z":0.0168}},"145dbc":{"lock":false,"pos":{"x":-36.7732,"y":1.6486,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"4d0fa5":{"lock":false,"pos":{"x":-2.7247,"y":1.6208,"z":0.3733},"rot":{"x":0.0168,"y":179.9999,"z":0.0803}},"5b9b85":{"lock":false,"pos":{"x":-36.7731,"y":1.6463,"z":-0.0189},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"6f7d7d":{"lock":false,"pos":{"x":-33.7186,"y":1.6279,"z":-1.904},"rot":{"x":359.9224,"y":300.0157,"z":359.9746}},"7234af":{"lock":false,"pos":{"x":-36.7734,"y":1.6339,"z":3.86},"rot":{"x":0.0168,"y":180.0158,"z":0.0799}},"7d8753":{"lock":false,"pos":{"x":2.3699,"y":1.3921,"z":-3.2837},"rot":{"x":359.9832,"y":0,"z":359.9197}},"84f32c":{"lock":false,"pos":{"x":-30.2243,"y":1.6383,"z":3.86},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"8c1268":{"lock":false,"pos":{"x":-33.5,"y":1.6299,"z":5.9474},"rot":{"x":359.9224,"y":300.0062,"z":359.9747}},"9c89ac":{"lock":false,"pos":{"x":-30.2242,"y":1.6361,"z":-3.83},"rot":{"x":359.9201,"y":269.9999,"z":180.0168}},"a14980":{"lock":false,"pos":{"x":-3.9275,"y":1.7444,"z":5.7587},"rot":{"x":359.9197,"y":269.9995,"z":180.0168}},"a84218":{"lock":false,"pos":{"x":-33.4607,"y":1.6264,"z":-5.8547},"rot":{"x":359.9392,"y":240.0125,"z":0.0545}},"aef61c":{"lock":false,"pos":{"x":-36.7733,"y":1.6316,"z":-3.83},"rot":{"x":0.0168,"y":179.9992,"z":0.0799}},"b19a6b":{"lock":false,"pos":{"x":1.6966,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":225.0036,"z":0.0687}},"eb56cf":{"lock":false,"pos":{"x":-33.6661,"y":1.629,"z":1.8964},"rot":{"x":359.9391,"y":240.1148,"z":0.0544}},"ebe292":{"lock":false,"pos":{"x":-36.7733,"y":1.6441,"z":-7.7},"rot":{"x":359.9201,"y":270,"z":180.0168}},"f4eb10":{"lock":false,"pos":{"x":2.5139,"y":1.3938,"z":3.1084},"rot":{"x":359.9832,"y":0.0011,"z":359.9197}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 @@ -82,7 +81,7 @@ Transform: posZ: 8.889604 rotX: 359.920135 rotY: 269.999 - rotZ: 0.016875118 + rotZ: 0.0168751422 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are cooperating with the militia f4eb10.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are cooperating with the militia f4eb10.yaml similarity index 90% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are cooperating with the militia f4eb10.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are cooperating with the militia f4eb10.yaml index c9d607a4a..912415a77 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are cooperating with the militia f4eb10.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are cooperating with the militia f4eb10.yaml @@ -8,7 +8,7 @@ ContainedObjects: Deck 15af5a.yaml' - !include 'Bag The investigators are cooperating with the militia f4eb10/Custom_Tile a99ddd.yaml' - !include 'Bag The investigators are cooperating with the militia f4eb10/Deck Collaboration - 105e6d.yaml' + 33bead.yaml' Description: '' DragSelectable: true GMNotes: '' @@ -30,11 +30,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 2.513947 - posY: 1.39381981 - posZ: 3.10845375 + posX: 2.51390147 + posY: 1.39381957 + posZ: 3.1084013 rotX: 359.983154 - rotY: 0.000197347545 + rotY: 0.00113857957 rotZ: 359.919678 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are cooperating with the militia f4eb10/Custom_Tile a99ddd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are cooperating with the militia f4eb10/Custom_Tile a99ddd.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are cooperating with the militia f4eb10/Custom_Tile a99ddd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are cooperating with the militia f4eb10/Custom_Tile a99ddd.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are cooperating with the militia f4eb10/Deck Act Deck 15af5a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are cooperating with the militia f4eb10/Deck Act Deck 15af5a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are cooperating with the militia f4eb10/Deck Act Deck 15af5a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are cooperating with the militia f4eb10/Deck Act Deck 15af5a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are cooperating with the militia f4eb10/Deck Collaboration 105e6d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are cooperating with the militia f4eb10/Deck Collaboration 33bead.yaml similarity index 69% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are cooperating with the militia f4eb10/Deck Collaboration 105e6d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are cooperating with the militia f4eb10/Deck Collaboration 33bead.yaml index 4092ef3b5..42afa5ee4 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are cooperating with the militia f4eb10/Deck Collaboration 105e6d.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are cooperating with the militia f4eb10/Deck Collaboration 33bead.yaml @@ -5,16 +5,16 @@ ColorDiffuse: r: 0.713235259 ContainedObjects: - Autoraise: true - CardID: 266208 + CardID: 267306 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': - BackIsHidden: false + '2673': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ NumHeight: 5 NumWidth: 5 Type: 0 @@ -22,7 +22,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: d793fc + GUID: 9db829 Grid: true GridProjection: false Hands: true @@ -39,27 +39,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -9.569613 - posY: 1.61199057 - posZ: 12.0452824 - rotX: 359.919861 - rotY: 269.998779 - rotZ: 0.0164544173 + posX: -13.1413822 + posY: 1.74350929 + posZ: 3.01568913 + rotX: 359.952057 + rotY: 270.000977 + rotZ: 181.14624 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266207 + CardID: 267307 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': - BackIsHidden: false + '2673': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ NumHeight: 5 NumWidth: 5 Type: 0 @@ -67,7 +67,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: '883351' + GUID: 2c9f53 Grid: true GridProjection: false Hands: true @@ -84,27 +84,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -9.762524 - posY: 1.65473831 - posZ: 12.0574961 - rotX: 359.953766 - rotY: 269.999634 - rotZ: 0.0147625254 + posX: -13.2747087 + posY: 1.7678169 + posZ: 2.599782 + rotX: 1.44897926 + rotY: 270.045776 + rotZ: 181.265762 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266206 + CardID: 267308 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': - BackIsHidden: false + '2673': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ NumHeight: 5 NumWidth: 5 Type: 0 @@ -112,7 +112,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 2ae014 + GUID: 9e6db1 Grid: true GridProjection: false Hands: true @@ -129,27 +129,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -9.379912 - posY: 1.68782032 - posZ: 11.8834629 - rotX: 359.9203 - rotY: 270.0011 - rotZ: 0.0164005589 + posX: -12.9636326 + posY: 1.72399259 + posZ: 2.908643 + rotX: 359.952057 + rotY: 270.000977 + rotZ: 181.146973 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266211 + CardID: 267309 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': - BackIsHidden: false + '2673': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ NumHeight: 5 NumWidth: 5 Type: 0 @@ -157,7 +157,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: eab59d + GUID: f3a797 Grid: true GridProjection: false Hands: true @@ -174,126 +174,126 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -11.4553823 - posY: 1.61371887 - posZ: 8.96575 + posX: -12.7581348 + posY: 1.73464537 + posZ: 2.59381056 + rotX: 359.943237 + rotY: 270.127441 + rotZ: 183.362579 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2673': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ + NumHeight: 5 + NumWidth: 5 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 15308e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gap in Defenses + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.8473644 + posY: 1.66569614 + posZ: 2.563394 + rotX: 359.952057 + rotY: 269.999756 + rotZ: 180.615768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2673': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ + NumHeight: 5 + NumWidth: 5 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c1a71d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Gap in Defenses + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.1990948 + posY: 1.61428714 + posZ: 2.79687643 rotX: 359.9201 - rotY: 270.0001 - rotZ: 0.01686534 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266210 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ - NumHeight: 5 - NumWidth: 5 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f6e13c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Gap in Defenses - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -11.3793888 - posY: 1.66069019 - posZ: 8.872352 - rotX: 0.07183797 - rotY: 270.000061 - rotZ: -0.00403267937 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266209 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ - NumHeight: 5 - NumWidth: 5 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3adbef - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Gap in Defenses - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -11.2418089 - posY: 1.68430758 - posZ: 8.716642 - rotX: 359.95108 - rotY: 270.0001 - rotZ: 0.0105379736 + rotY: 270.0003 + rotZ: 180.016815 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' CustomDeck: - '2662': - BackIsHidden: false + '2673': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ NumHeight: 5 NumWidth: 5 Type: 0 UniqueBack: false DeckIDs: -- 266208 -- 266207 -- 266206 -- 266211 -- 266210 -- 266209 +- 267306 +- 267307 +- 267308 +- 267309 +- 267310 +- 267311 Description: '' DragSelectable: true GMNotes: '' -GUID: 105e6d +GUID: 33bead Grid: true GridProjection: false Hands: false @@ -310,12 +310,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 2.35891414 - posY: 3.7150476 - posZ: 3.04568052 - rotX: 0.121478945 - rotY: 270.000244 - rotZ: 180.140182 + posX: 2.40273333 + posY: 3.70441484 + posZ: 2.28878784 + rotX: 359.976624 + rotY: 269.990234 + rotZ: 180.795166 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are proceeding without permission 7d8753.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are proceeding without permission 7d8753.yaml similarity index 89% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are proceeding without permission 7d8753.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are proceeding without permission 7d8753.yaml index c4b6418a9..4160e7252 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are proceeding without permission 7d8753.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are proceeding without permission 7d8753.yaml @@ -8,7 +8,7 @@ ContainedObjects: Deck dd430a.yaml' - !include 'Bag The investigators are proceeding without permission 7d8753/Custom_Tile 29080c.yaml' - !include 'Bag The investigators are proceeding without permission 7d8753/Deck Circumvention - ac86fe.yaml' + b7093d.yaml' Description: '' DragSelectable: true GMNotes: '' @@ -30,11 +30,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 2.369902 - posY: 1.39214349 - posZ: -3.2837 + posX: 2.36990118 + posY: 1.39214325 + posZ: -3.28369975 rotX: 359.983154 - rotY: -5.295669e-05 + rotY: -7.515255e-05 rotZ: 359.919678 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are proceeding without permission 7d8753/Custom_Tile 29080c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are proceeding without permission 7d8753/Custom_Tile 29080c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are proceeding without permission 7d8753/Custom_Tile 29080c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are proceeding without permission 7d8753/Custom_Tile 29080c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are proceeding without permission 7d8753/Deck Act Deck dd430a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are proceeding without permission 7d8753/Deck Act Deck dd430a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are proceeding without permission 7d8753/Deck Act Deck dd430a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are proceeding without permission 7d8753/Deck Act Deck dd430a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are proceeding without permission 7d8753/Deck Circumvention ac86fe.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are proceeding without permission 7d8753/Deck Circumvention b7093d.yaml similarity index 69% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are proceeding without permission 7d8753/Deck Circumvention ac86fe.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are proceeding without permission 7d8753/Deck Circumvention b7093d.yaml index 641a4fc24..b8fa55a2d 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are proceeding without permission 7d8753/Deck Circumvention ac86fe.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Bag The investigators are proceeding without permission 7d8753/Deck Circumvention b7093d.yaml @@ -5,16 +5,16 @@ ColorDiffuse: r: 0.713235259 ContainedObjects: - Autoraise: true - CardID: 266205 + CardID: 267300 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': - BackIsHidden: false + '2673': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ NumHeight: 5 NumWidth: 5 Type: 0 @@ -22,142 +22,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 3d2b74 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Caught in the Crossfire - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -9.960013 - posY: 1.61165667 - posZ: 9.095993 - rotX: 359.920563 - rotY: 269.999756 - rotZ: 0.01643033 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266204 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ - NumHeight: 5 - NumWidth: 5 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 734f3b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Caught in the Crossfire - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -9.816773 - posY: 1.65362811 - posZ: 9.117961 - rotX: 359.9196 - rotY: 269.9998 - rotZ: 0.0122260638 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266203 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ - NumHeight: 5 - NumWidth: 5 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: d178eb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Caught in the Crossfire - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -10.0341654 - posY: 1.68786907 - posZ: 9.038305 - rotX: 359.920135 - rotY: 269.999878 - rotZ: 0.0163126569 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266200 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2662': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ - NumHeight: 5 - NumWidth: 5 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c91ec7 + GUID: '592505' Grid: true GridProjection: false Hands: true @@ -174,27 +39,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -9.96213 - posY: 1.6973983 - posZ: 9.025966 - rotX: 359.920074 - rotY: 269.999847 - rotZ: 0.0162457936 + posX: -13.4169531 + posY: 1.73918974 + posZ: 5.364081 + rotX: 359.952057 + rotY: 270.0008 + rotZ: 179.051743 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266201 + CardID: 267301 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': - BackIsHidden: false + '2673': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ NumHeight: 5 NumWidth: 5 Type: 0 @@ -202,7 +67,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 71c13b + GUID: 6bd431 Grid: true GridProjection: false Hands: true @@ -219,27 +84,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -9.938076 - posY: 1.707019 - posZ: 9.100223 - rotX: 359.9204 - rotY: 269.999847 - rotZ: 0.016950151 + posX: -13.1700773 + posY: 1.79794693 + posZ: 5.21333647 + rotX: 359.952026 + rotY: 269.996765 + rotZ: 175.495392 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266202 + CardID: 267302 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': - BackIsHidden: false + '2673': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ NumHeight: 5 NumWidth: 5 Type: 0 @@ -247,7 +112,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 73f76b + GUID: 9bc7a4 Grid: true GridProjection: false Hands: true @@ -264,36 +129,171 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -9.702637 - posY: 1.71633434 - posZ: 9.034084 - rotX: 359.920349 - rotY: 269.999359 - rotZ: 0.0166807845 + posX: -12.9899855 + posY: 1.82883859 + posZ: 5.08432341 + rotX: 1.39110363 + rotY: 269.868927 + rotZ: 175.378036 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2673': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ + NumHeight: 5 + NumWidth: 5 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a93f82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Caught in the Crossfire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.96269 + posY: 1.70685 + posZ: 5.252264 + rotX: 359.952026 + rotY: 270.001251 + rotZ: 180.895554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2673': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ + NumHeight: 5 + NumWidth: 5 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f92428 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Caught in the Crossfire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.078578 + posY: 1.679198 + posZ: 5.09993029 + rotX: 359.9524 + rotY: 269.9993 + rotZ: 181.216278 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2673': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ + NumHeight: 5 + NumWidth: 5 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '813275' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Caught in the Crossfire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.1931763 + posY: 1.6149857 + posZ: 5.20223951 + rotX: 359.9201 + rotY: 270.0009 + rotZ: 180.016815 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' CustomDeck: - '2662': - BackIsHidden: false + '2673': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ NumHeight: 5 NumWidth: 5 Type: 0 UniqueBack: false DeckIDs: -- 266205 -- 266204 -- 266203 -- 266200 -- 266201 -- 266202 +- 267300 +- 267301 +- 267302 +- 267303 +- 267304 +- 267305 Description: '' DragSelectable: true GMNotes: '' -GUID: ac86fe +GUID: b7093d Grid: true GridProjection: false Hands: false @@ -310,12 +310,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 2.61188126 - posY: 3.71051168 - posZ: -3.65230656 - rotX: 359.8533 - rotY: 269.999542 - rotZ: 180.608063 + posX: 2.99469066 + posY: 3.70337 + posZ: -3.86955166 + rotX: 359.5853 + rotY: 269.9986 + rotZ: 180.621048 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Millstone River 49a00b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Millstone River 84f32c.yaml similarity index 75% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Millstone River 49a00b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Millstone River 84f32c.yaml index 9e32e1d75..df54d2c7a 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Millstone River 49a00b.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Millstone River 84f32c.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 266304 +CardID: 267704 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '2677': BackIsHidden: false BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361192017590/DF260119CF5543DA0521050C4546D3E3DBD4F27F/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192016816/6EAB1ACE847070B1D92AE6A8F96777F786F75796/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996739107/FF72C830993E9874655F239919533A802D3892DF/ NumHeight: 2 NumWidth: 3 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: 49a00b +GUID: 84f32c Grid: true GridProjection: false Hands: true @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -30.2243 - posY: 1.63838756 - posZ: 3.86000085 + posY: 1.63834023 + posZ: 3.86000061 rotX: 359.9201 - rotY: 270.000031 - rotZ: 180.016861 + rotY: 269.999939 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Plainsboro Field 27948c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Plainsboro Field 9c89ac.yaml similarity index 75% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Plainsboro Field 27948c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Plainsboro Field 9c89ac.yaml index f765deae7..71cfd086c 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Plainsboro Field 27948c.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Plainsboro Field 9c89ac.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 266303 +CardID: 267703 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '2677': BackIsHidden: false BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361192017590/DF260119CF5543DA0521050C4546D3E3DBD4F27F/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192016816/6EAB1ACE847070B1D92AE6A8F96777F786F75796/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996739107/FF72C830993E9874655F239919533A802D3892DF/ NumHeight: 2 NumWidth: 3 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: 27948c +GUID: 9c89ac Grid: true GridProjection: false Hands: true @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -30.2243 - posY: 1.63612318 + posX: -30.2242 + posY: 1.63608015 posZ: -3.83 rotX: 359.9201 - rotY: 270.0 - rotZ: 180.016861 + rotY: 269.9999 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Princeton Junction deda1f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Princeton Junction 145dbc.yaml similarity index 75% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Princeton Junction deda1f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Princeton Junction 145dbc.yaml index 80cfe71f0..e348e3d56 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Princeton Junction deda1f.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Princeton Junction 145dbc.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 266302 +CardID: 267702 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '2677': BackIsHidden: false BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361192017590/DF260119CF5543DA0521050C4546D3E3DBD4F27F/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192016816/6EAB1ACE847070B1D92AE6A8F96777F786F75796/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996739107/FF72C830993E9874655F239919533A802D3892DF/ NumHeight: 2 NumWidth: 3 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: deda1f +GUID: 145dbc Grid: true GridProjection: false Hands: true @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -36.7732 - posY: 1.648612 - posZ: 7.56999969 + posY: 1.64856255 + posZ: 7.57000065 rotX: 359.9201 - rotY: 270.0 - rotZ: 180.016861 + rotY: 270.000061 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card State Militia Field HQ fa3287.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card State Militia Field HQ 5b9b85.yaml similarity index 75% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card State Militia Field HQ fa3287.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card State Militia Field HQ 5b9b85.yaml index a818eb5b7..d3b5df3b2 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card State Militia Field HQ fa3287.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card State Militia Field HQ 5b9b85.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 266301 +CardID: 267701 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '2677': BackIsHidden: false BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361192017590/DF260119CF5543DA0521050C4546D3E3DBD4F27F/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192016816/6EAB1ACE847070B1D92AE6A8F96777F786F75796/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996739107/FF72C830993E9874655F239919533A802D3892DF/ NumHeight: 2 NumWidth: 3 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: fa3287 +GUID: 5b9b85 Grid: true GridProjection: false Hands: true @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -36.7732 - posY: 1.64637411 - posZ: -0.0299994834 + posX: -36.7731 + posY: 1.64633214 + posZ: -0.0188996028 rotX: 359.9201 rotY: 270.000061 - rotZ: 180.016861 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Token Effects 1c7d23.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Token Effects 033a2d.yaml similarity index 77% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Token Effects 1c7d23.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Token Effects 033a2d.yaml index bfa9bcbeb..09cc24d83 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Token Effects 1c7d23.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Token Effects 033a2d.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 266305 +CardID: 267705 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '2677': BackIsHidden: false BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361192017590/DF260119CF5543DA0521050C4546D3E3DBD4F27F/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192016816/6EAB1ACE847070B1D92AE6A8F96777F786F75796/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996739107/FF72C830993E9874655F239919533A802D3892DF/ NumHeight: 2 NumWidth: 3 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: 1c7d23 +GUID: 033a2d Grid: true GridProjection: false Hands: true @@ -35,10 +35,10 @@ Tooltip: true Transform: posX: -3.95600033 posY: 1.59753942 - posZ: -10.4414005 + posZ: -10.4412022 rotX: 359.919739 - rotY: 269.998444 - rotZ: 0.0168394372 + rotY: 270.0024 + rotZ: 0.0168338139 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Wilmuth Farm e92c4b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Wilmuth Farm ebe292.yaml similarity index 75% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Wilmuth Farm e92c4b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Wilmuth Farm ebe292.yaml index 3657aaafc..1d97e2172 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Wilmuth Farm e92c4b.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Card Wilmuth Farm ebe292.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 266300 +CardID: 267700 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2663': + '2677': BackIsHidden: false BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361192017590/DF260119CF5543DA0521050C4546D3E3DBD4F27F/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192016816/6EAB1ACE847070B1D92AE6A8F96777F786F75796/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996739107/FF72C830993E9874655F239919533A802D3892DF/ NumHeight: 2 NumWidth: 3 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: e92c4b +GUID: ebe292 Grid: true GridProjection: false Hands: true @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -36.7733 - posY: 1.64411569 - posZ: -7.70010042 + posY: 1.644075 + posZ: -7.70000029 rotX: 359.9201 - rotY: 269.999939 - rotZ: 180.016861 + rotY: 269.999969 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Model_Bag Set-aside b19a6b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Model_Bag Set-aside b19a6b.yaml similarity index 86% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Model_Bag Set-aside b19a6b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Model_Bag Set-aside b19a6b.yaml index 59495f8cd..5b61fcf91 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Model_Bag Set-aside b19a6b.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Model_Bag Set-aside b19a6b.yaml @@ -5,8 +5,8 @@ ColorDiffuse: r: 0.02148666 ContainedObjects: - !include 'Custom_Model_Bag Set-aside b19a6b/Custom_Tile 586607.yaml' -- !include 'Custom_Model_Bag Set-aside b19a6b/Card Second Crash Site 51918e.yaml' -- !include 'Custom_Model_Bag Set-aside b19a6b/Deck f7663b.yaml' +- !include 'Custom_Model_Bag Set-aside b19a6b/Card Second Crash Site 67cd54.yaml' +- !include 'Custom_Model_Bag Set-aside b19a6b/Deck Fighting Machines 8df1e7.yaml' CustomMesh: CastShadows: true ColliderURL: '' @@ -48,12 +48,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 1.696401 - posY: 1.55831742 - posZ: 14.278903 + posX: 1.69660068 + posY: 1.55831671 + posZ: 14.2787008 rotX: 359.955139 - rotY: 225.001572 - rotZ: 0.06866921 + rotY: 225.003632 + rotZ: 0.06866819 scaleX: 2.0 scaleY: 2.0 scaleZ: 2.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Model_Bag Set-aside b19a6b/Card Second Crash Site 51918e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Model_Bag Set-aside b19a6b/Card Second Crash Site 67cd54.yaml similarity index 68% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Model_Bag Set-aside b19a6b/Card Second Crash Site 51918e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Model_Bag Set-aside b19a6b/Card Second Crash Site 67cd54.yaml index 754e81f92..0b2680919 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Model_Bag Set-aside b19a6b/Card Second Crash Site 51918e.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Model_Bag Set-aside b19a6b/Card Second Crash Site 67cd54.yaml @@ -1,14 +1,14 @@ Autoraise: true -CardID: 266224 +CardID: 267324 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': - BackIsHidden: false + '2673': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ NumHeight: 5 NumWidth: 5 Type: 0 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: 51918e +GUID: 67cd54 Grid: true GridProjection: false Hands: true @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 1.696429 - posY: 3.65672731 - posZ: 14.2788181 - rotX: 359.947662 - rotY: 225.004761 - rotZ: 0.0585042536 + posX: 6.2206254 + posY: 2.9560523 + posZ: -12.55255 + rotX: 359.919739 + rotY: 269.999268 + rotZ: 0.01683813 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Model_Bag Set-aside b19a6b/Custom_Tile 586607.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Model_Bag Set-aside b19a6b/Custom_Tile 586607.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Model_Bag Set-aside b19a6b/Custom_Tile 586607.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Model_Bag Set-aside b19a6b/Custom_Tile 586607.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Model_Bag Set-aside b19a6b/Deck f7663b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Model_Bag Set-aside b19a6b/Deck Fighting Machines 8df1e7.yaml similarity index 68% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Model_Bag Set-aside b19a6b/Deck f7663b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Model_Bag Set-aside b19a6b/Deck Fighting Machines 8df1e7.yaml index a4fb422a3..56128ab17 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Model_Bag Set-aside b19a6b/Deck f7663b.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Model_Bag Set-aside b19a6b/Deck Fighting Machines 8df1e7.yaml @@ -5,16 +5,16 @@ ColorDiffuse: r: 0.713235259 ContainedObjects: - Autoraise: true - CardID: 266914 + CardID: 267413 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -22,7 +22,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: e047be + GUID: 927c6d Grid: true GridProjection: false Hands: true @@ -39,27 +39,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -4.912911 - posY: 1.60458136 - posZ: 9.004801 - rotX: 359.9199 - rotY: 269.999939 - rotZ: 0.0159938019 + posX: -10.7567711 + posY: 1.61343193 + posZ: 11.4735889 + rotX: 359.9201 + rotY: 269.998749 + rotZ: 0.016850939 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266913 + CardID: 267414 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -67,7 +67,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: ceee7a + GUID: 0160fa Grid: true GridProjection: false Hands: true @@ -84,32 +84,32 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -4.62282228 - posY: 1.64648664 - posZ: 8.952483 - rotX: 359.934326 - rotY: 269.999939 - rotZ: 0.01116239 + posX: -10.6265259 + posY: 1.65758038 + posZ: 11.7134142 + rotX: 359.919281 + rotY: 269.998657 + rotZ: 0.0144521734 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 UniqueBack: false DeckIDs: -- 266914 -- 266913 +- 267413 +- 267414 Description: '' DragSelectable: true GMNotes: '' -GUID: f7663b +GUID: 8df1e7 Grid: true GridProjection: false Hands: false @@ -120,18 +120,18 @@ LuaScript: '' LuaScriptState: '' MeasureMovement: false Name: Deck -Nickname: '' +Nickname: Fighting Machines SidewaysCard: false Snap: true Sticky: true Tooltip: true Transform: - posX: 1.69643748 - posY: 3.673629 - posZ: 14.278821 - rotX: 359.94754 - rotY: 225.0624 - rotZ: 0.0584630519 + posX: 1.69643617 + posY: 3.67377949 + posZ: 14.2788219 + rotX: 359.947968 + rotY: 225.033615 + rotZ: 0.058482755 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 6f7d7d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 6f7d7d.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 6f7d7d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 6f7d7d.yaml index 3531ec063..c45985f42 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 6f7d7d.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 6f7d7d.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -33.7186 - posY: 1.627958 - posZ: -1.90400052 - rotX: 359.922363 - rotY: 300.0158 - rotZ: 359.97467 + posY: 1.62791407 + posZ: -1.9040004 + rotX: 359.9224 + rotY: 300.0157 + rotZ: 359.97464 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 7234af.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 7234af.yaml index 7c26ac99f..6d40673bc 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 7234af.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 7234af.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -36.7734 - posY: 1.63391471 - posZ: 3.860001 - rotX: 0.01684949 - rotY: 180.016083 - rotZ: 0.07995774 + posY: 1.6338675 + posZ: 3.86000013 + rotX: 0.01681727 + rotY: 180.015717 + rotZ: 0.07994418 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 8c1268.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 8c1268.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 8c1268.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 8c1268.yaml index 12a5162a9..9083170df 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 8c1268.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 8c1268.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -33.5 - posY: 1.62996531 + posY: 1.62991667 posZ: 5.9474 - rotX: 359.922363 - rotY: 300.006226 - rotZ: 359.9747 + rotX: 359.9224 + rotY: 300.0062 + rotZ: 359.97467 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile a84218.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile a84218.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile a84218.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile a84218.yaml index 337369772..9b5fc8112 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile a84218.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile a84218.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -33.4607 - posY: 1.626435 + posY: 1.6263932 posZ: -5.8547 - rotX: 359.93924 - rotY: 240.012451 - rotZ: 0.0545290932 + rotX: 359.9392 + rotY: 240.012482 + rotZ: 0.0545008741 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile aef61c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile aef61c.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile aef61c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile aef61c.yaml index 30c9fc3b4..d3f187a61 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile aef61c.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile aef61c.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -36.7733 - posY: 1.63165033 + posY: 1.63160729 posZ: -3.82999969 - rotX: 0.0168730933 - rotY: 179.999054 - rotZ: 0.0799387246 + rotX: 0.016840186 + rotY: 179.9993 + rotZ: 0.0799319 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile eb56cf.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile eb56cf.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile eb56cf.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile eb56cf.yaml index e3523acdf..dcb4903fc 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile eb56cf.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile eb56cf.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -33.6661 - posY: 1.62900376 - posZ: 1.89640021 - rotX: 359.939148 + posY: 1.62895775 + posZ: 1.8964 + rotX: 359.939117 rotY: 240.1148 - rotZ: 0.0544227622 + rotZ: 0.0543945245 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Deck Agenda Deck 4d0fa5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Deck Agenda Deck 4d0fa5.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Deck Agenda Deck 4d0fa5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Deck Agenda Deck 4d0fa5.yaml index 1d071e97b..20418b5e5 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Deck Agenda Deck 4d0fa5.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Deck Agenda Deck 4d0fa5.yaml @@ -172,12 +172,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -2.72468925 + posX: -2.7247 posY: 1.62076044 - posZ: 0.373336464 - rotX: 0.0168358367 + posZ: 0.373300344 + rotX: 0.0168358237 rotY: 179.999878 - rotZ: 0.08025591 + rotZ: 0.0802559 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Deck Encounter Deck 7f3d54.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Deck Encounter Deck a14980.yaml similarity index 69% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Deck Encounter Deck 7f3d54.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Deck Encounter Deck a14980.yaml index 336061222..b1b411257 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Deck Encounter Deck 7f3d54.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Deck Encounter Deck a14980.yaml @@ -5,16 +5,16 @@ ColorDiffuse: r: 0.713235259 ContainedObjects: - Autoraise: true - CardID: 266212 + CardID: 267312 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': - BackIsHidden: false + '2673': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ NumHeight: 5 NumWidth: 5 Type: 0 @@ -22,7 +22,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: fdb47f + GUID: 73eb92 Grid: true GridProjection: false Hands: true @@ -39,27 +39,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -9.647164 - posY: 1.61124229 - posZ: 9.133929 - rotX: 359.91983 - rotY: 269.999969 - rotZ: 0.0164600331 + posX: -9.680328 + posY: 1.78819478 + posZ: 2.39097834 + rotX: 359.9519 + rotY: 269.999573 + rotZ: 180.952057 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266213 + CardID: 267313 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': - BackIsHidden: false + '2673': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ NumHeight: 5 NumWidth: 5 Type: 0 @@ -67,7 +67,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 6bd494 + GUID: 07030c Grid: true GridProjection: false Hands: true @@ -84,27 +84,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -9.863938 - posY: 1.65364647 - posZ: 8.935109 - rotX: 359.921936 - rotY: 270.0 - rotZ: 0.0182884485 + posX: -9.4857235 + posY: 1.78453529 + posZ: 2.033467 + rotX: 0.0053758393 + rotY: 270.000244 + rotZ: 181.470657 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266214 + CardID: 267314 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': - BackIsHidden: false + '2673': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ NumHeight: 5 NumWidth: 5 Type: 0 @@ -112,7 +112,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 45fc33 + GUID: 42a025 Grid: true GridProjection: false Hands: true @@ -129,27 +129,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -9.727426 - posY: 1.68742561 - posZ: 8.979774 - rotX: 359.919983 - rotY: 270.000427 - rotZ: 0.0163987316 + posX: -9.999817 + posY: 1.84059143 + posZ: 2.451969 + rotX: 359.952 + rotY: 269.996765 + rotZ: 175.510284 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266215 + CardID: 267315 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': - BackIsHidden: false + '2673': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ NumHeight: 5 NumWidth: 5 Type: 0 @@ -157,7 +157,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 8d7b56 + GUID: fa3f31 Grid: true GridProjection: false Hands: true @@ -174,27 +174,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -10.1592674 - posY: 1.69765818 - posZ: 9.229452 - rotX: 359.9199 - rotY: 270.0 - rotZ: 0.0167216249 + posX: -9.539511 + posY: 1.74541748 + posZ: 2.295299 + rotX: 359.955566 + rotY: 270.000153 + rotZ: 180.209564 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266216 + CardID: 267316 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': - BackIsHidden: false + '2673': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ NumHeight: 5 NumWidth: 5 Type: 0 @@ -202,7 +202,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 2ea29e + GUID: 2f1ce3 Grid: true GridProjection: false Hands: true @@ -219,27 +219,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -9.754798 - posY: 1.70691633 - posZ: 9.56815 - rotX: 359.918884 - rotY: 269.9964 - rotZ: 0.0166038815 + posX: -9.959501 + posY: 1.73445225 + posZ: 2.43718624 + rotX: 359.936371 + rotY: 270.0003 + rotZ: 179.925156 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266217 + CardID: 267317 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': - BackIsHidden: false + '2673': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ NumHeight: 5 NumWidth: 5 Type: 0 @@ -247,7 +247,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 02e3bf + GUID: 284f5f Grid: true GridProjection: false Hands: true @@ -264,27 +264,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -10.05073 - posY: 1.71667588 - posZ: 8.816641 - rotX: 359.9201 - rotY: 270.000519 - rotZ: 0.0167333614 + posX: -9.736608 + posY: 1.98517239 + posZ: 2.20378876 + rotX: 0.0777664259 + rotY: 269.982025 + rotZ: 166.973068 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266218 + CardID: 267318 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': - BackIsHidden: false + '2673': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ NumHeight: 5 NumWidth: 5 Type: 0 @@ -292,7 +292,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 76b5d6 + GUID: 0f9df1 Grid: true GridProjection: false Hands: true @@ -309,27 +309,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -9.784615 - posY: 1.72609067 - posZ: 9.247105 - rotX: 359.9197 - rotY: 270.00058 - rotZ: 0.0165945552 + posX: -9.846183 + posY: 1.70694125 + posZ: 2.10190129 + rotX: 359.9512 + rotY: 269.994934 + rotZ: 180.196884 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266219 + CardID: 267319 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': - BackIsHidden: false + '2673': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ NumHeight: 5 NumWidth: 5 Type: 0 @@ -337,7 +337,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: f44e91 + GUID: 49bf24 Grid: true GridProjection: false Hands: true @@ -354,27 +354,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -9.781064 - posY: 1.73564661 - posZ: 9.02693 - rotX: 359.92 - rotY: 270.0001 - rotZ: 0.01648333 + posX: -9.89337 + posY: 1.72671175 + posZ: 2.30957532 + rotX: 359.951843 + rotY: 269.9992 + rotZ: 181.275467 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266220 + CardID: 267320 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': - BackIsHidden: false + '2673': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ NumHeight: 5 NumWidth: 5 Type: 0 @@ -382,7 +382,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: d1bf3d + GUID: 0f4d72 Grid: true GridProjection: false Hands: true @@ -399,27 +399,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -9.904854 - posY: 1.74542141 - posZ: 8.983803 - rotX: 359.920074 - rotY: 269.9995 - rotZ: 0.0166517179 + posX: -9.512696 + posY: 1.69561732 + posZ: 1.73448884 + rotX: 359.94986 + rotY: 270.0 + rotZ: 180.090057 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266221 + CardID: 267321 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': - BackIsHidden: false + '2673': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ NumHeight: 5 NumWidth: 5 Type: 0 @@ -427,7 +427,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: e1f7df + GUID: '347689' Grid: true GridProjection: false Hands: true @@ -444,27 +444,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -9.670116 - posY: 1.75479949 - posZ: 9.197747 - rotX: 359.919617 - rotY: 270.0001 - rotZ: 0.0165829044 + posX: -9.68778 + posY: 1.68646109 + posZ: 2.60475349 + rotX: 359.951935 + rotY: 270.0003 + rotZ: 180.106171 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266222 + CardID: 267322 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': - BackIsHidden: false + '2673': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ NumHeight: 5 NumWidth: 5 Type: 0 @@ -472,7 +472,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: ba5d9c + GUID: b63ff9 Grid: true GridProjection: false Hands: true @@ -489,27 +489,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -9.794055 - posY: 1.76454782 - posZ: 9.050107 - rotX: 359.920044 - rotY: 270.0005 - rotZ: 0.0165092535 + posX: -9.710618 + posY: 1.64577353 + posZ: 2.644261 + rotX: 359.925018 + rotY: 270.02066 + rotZ: 180.012741 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266223 + CardID: 267323 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2662': - BackIsHidden: false + '2673': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ NumHeight: 5 NumWidth: 5 Type: 0 @@ -517,7 +517,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: c241db + GUID: d6bb63 Grid: true GridProjection: false Hands: true @@ -534,27 +534,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -9.983298 - posY: 1.77446878 - posZ: 9.246986 - rotX: 359.9199 - rotY: 269.984833 - rotZ: 0.0167562719 + posX: -9.665174 + posY: 1.609248 + posZ: 2.48903775 + rotX: 359.919281 + rotY: 270.000122 + rotZ: 180.0184 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266900 + CardID: 267400 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -562,7 +562,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: '534965' + GUID: b7a687 Grid: true GridProjection: false Hands: true @@ -579,27 +579,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.7876606 - posY: 1.83676994 - posZ: 6.48368835 - rotX: 359.948944 - rotY: 270.000519 - rotZ: 180.141922 + posX: -13.9324627 + posY: 1.85147655 + posZ: -3.548372 + rotX: 0.0364938639 + rotY: 270.0015 + rotZ: 181.037537 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266901 + CardID: 267401 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -607,7 +607,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: fd91b7 + GUID: ed6319 Grid: true GridProjection: false Hands: true @@ -624,27 +624,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.9722528 - posY: 1.8184936 - posZ: 6.24175549 - rotX: 359.9539 - rotY: 269.9933 - rotZ: 180.194778 + posX: -14.4051943 + posY: 1.84486878 + posZ: -2.6871326 + rotX: 0.000262588757 + rotY: 269.999634 + rotZ: 178.286057 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266902 + CardID: 267402 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -652,7 +652,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 9194ce + GUID: deeb02 Grid: true GridProjection: false Hands: true @@ -669,27 +669,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.6258936 - posY: 1.82349575 - posZ: 6.08819675 - rotX: 359.952057 - rotY: 269.999847 - rotZ: 180.5669 + posX: -13.9666576 + posY: 1.836208 + posZ: -2.92806649 + rotX: 0.0361353867 + rotY: 270.002136 + rotZ: 180.992111 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266903 + CardID: 267403 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -697,7 +697,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 38fad5 + GUID: e6188c Grid: true GridProjection: false Hands: true @@ -714,27 +714,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.3344193 - posY: 1.80703282 - posZ: 6.4101553 - rotX: 359.9522 - rotY: 270.0004 - rotZ: 180.120941 + posX: -14.4013987 + posY: 1.8282541 + posZ: -3.05022764 + rotX: 0.0358129255 + rotY: 270.002075 + rotZ: 181.0558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266904 + CardID: 267404 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -742,7 +742,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 64779c + GUID: cb7de2 Grid: true GridProjection: false Hands: true @@ -759,27 +759,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.6367645 - posY: 1.789097 - posZ: 5.870122 - rotX: 359.95105 - rotY: 269.998627 - rotZ: 180.1949 + posX: -14.1754055 + posY: 1.97573352 + posZ: -3.33040977 + rotX: 359.967041 + rotY: 269.991241 + rotZ: 170.417313 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266905 + CardID: 267405 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -787,7 +787,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 0f1268 + GUID: '564036' Grid: true GridProjection: false Hands: true @@ -804,27 +804,162 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.6797743 - posY: 1.80768812 - posZ: 6.447141 - rotX: 359.952057 + posX: -13.81101 + posY: 1.80684662 + posZ: -3.28871918 + rotX: 359.952484 + rotY: 269.997742 + rotZ: 178.818954 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2674': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ + NumHeight: 3 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0dedff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Martian Technician + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.0105934 + posY: 1.79556668 + posZ: -2.69907117 + rotX: 0.0355848372 + rotY: 270.002136 + rotZ: 180.906708 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2674': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ + NumHeight: 3 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6826c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Martian Technician + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.7216635 + posY: 1.7919054 + posZ: -2.66484356 + rotX: 0.03645171 + rotY: 270.00174 + rotZ: 181.054321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2674': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ + NumHeight: 3 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0675da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Martian Technician + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.100811 + posY: 1.761666 + posZ: -3.19721437 + rotX: 0.0454738177 rotY: 270.001221 - rotZ: 181.084442 + rotZ: 180.203171 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266906 + CardID: 267409 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -832,7 +967,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 53734f + GUID: 381c24 Grid: true GridProjection: false Hands: true @@ -849,27 +984,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.9699106 - posY: 1.77900541 - posZ: 6.434538 - rotX: 359.952057 - rotY: 270.0004 - rotZ: 180.1208 + posX: -13.7097759 + posY: 1.75093091 + posZ: -3.460492 + rotX: 0.0348324 + rotY: 270.000427 + rotZ: 180.106812 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266907 + CardID: 267410 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -877,142 +1012,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: ec8dec - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Martian Technician - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -12.42023 - posY: 1.76790416 - posZ: 6.19154453 - rotX: 359.95224 - rotY: 270.0 - rotZ: 180.0247 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266908 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2669': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ - NumHeight: 3 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6f31fd - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Martian Technician - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -12.661952 - posY: 1.7789706 - posZ: 5.92893839 - rotX: 359.952026 - rotY: 269.998383 - rotZ: 178.815933 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266909 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2669': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ - NumHeight: 3 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c9b746 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Martian Technician - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -12.5504055 - posY: 1.77141654 - posZ: 6.088148 - rotX: 359.956665 - rotY: 269.948 - rotZ: 178.4085 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266910 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2669': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ - NumHeight: 3 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a88c76 + GUID: d3bec9 Grid: true GridProjection: false Hands: true @@ -1029,27 +1029,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.9453268 - posY: 1.76238787 - posZ: 6.290613 - rotX: 0.06100134 - rotY: 270.000977 - rotZ: 180.8578 + posX: -13.7490911 + posY: 1.75872517 + posZ: -3.03785515 + rotX: 359.952576 + rotY: 270.0009 + rotZ: 178.6434 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266911 + CardID: 267411 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -1057,7 +1057,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 5b2c46 + GUID: d19fab Grid: true GridProjection: false Hands: true @@ -1074,27 +1074,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.9329548 - posY: 1.75290227 - posZ: 6.33849764 - rotX: 0.0523924157 - rotY: 270.000854 - rotZ: 180.84407 + posX: -14.1113138 + posY: 1.75179267 + posZ: -3.13707137 + rotX: 0.0449036434 + rotY: 270.001038 + rotZ: 180.8343 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266912 + CardID: 267412 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -1102,7 +1102,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 35ca80 + GUID: df0679 Grid: true GridProjection: false Hands: true @@ -1119,27 +1119,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.6990976 - posY: 1.73109448 - posZ: 6.550235 - rotX: 359.952057 - rotY: 270.00116 - rotZ: 180.6733 + posX: -14.0707521 + posY: 1.739896 + posZ: -3.02546358 + rotX: 0.03610193 + rotY: 270.0021 + rotZ: 180.993851 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266917 + CardID: 267415 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -1147,7 +1147,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: a58b43 + GUID: 7c2447 Grid: true GridProjection: false Hands: true @@ -1164,27 +1164,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -8.858943 - posY: 1.60928 - posZ: 6.207012 - rotX: 359.9194 - rotY: 269.999878 - rotZ: 0.0166438483 + posX: -13.8469458 + posY: 1.69424224 + posZ: -2.8296454 + rotX: 0.0221196488 + rotY: 270.001251 + rotZ: 180.184937 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266916 + CardID: 267416 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -1192,7 +1192,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 6358c6 + GUID: 74162b Grid: true GridProjection: false Hands: true @@ -1209,27 +1209,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -9.267571 - posY: 1.65195167 - posZ: 6.44523048 - rotX: 359.934967 - rotY: 269.999969 - rotZ: 0.009993763 + posX: -13.9195662 + posY: 1.67035687 + posZ: -2.87534976 + rotX: 0.03568758 + rotY: 270.002 + rotZ: 180.697662 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266915 + CardID: 267417 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -1237,7 +1237,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 58cd2b + GUID: a89156 Grid: true GridProjection: false Hands: true @@ -1254,66 +1254,66 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -8.975042 - posY: 1.685369 - posZ: 5.932967 - rotX: 359.933716 - rotY: 269.999969 - rotZ: 0.0146135371 + posX: -9.792112 + posY: 1.83165717 + posZ: 7.9584794 + rotX: 359.920227 + rotY: 269.999939 + rotZ: 0.0168329328 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' CustomDeck: - '2662': - BackIsHidden: false + '2673': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361191994882/E3510816868C5819A9447BD85AB30BF840DA31CB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996684414/5ABD324BCEAE823330AE09C0539284D604548A80/ NumHeight: 5 NumWidth: 5 Type: 0 UniqueBack: false - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 UniqueBack: false DeckIDs: -- 266212 -- 266213 -- 266214 -- 266215 -- 266216 -- 266217 -- 266218 -- 266219 -- 266220 -- 266221 -- 266222 -- 266223 -- 266900 -- 266901 -- 266902 -- 266903 -- 266904 -- 266905 -- 266906 -- 266907 -- 266908 -- 266909 -- 266910 -- 266911 -- 266912 -- 266917 -- 266916 -- 266915 +- 267312 +- 267313 +- 267314 +- 267315 +- 267316 +- 267317 +- 267318 +- 267319 +- 267320 +- 267321 +- 267322 +- 267323 +- 267400 +- 267401 +- 267402 +- 267403 +- 267404 +- 267405 +- 267406 +- 267407 +- 267408 +- 267409 +- 267410 +- 267411 +- 267412 +- 267415 +- 267416 +- 267417 Description: '' DragSelectable: true GMNotes: '' -GUID: 7f3d54 +GUID: a14980 Grid: true GridProjection: false Hands: false @@ -1330,11 +1330,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.927807 + posX: -3.92750025 posY: 1.74437881 - posZ: 5.75722933 + posZ: 5.758701 rotX: 359.919739 - rotY: 269.999268 + rotY: 269.999451 rotZ: 180.016815 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523.ttslua similarity index 95% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523.ttslua index 54d591927..cae387265 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780.ttslua +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523.ttslua @@ -192,8 +192,8 @@ function buttonClick_place() 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.setPosition(entry.pos) + obj.setRotation(entry.rot) obj.setLock(entry.lock) else --If obj is inside of the bag @@ -270,4 +270,4 @@ end function round(num, dec) local mult = 10^(dec or 0) return math.floor(num * mult + 0.5) / mult -end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523.yaml similarity index 61% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523.yaml index 42427cbbd..770f1c980 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523.yaml @@ -26,6 +26,7 @@ ContainedObjects: - !include 'Custom_Model_Bag 2 Phobos and Deimos 313523/Card Port Newark 0eb986.yaml' - !include 'Custom_Model_Bag 2 Phobos and Deimos 313523/Bag The Martians wiped out the Militia 14f22b.yaml' +- !include 'Custom_Model_Bag 2 Phobos and Deimos 313523/Deck Agenda Deck 1e366a.yaml' - !include 'Custom_Model_Bag 2 Phobos and Deimos 313523/Card Metropolitan Airport 4ff006.yaml' - !include 'Custom_Model_Bag 2 Phobos and Deimos 313523/Card Pennsylvania Station @@ -43,9 +44,8 @@ ContainedObjects: Pierson a1198e.yaml' - !include 'Custom_Model_Bag 2 Phobos and Deimos 313523/Bag The militia suffered heavy losses in their retreat OR the militia made a safe retreat from Grovers Mill a39847.yaml' -- !include 'Custom_Model_Bag 2 Phobos and Deimos 313523/Deck Encounter Deck aab86c.yaml' -- !include 'Custom_Model_Bag 2 Phobos and Deimos 313523/Deck Agenda Deck c550d2.yaml' - !include 'Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile cb64cc.yaml' +- !include 'Custom_Model_Bag 2 Phobos and Deimos 313523/Deck Encounter Deck d0e2f1.yaml' - !include 'Custom_Model_Bag 2 Phobos and Deimos 313523/Card St. Michael''s Medical Center d4f3f0.yaml' - !include 'Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile e0e879.yaml' @@ -77,7 +77,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: false LuaScript: !include 'Custom_Model_Bag 2 Phobos and Deimos 313523.ttslua' -LuaScriptState: '{"ml":{"01728a":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"064b0f":{"lock":false,"pos":{"x":-20.1646,"y":1.6108,"z":3.8968},"rot":{"x":359.9201,"y":270.0098,"z":0.0169}},"0e9d55":{"lock":false,"pos":{"x":-23.6766,"y":1.6293,"z":3.86},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"0eb986":{"lock":false,"pos":{"x":-30.2243,"y":1.635,"z":-7.7},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"14f22b":{"lock":false,"pos":{"x":2.3415,"y":1.394,"z":2.8614},"rot":{"x":359.9832,"y":0.0008,"z":359.9197}},"4ff006":{"lock":false,"pos":{"x":-36.7732,"y":1.6464,"z":-0.03},"rot":{"x":359.9201,"y":270.0003,"z":180.0169}},"51a44f":{"lock":false,"pos":{"x":-30.2243,"y":1.6372,"z":-0.03},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"5a544f":{"lock":false,"pos":{"x":-36.7732,"y":1.6486,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"662189":{"lock":false,"pos":{"x":-33.2744,"y":1.6301,"z":7.4661},"rot":{"x":359.9201,"y":270.0127,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-36.7733,"y":1.6339,"z":3.86},"rot":{"x":0.0168,"y":180.0348,"z":0.08}},"723bcf":{"lock":false,"pos":{"x":-30.2244,"y":1.6225,"z":-3.83},"rot":{"x":0.0171,"y":179.8132,"z":0.0799}},"7d5965":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.2791},"rot":{"x":359.9551,"y":224.9981,"z":0.0687}},"8c86ec":{"lock":false,"pos":{"x":-30.2243,"y":1.6395,"z":7.57},"rot":{"x":359.9201,"y":270.0005,"z":180.0169}},"964dbc":{"lock":false,"pos":{"x":-33.4039,"y":1.6281,"z":-0.0959},"rot":{"x":359.9201,"y":270.01,"z":0.0169}},"982a77":{"lock":false,"pos":{"x":-26.9448,"y":1.6207,"z":5.5592},"rot":{"x":359.9224,"y":300.0132,"z":359.9747}},"a1198e":{"lock":false,"pos":{"x":-27.2283,"y":1.636,"z":10.0866},"rot":{"x":359.9201,"y":270.1544,"z":0.0167}},"a39847":{"lock":false,"pos":{"x":2.0611,"y":1.3926,"z":-3.0653},"rot":{"x":359.9832,"y":0.0008,"z":359.9197}},"aab86c":{"lock":false,"pos":{"x":-3.9279,"y":1.7925,"z":5.7571},"rot":{"x":359.9197,"y":269.9915,"z":180.0168}},"c550d2":{"lock":false,"pos":{"x":-2.7248,"y":1.6208,"z":0.3733},"rot":{"x":0.0168,"y":179.9999,"z":0.0803}},"cb64cc":{"lock":false,"pos":{"x":-30.2244,"y":1.6248,"z":3.86},"rot":{"x":0.0172,"y":179.7664,"z":0.0799}},"d4f3f0":{"lock":false,"pos":{"x":-17.12,"y":1.6201,"z":3.86},"rot":{"x":359.9201,"y":269.9998,"z":180.0169}},"e0e879":{"lock":false,"pos":{"x":-26.853,"y":1.6195,"z":1.9503},"rot":{"x":359.9392,"y":239.9978,"z":0.0545}}}}' +LuaScriptState: '{"ml":{"01728a":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"064b0f":{"lock":false,"pos":{"x":-20.1646,"y":1.6107,"z":3.8968},"rot":{"x":359.9201,"y":270.0098,"z":0.0169}},"0e9d55":{"lock":false,"pos":{"x":-23.6766,"y":1.6292,"z":3.86},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"0eb986":{"lock":false,"pos":{"x":-30.2243,"y":1.6349,"z":-7.7},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"14f22b":{"lock":false,"pos":{"x":2.3415,"y":1.394,"z":2.8614},"rot":{"x":359.9832,"y":0.0008,"z":359.9197}},"1e366a":{"lock":false,"pos":{"x":-2.7246,"y":1.6208,"z":0.3735},"rot":{"x":0.0168,"y":179.9992,"z":0.0803}},"4ff006":{"lock":false,"pos":{"x":-36.7732,"y":1.6463,"z":-0.03},"rot":{"x":359.9201,"y":270.0003,"z":180.0168}},"51a44f":{"lock":false,"pos":{"x":-30.2243,"y":1.6372,"z":-0.03},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"5a544f":{"lock":false,"pos":{"x":-36.7732,"y":1.6486,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":180.0168}},"662189":{"lock":false,"pos":{"x":-33.2744,"y":1.63,"z":7.4661},"rot":{"x":359.9201,"y":270.0127,"z":0.0168}},"7234af":{"lock":false,"pos":{"x":-36.7733,"y":1.6339,"z":3.86},"rot":{"x":0.0168,"y":180.0346,"z":0.08}},"723bcf":{"lock":false,"pos":{"x":-30.2244,"y":1.6225,"z":-3.83},"rot":{"x":0.0171,"y":179.8131,"z":0.0799}},"7d5965":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.2791},"rot":{"x":359.9551,"y":224.9981,"z":0.0687}},"8c86ec":{"lock":false,"pos":{"x":-30.2243,"y":1.6394,"z":7.57},"rot":{"x":359.9201,"y":270.0005,"z":180.0168}},"964dbc":{"lock":false,"pos":{"x":-33.4039,"y":1.628,"z":-0.0959},"rot":{"x":359.9201,"y":270.01,"z":0.0169}},"982a77":{"lock":false,"pos":{"x":-26.9448,"y":1.6207,"z":5.5592},"rot":{"x":359.9224,"y":300.0132,"z":359.9746}},"a1198e":{"lock":false,"pos":{"x":-27.2283,"y":1.636,"z":10.0866},"rot":{"x":359.9201,"y":270.1544,"z":0.0166}},"a39847":{"lock":false,"pos":{"x":2.0611,"y":1.3926,"z":-3.0653},"rot":{"x":359.9832,"y":0.0008,"z":359.9197}},"cb64cc":{"lock":false,"pos":{"x":-30.2244,"y":1.6247,"z":3.86},"rot":{"x":0.0172,"y":179.7664,"z":0.0799}},"d0e2f1":{"lock":false,"pos":{"x":-3.9272,"y":1.7925,"z":5.7571},"rot":{"x":359.9197,"y":270,"z":180.0168}},"d4f3f0":{"lock":false,"pos":{"x":-17.12,"y":1.6201,"z":3.86},"rot":{"x":359.9201,"y":269.9998,"z":180.0168}},"e0e879":{"lock":false,"pos":{"x":-26.853,"y":1.6195,"z":1.9503},"rot":{"x":359.9392,"y":239.9978,"z":0.0545}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 @@ -92,7 +92,7 @@ Transform: posZ: -0.00390071282 rotX: 359.920135 rotY: 270.0055 - rotZ: 0.0168662369 + rotZ: 0.0168662537 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Bag The Martians wiped out the Militia 14f22b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Bag The Martians wiped out the Militia 14f22b.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Bag The Martians wiped out the Militia 14f22b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Bag The Martians wiped out the Militia 14f22b.yaml index b12f513b6..dd8bf968a 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Bag The Martians wiped out the Militia 14f22b.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Bag The Martians wiped out the Militia 14f22b.yaml @@ -210,10 +210,10 @@ Sticky: true Tooltip: true Transform: posX: 2.34150147 - posY: 1.393989 - posZ: 2.86140156 + posY: 1.39398921 + posZ: 2.8614018 rotX: 359.983154 - rotY: 0.000691154157 + rotY: 0.0007666535 rotZ: 359.919678 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Bag The militia suffered heavy losses in their retreat OR the militia made a safe retreat from Grovers Mill a39847.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Bag The militia suffered heavy losses in their retreat OR the militia made a safe retreat from Grovers Mill a39847.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Bag The militia suffered heavy losses in their retreat OR the militia made a safe retreat from Grovers Mill a39847.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Bag The militia suffered heavy losses in their retreat OR the militia made a safe retreat from Grovers Mill a39847.yaml index 0c3bf8fb6..e1bcf9afc 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Bag The militia suffered heavy losses in their retreat OR the militia made a safe retreat from Grovers Mill a39847.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Bag The militia suffered heavy losses in their retreat OR the militia made a safe retreat from Grovers Mill a39847.yaml @@ -210,11 +210,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 2.06113 - posY: 1.39264 - posZ: -3.06528974 + posX: 2.06110168 + posY: 1.39264023 + posZ: -3.06529927 rotX: 359.983154 - rotY: 0.0006797899 + rotY: 0.0007897066 rotZ: 359.919678 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card City Hall 8c86ec.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card City Hall 8c86ec.yaml similarity index 94% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card City Hall 8c86ec.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card City Hall 8c86ec.yaml index 3648eed2a..13ceba274 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card City Hall 8c86ec.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card City Hall 8c86ec.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -30.2243 - posY: 1.63948 + posY: 1.63943052 posZ: 7.57 rotX: 359.9201 - rotY: 270.000458 - rotZ: 180.016861 + rotY: 270.0005 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Grace Church 5a544f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Grace Church 5a544f.yaml similarity index 95% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Grace Church 5a544f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Grace Church 5a544f.yaml index 35d153581..29957cca4 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Grace Church 5a544f.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Grace Church 5a544f.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -36.7732 - posY: 1.648612 + posY: 1.64856255 posZ: 7.57000065 rotX: 359.9201 rotY: 270.000061 - rotZ: 180.016861 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Metropolitan Airport 4ff006.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Metropolitan Airport 4ff006.yaml similarity index 91% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Metropolitan Airport 4ff006.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Metropolitan Airport 4ff006.yaml index 3b50c352a..6c0aa41ce 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Metropolitan Airport 4ff006.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Metropolitan Airport 4ff006.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -36.7732 - posY: 1.64637411 - posZ: -0.0299997572 + posY: 1.646329 + posZ: -0.029999515 rotX: 359.9201 - rotY: 270.000336 - rotZ: 180.016861 + rotY: 270.0003 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Pennsylvania Station 51a44f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Pennsylvania Station 51a44f.yaml similarity index 93% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Pennsylvania Station 51a44f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Pennsylvania Station 51a44f.yaml index 1a9c8f886..6668a9407 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Pennsylvania Station 51a44f.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Pennsylvania Station 51a44f.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -30.2243 - posY: 1.63724208 - posZ: -0.0299997684 + posY: 1.637197 + posZ: -0.02999983 rotX: 359.9201 rotY: 270.000061 - rotZ: 180.016861 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Port Newark 0eb986.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Port Newark 0eb986.yaml similarity index 93% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Port Newark 0eb986.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Port Newark 0eb986.yaml index 683cbd288..d066d0b2f 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Port Newark 0eb986.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Port Newark 0eb986.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -30.2243 - posY: 1.63498366 - posZ: -7.7 + posY: 1.63494289 + posZ: -7.70000029 rotX: 359.9201 rotY: 270.000061 - rotZ: 180.016861 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Rutgers University 0e9d55.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Rutgers University 0e9d55.yaml similarity index 89% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Rutgers University 0e9d55.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Rutgers University 0e9d55.yaml index 698c7d01e..d3cd47285 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Rutgers University 0e9d55.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Rutgers University 0e9d55.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -23.6766 - posY: 1.6292572 - posZ: 3.86000061 + posX: -23.6765976 + posY: 1.62920988 + posZ: 3.86000037 rotX: 359.9201 - rotY: 270.000061 - rotZ: 180.016861 + rotY: 270.000122 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card St. Michael's Medical Center d4f3f0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card St. Michael's Medical Center d4f3f0.yaml similarity index 90% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card St. Michael's Medical Center d4f3f0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card St. Michael's Medical Center d4f3f0.yaml index c4c5c6da8..dc9df7eaa 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card St. Michael's Medical Center d4f3f0.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card St. Michael's Medical Center d4f3f0.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -17.12 - posY: 1.62011445 - posZ: 3.86000061 + posX: -17.1199989 + posY: 1.62006724 + posZ: 3.86000013 rotX: 359.9201 - rotY: 269.999847 - rotZ: 180.016861 + rotY: 269.9998 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Token Effects 01728a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Token Effects 01728a.yaml similarity index 91% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Token Effects 01728a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Token Effects 01728a.yaml index 9956f4f30..44cbf6d37 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Token Effects 01728a.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Card Token Effects 01728a.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.956008 + posX: -3.95600033 posY: 1.59753942 - posZ: -10.4412394 + posZ: -10.4412022 rotX: 359.919739 - rotY: 269.9997 - rotZ: 0.01683767 + rotY: 269.999756 + rotZ: 0.0168375317 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/CardCustom Professor Richard Pierson a1198e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/CardCustom Professor Richard Pierson a1198e.yaml similarity index 91% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/CardCustom Professor Richard Pierson a1198e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/CardCustom Professor Richard Pierson a1198e.yaml index bfedebbaf..adefa2cfb 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/CardCustom Professor Richard Pierson a1198e.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/CardCustom Professor Richard Pierson a1198e.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -27.2283 - posY: 1.63604331 - posZ: 10.0866051 + posY: 1.63599241 + posZ: 10.0866 rotX: 359.920074 - rotY: 270.154144 - rotZ: 0.0166572183 + rotY: 270.154327 + rotZ: 0.01662436 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965.yaml similarity index 94% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965.yaml index 377e2ff7c..11ee0733d 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965.yaml @@ -6,8 +6,8 @@ ColorDiffuse: ContainedObjects: - !include 'Custom_Model_Bag Set-aside 7d5965/Custom_Tile 970d46.yaml' - !include 'Custom_Model_Bag Set-aside 7d5965/Custom_Tile f5c86b.yaml' -- !include 'Custom_Model_Bag Set-aside 7d5965/Card Artillery Cannon e98c7e.yaml' -- !include 'Custom_Model_Bag Set-aside 7d5965/Card Flying Machine 85758c.yaml' +- !include 'Custom_Model_Bag Set-aside 7d5965/Card Artillery Cannon 1b664e.yaml' +- !include 'Custom_Model_Bag Set-aside 7d5965/Card Flying Machine 3bc219.yaml' - !include 'Custom_Model_Bag Set-aside 7d5965/Card Holland Tunnel cca3e4.yaml' CustomMesh: CastShadows: true @@ -52,10 +52,10 @@ Tooltip: true Transform: posX: 1.69640076 posY: 1.55831718 - posZ: 14.2791023 + posZ: 14.2791014 rotX: 359.955139 - rotY: 224.998032 - rotZ: 0.0686738044 + rotY: 224.9981 + rotZ: 0.06867276 scaleX: 2.0 scaleY: 2.0 scaleZ: 2.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965/Card Artillery Cannon e98c7e.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965/Card Artillery Cannon 1b664e.yaml similarity index 80% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965/Card Artillery Cannon e98c7e.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965/Card Artillery Cannon 1b664e.yaml index 58410349c..58f26b05d 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965/Card Artillery Cannon e98c7e.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965/Card Artillery Cannon 1b664e.yaml @@ -1,12 +1,12 @@ Autoraise: true -CardID: 266421 +CardID: 267721 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2664': - BackIsHidden: false + '2677': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ NumHeight: 4 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: e98c7e +GUID: 1b664e Grid: true GridProjection: false Hands: true @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 1.69642591 - posY: 3.65677381 - posZ: 14.2788324 - rotX: 359.947784 - rotY: 225.016083 - rotZ: 0.0584972762 + posX: 1.53535545 + posY: 2.80182528 + posZ: -7.878464 + rotX: 359.921143 + rotY: 270.000519 + rotZ: 0.0173076633 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965/Card Flying Machine 85758c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965/Card Flying Machine 3bc219.yaml similarity index 81% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965/Card Flying Machine 85758c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965/Card Flying Machine 3bc219.yaml index b4e1eb67c..60ceb2dcc 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965/Card Flying Machine 85758c.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965/Card Flying Machine 3bc219.yaml @@ -1,12 +1,12 @@ Autoraise: true -CardID: 266420 +CardID: 267720 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2664': - BackIsHidden: false + '2677': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ NumHeight: 4 @@ -16,7 +16,7 @@ CustomDeck: Description: '' DragSelectable: true GMNotes: '' -GUID: 85758c +GUID: 3bc219 Grid: true GridProjection: false Hands: true @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 1.69641328 - posY: 3.67134356 - posZ: 14.2788382 - rotX: 359.948578 - rotY: 224.993469 - rotZ: 0.0739257 + posX: 1.2288121 + posY: 2.60562539 + posZ: -5.205903 + rotX: 359.919739 + rotY: 270.002441 + rotZ: 0.0168336742 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965/Card Holland Tunnel cca3e4.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965/Card Holland Tunnel cca3e4.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965/Card Holland Tunnel cca3e4.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965/Card Holland Tunnel cca3e4.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965/Custom_Tile 970d46.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965/Custom_Tile 970d46.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965/Custom_Tile 970d46.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965/Custom_Tile 970d46.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965/Custom_Tile f5c86b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965/Custom_Tile f5c86b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965/Custom_Tile f5c86b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Model_Bag Set-aside 7d5965/Custom_Tile f5c86b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 064b0f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 064b0f.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 064b0f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 064b0f.yaml index 27738ff16..c840bbdb9 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 064b0f.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 064b0f.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -20.1646 - posY: 1.61076593 - posZ: 3.8967998 + posY: 1.61071861 + posZ: 3.89680052 rotX: 359.9201 - rotY: 270.009674 - rotZ: 0.01688687 + rotY: 270.009766 + rotZ: 0.01685324 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 662189.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 662189.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 662189.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 662189.yaml index c46d5c400..54782054d 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 662189.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 662189.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -33.2744 - posY: 1.63009751 - posZ: 7.4661 + posY: 1.63004827 + posZ: 7.46609926 rotX: 359.9201 - rotY: 270.0125 - rotZ: 0.0168823525 + rotY: 270.0127 + rotZ: 0.016851753 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 7234af.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 7234af.yaml index 06c319598..560f1fbfd 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 7234af.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 7234af.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -36.7733 - posY: 1.63391471 - posZ: 3.86000013 - rotX: 0.0168234669 - rotY: 180.0347 - rotZ: 0.0799497962 + posY: 1.6338675 + posZ: 3.86 + rotX: 0.0167909432 + rotY: 180.034622 + rotZ: 0.07995019 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 723bcf.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 723bcf.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 723bcf.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 723bcf.yaml index f8c50c0ac..433b8fd07 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 723bcf.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 723bcf.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -30.2244 - posY: 1.6225183 - posZ: -3.83 - rotX: 0.01713234 - rotY: 179.813049 - rotZ: 0.07988423 + posY: 1.62247539 + posZ: -3.82999969 + rotX: 0.0170998182 + rotY: 179.8131 + rotZ: 0.07988468 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 964dbc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 964dbc.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 964dbc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 964dbc.yaml index f9cbe974d..4b2d1fda1 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 964dbc.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 964dbc.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -33.4039 - posY: 1.62805152 - posZ: -0.09590024 + posY: 1.62800646 + posZ: -0.09590027 rotX: 359.9201 - rotY: 270.009918 - rotZ: 0.0168866478 + rotY: 270.009949 + rotZ: 0.0168537032 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 982a77.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 982a77.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 982a77.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 982a77.yaml index ff1133a9d..267190e3b 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 982a77.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile 982a77.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -26.9448 - posY: 1.62071 + posY: 1.62066174 posZ: 5.55920029 - rotX: 359.922363 + rotX: 359.9224 rotY: 300.013184 - rotZ: 359.97467 + rotZ: 359.97464 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile cb64cc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile cb64cc.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile cb64cc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile cb64cc.yaml index 94c0cdeaa..c9232d987 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile cb64cc.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile cb64cc.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -30.2244 - posY: 1.62478268 - posZ: 3.86000037 - rotX: 0.0171974991 + posY: 1.62473536 + posZ: 3.86000013 + rotX: 0.0171649624 rotY: 179.766342 - rotZ: 0.0798700154 + rotZ: 0.07986956 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile e0e879.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile e0e879.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile e0e879.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile e0e879.yaml index 096977982..1b9d667f5 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile e0e879.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Custom_Tile e0e879.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -26.853 - posY: 1.61951923 - posZ: 1.95030034 + posY: 1.6194731 + posZ: 1.9503001 rotX: 359.93924 rotY: 239.997772 - rotZ: 0.0545473173 + rotZ: 0.054518763 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Deck Agenda Deck c550d2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Deck Agenda Deck 1e366a.yaml similarity index 73% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Deck Agenda Deck c550d2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Deck Agenda Deck 1e366a.yaml index 1c25b0f3f..9f6439efc 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Deck Agenda Deck c550d2.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Deck Agenda Deck 1e366a.yaml @@ -39,26 +39,26 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -14.1090155 - posY: 1.69564044 - posZ: 16.7605762 - rotX: 0.009656 - rotY: 180.0 - rotZ: 180.087036 + posX: -2.72473669 + posY: 1.59795022 + posZ: 0.373332471 + rotX: 0.0269474462 + rotY: 179.999832 + rotZ: 0.0115358969 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 267108 + CardID: 267508 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2671': + '2675': BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1478823585996728668/6F92A2D1CC3EBAECB5D2FAF15C9F51BD8DB3A4C6/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/ NumHeight: 4 NumWidth: 6 @@ -67,7 +67,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 010c7a + GUID: e2aefb Grid: true GridProjection: false Hands: true @@ -84,26 +84,26 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -14.2918682 - posY: 1.66231275 - posZ: 16.88207 - rotX: 0.00752808759 - rotY: 180.000031 - rotZ: 180.005219 + posX: -6.819369 + posY: 1.651678 + posZ: 16.4129868 + rotX: 0.0166342668 + rotY: 179.97876 + rotZ: 180.080536 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 267109 + CardID: 267509 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2671': + '2675': BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361192097743/FFCDD7D9F8BD7B354BD40B7DB032DD14314C6FFC/ + BackURL: http://cloud-3.steamusercontent.com/ugc/1478823585996728668/6F92A2D1CC3EBAECB5D2FAF15C9F51BD8DB3A4C6/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/ NumHeight: 4 NumWidth: 6 @@ -112,7 +112,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 9136ed + GUID: c00a07 Grid: true GridProjection: false Hands: true @@ -129,12 +129,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -14.1620083 - posY: 1.619799 - posZ: 16.8800488 - rotX: 0.0171356183 - rotY: 180.0 - rotZ: 180.081573 + posX: -7.12321949 + posY: 1.6099025 + posZ: 16.5624447 + rotX: 0.0174377225 + rotY: 180.004944 + rotZ: 180.080383 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -148,14 +148,22 @@ CustomDeck: NumWidth: 6 Type: 0 UniqueBack: true + '2675': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/1478823585996728668/6F92A2D1CC3EBAECB5D2FAF15C9F51BD8DB3A4C6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192096211/A1557F29F0A5B8170571D64986D34562C950677B/ + NumHeight: 4 + NumWidth: 6 + Type: 0 + UniqueBack: true DeckIDs: - 267107 -- 267108 -- 267109 +- 267508 +- 267509 Description: '' DragSelectable: true GMNotes: '' -GUID: c550d2 +GUID: 1e366a Grid: true GridProjection: false Hands: false @@ -172,12 +180,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -2.72479463 - posY: 1.62076056 - posZ: 0.3733106 - rotX: 0.0168359224 - rotY: 179.999832 - rotZ: 0.08025588 + posX: -2.72460032 + posY: 1.62076032 + posZ: 0.3735004 + rotX: 0.016836768 + rotY: 179.9992 + rotZ: 0.08025566 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Deck Encounter Deck aab86c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Deck Encounter Deck d0e2f1.yaml similarity index 75% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Deck Encounter Deck aab86c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Deck Encounter Deck d0e2f1.yaml index 58d6ef491..c92d1154c 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Deck Encounter Deck aab86c.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 2 Phobos and Deimos 313523/Deck Encounter Deck d0e2f1.yaml @@ -5,14 +5,14 @@ ColorDiffuse: r: 0.713235259 ContainedObjects: - Autoraise: true - CardID: 266400 + CardID: 267700 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2664': - BackIsHidden: false + '2677': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ NumHeight: 4 @@ -22,7 +22,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: c9f31a + GUID: a684e9 Grid: true GridProjection: false Hands: true @@ -39,25 +39,25 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -3.927709 - posY: 2.02209783 - posZ: 5.757146 - rotX: 0.03659842 - rotY: 270.000061 - rotZ: 180.028076 + posX: -6.75884151 + posY: 1.87077272 + posZ: 10.6409245 + rotX: 0.0634365156 + rotY: 270.001 + rotZ: 180.863083 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266401 + CardID: 267701 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2664': - BackIsHidden: false + '2677': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ NumHeight: 4 @@ -67,7 +67,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: ae38cb + GUID: 85364f Grid: true GridProjection: false Hands: true @@ -84,1377 +84,837 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -3.92763138 - posY: 1.99612975 - posZ: 5.757226 - rotX: 359.952637 - rotY: 269.9992 - rotZ: 180.0603 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266402 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2664': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ - NumHeight: 4 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7e9555 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Trampling Crowd - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.92763114 - posY: 1.98656273 - posZ: 5.757227 - rotX: 359.952667 - rotY: 269.999176 - rotZ: 180.060333 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266403 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2664': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ - NumHeight: 4 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 63fc96 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Trampling Crowd - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.92762876 - posY: 1.97719145 - posZ: 5.757236 - rotX: 359.952667 - rotY: 269.999146 - rotZ: 180.063812 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266404 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2664': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ - NumHeight: 4 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ac9cc5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Tangling Red Weed - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.92763948 - posY: 1.96656513 - posZ: 5.75718832 - rotX: 359.952728 - rotY: 269.99942 - rotZ: 180.043137 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266405 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2664': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ - NumHeight: 4 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: f69739 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Tangling Red Weed - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.92765284 - posY: 1.95852888 - posZ: 5.757259 - rotX: 359.952667 - rotY: 270.000366 - rotZ: 180.069885 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266406 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2664': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ - NumHeight: 4 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 87ec6b - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Tangling Red Weed - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.92770815 - posY: 1.96520782 - posZ: 5.75714636 - rotX: 0.03729993 - rotY: 270.000061 - rotZ: 180.075073 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266407 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2664': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ - NumHeight: 4 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 90c716 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Panicked Civilian - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.92770886 - posY: 1.95508623 - posZ: 5.757146 - rotX: 0.05161879 - rotY: 270.000031 - rotZ: 180.016037 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266408 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2664': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ - NumHeight: 4 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e3c365 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Panicked Civilian - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.927652 - posY: 1.930823 - posZ: 5.757307 - rotX: 359.9527 - rotY: 270.000549 - rotZ: 180.082413 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266409 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2664': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ - NumHeight: 4 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 80cda3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Panicked Civilian - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.92770815 - posY: 1.93685555 - posZ: 5.75714636 - rotX: 0.03861105 - rotY: 270.000183 - rotZ: 180.099854 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266410 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2664': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ - NumHeight: 4 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 94856e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Panicked Civilian - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.92770815 - posY: 1.92603385 - posZ: 5.75714636 - rotX: 0.0377763659 - rotY: 270.000031 - rotZ: 180.039673 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266411 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2664': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ - NumHeight: 4 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e412aa - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Opportunistic Refugee - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.92770815 - posY: 1.91705608 - posZ: 5.75714636 - rotX: 0.0423397124 - rotY: 270.000061 - rotZ: 180.063553 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266412 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2664': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ - NumHeight: 4 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 85eba7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Opportunistic Refugee - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.927709 - posY: 1.90665913 - posZ: 5.757146 - rotX: 0.04192459 - rotY: 270.000031 - rotZ: 180.017685 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266413 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2664': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ - NumHeight: 4 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 3483b9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Opportunistic Refugee - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.927604 - posY: 1.88406134 - posZ: 5.75718927 - rotX: 359.95285 - rotY: 270.001953 - rotZ: 180.054581 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266414 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2664': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ - NumHeight: 4 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: db3d3d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: General Hysteria - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.92762947 - posY: 1.87101078 - posZ: 5.757233 - rotX: 359.953 - rotY: 269.999084 - rotZ: 180.06459 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266415 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2664': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ - NumHeight: 4 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e44b1f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: General Hysteria - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.92763758 - posY: 1.860781 - posZ: 5.75719643 - rotX: 359.953064 - rotY: 269.999451 - rotZ: 180.047989 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266416 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2664': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ - NumHeight: 4 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 25804d - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: General Hysteria - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.92765379 - posY: 1.85258591 - posZ: 5.757271 - rotX: 359.952972 - rotY: 270.000458 - rotZ: 180.0762 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266417 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2664': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ - NumHeight: 4 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9aa4b5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Black Smoke - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.92776346 - posY: 1.84659362 - posZ: 5.75708 - rotX: 359.9525 - rotY: 270.0 - rotZ: 180.033783 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266418 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2664': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ - NumHeight: 4 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 03fbbc - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Black Smoke - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.92770815 - posY: 1.84958482 - posZ: 5.75714636 - rotX: 0.0410312824 - rotY: 270.000061 - rotZ: 180.062454 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266419 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2664': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ - NumHeight: 4 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 92b0d4 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Black Smoke - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.92761135 - posY: 1.82178676 - posZ: 5.75713968 - rotX: 359.9534 - rotY: 270.000122 - rotZ: 180.026215 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266900 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2669': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ - NumHeight: 3 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '534965' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sweeping Heat-Ray - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -12.7876606 - posY: 1.83676994 - posZ: 6.48368835 - rotX: 359.948944 - rotY: 270.000519 - rotZ: 180.141922 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266901 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2669': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ - NumHeight: 3 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: fd91b7 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sweeping Heat-Ray - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -12.9722528 - posY: 1.8184936 - posZ: 6.24175549 - rotX: 359.9539 - rotY: 269.9933 - rotZ: 180.194778 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266902 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2669': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ - NumHeight: 3 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 9194ce - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Sweeping Heat-Ray - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -12.6258936 - posY: 1.82349575 - posZ: 6.08819675 - rotX: 359.952057 - rotY: 269.999847 - rotZ: 180.5669 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266903 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2669': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ - NumHeight: 3 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 38fad5 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Search Light Beam - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -12.3344193 - posY: 1.80703282 - posZ: 6.4101553 - rotX: 359.9522 - rotY: 270.0004 - rotZ: 180.120941 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266904 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2669': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ - NumHeight: 3 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 64779c - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Search Light Beam - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -12.6367645 - posY: 1.789097 - posZ: 5.870122 - rotX: 359.95105 - rotY: 269.998627 - rotZ: 180.1949 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266905 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2669': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ - NumHeight: 3 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 0f1268 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Search Light Beam - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -12.6797743 - posY: 1.80768812 - posZ: 6.447141 - rotX: 359.952057 - rotY: 270.001221 - rotZ: 181.084442 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266906 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2669': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ - NumHeight: 3 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 53734f - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Martian Technician - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -12.9699106 - posY: 1.77900541 - posZ: 6.434538 - rotX: 359.952057 - rotY: 270.0004 - rotZ: 180.1208 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266907 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2669': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ - NumHeight: 3 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ec8dec - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Martian Technician - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -12.42023 - posY: 1.76790416 - posZ: 6.19154453 - rotX: 359.95224 - rotY: 270.0 - rotZ: 180.0247 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266908 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2669': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ - NumHeight: 3 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6f31fd - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Martian Technician - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -12.661952 - posY: 1.7789706 - posZ: 5.92893839 - rotX: 359.952026 - rotY: 269.998383 - rotZ: 178.815933 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266909 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2669': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ - NumHeight: 3 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c9b746 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Martian Technician - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -12.5504055 - posY: 1.77141654 - posZ: 6.088148 - rotX: 359.956665 - rotY: 269.948 - rotZ: 178.4085 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266910 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2669': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ - NumHeight: 3 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a88c76 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Handling Machine - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -12.9453268 - posY: 1.76238787 - posZ: 6.290613 - rotX: 0.06100134 - rotY: 270.000977 - rotZ: 180.8578 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266911 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2669': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ - NumHeight: 3 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5b2c46 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Handling Machine - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -12.9329548 - posY: 1.75290227 - posZ: 6.33849764 - rotX: 0.0523924157 + posX: -7.28934956 + posY: 1.84126544 + posZ: 10.8785524 + rotX: 359.957123 rotY: 270.000854 - rotZ: 180.84407 + rotZ: 180.2295 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266912 + CardID: 267702 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2677': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ + NumHeight: 4 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: c30e8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Trampling Crowd + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.15166855 + posY: 1.85161161 + posZ: 10.3266077 + rotX: 359.95575 + rotY: 269.931915 + rotZ: 178.420273 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267703 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ + NumHeight: 4 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: f142cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Trampling Crowd + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.17827368 + posY: 1.82707071 + posZ: 10.2031374 + rotX: 359.952148 + rotY: 269.999634 + rotZ: 180.768066 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ + NumHeight: 4 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ea3c29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tangling Red Weeds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.16615343 + posY: 1.80191469 + posZ: 10.7382717 + rotX: 359.952972 + rotY: 269.997681 + rotZ: 180.090347 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ + NumHeight: 4 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 49a49e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tangling Red Weeds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.93657255 + posY: 1.82015717 + posZ: 11.1533947 + rotX: 359.951843 + rotY: 270.001251 + rotZ: 181.077927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ + NumHeight: 4 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: a8a327 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Tangling Red Weeds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.09580231 + posY: 1.87678432 + posZ: 10.8072166 + rotX: 359.95224 + rotY: 270.003662 + rotZ: 175.334015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267707 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ + NumHeight: 4 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d60f76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Panicked Civilian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.97053432 + posY: 1.78319836 + posZ: 10.7346659 + rotX: 359.951447 + rotY: 270.000122 + rotZ: 180.234909 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ + NumHeight: 4 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5fdd11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Panicked Civilian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.17272854 + posY: 1.79510307 + posZ: 10.8405933 + rotX: 359.951935 + rotY: 270.000977 + rotZ: 181.138214 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267709 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ + NumHeight: 4 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e6d392 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Panicked Civilian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.384608 + posY: 1.78464615 + posZ: 10.4775333 + rotX: 0.0223417617 + rotY: 270.0006 + rotZ: 181.177017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ + NumHeight: 4 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 11ac1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Panicked Civilian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.831865 + posY: 1.79482281 + posZ: 10.23097 + rotX: 359.920624 + rotY: 269.9979 + rotZ: 184.749039 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ + NumHeight: 4 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 7214c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Opportunistic Refugee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.36284828 + posY: 1.83069944 + posZ: 10.4752789 + rotX: 359.951782 + rotY: 269.996765 + rotZ: 175.470718 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ + NumHeight: 4 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 34edb3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Opportunistic Refugee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.09418535 + posY: 1.75366092 + posZ: 10.3980341 + rotX: 359.952 + rotY: 269.999054 + rotZ: 181.428314 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ + NumHeight: 4 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9be41f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Opportunistic Refugee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.92868567 + posY: 1.722989 + posZ: 10.4213085 + rotX: 359.951935 + rotY: 270.0 + rotZ: 180.058945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ + NumHeight: 4 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '423474' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: General Hysteria + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.96024036 + posY: 2.04479122 + posZ: 10.8388147 + rotX: 359.9581 + rotY: 270.012329 + rotZ: 161.617935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ + NumHeight: 4 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '729385' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: General Hysteria + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.20705032 + posY: 1.70619106 + posZ: 10.555706 + rotX: 359.9206 + rotY: 269.9994 + rotZ: 180.081909 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ + NumHeight: 4 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 9de9f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: General Hysteria + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.1841507 + posY: 1.9352206 + posZ: 10.5217657 + rotX: 359.958 + rotY: 269.9849 + rotZ: 167.208481 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ + NumHeight: 4 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: dd5431 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Black Smoke + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.949881 + posY: 1.60788858 + posZ: 10.7385159 + rotX: 359.9179 + rotY: 270.019257 + rotZ: 0.0146787185 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ + NumHeight: 4 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '006754' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Black Smoke + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.81816 + posY: 1.64367831 + posZ: 11.1374521 + rotX: 359.896271 + rotY: 270.0014 + rotZ: 359.960663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ + NumHeight: 4 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 28995c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Black Smoke + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.14967 + posY: 1.684351 + posZ: 10.8285208 + rotX: 359.919464 + rotY: 270.001282 + rotZ: 0.0167955961 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2674': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -1462,7 +922,457 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 35ca80 + GUID: b7a687 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sweeping Heat-Ray + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.9324627 + posY: 1.85147655 + posZ: -3.548372 + rotX: 0.0364938639 + rotY: 270.0015 + rotZ: 181.037537 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2674': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ + NumHeight: 3 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: ed6319 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sweeping Heat-Ray + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.4051943 + posY: 1.84486878 + posZ: -2.6871326 + rotX: 0.000262588757 + rotY: 269.999634 + rotZ: 178.286057 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2674': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ + NumHeight: 3 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: deeb02 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Sweeping Heat-Ray + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.9666576 + posY: 1.836208 + posZ: -2.92806649 + rotX: 0.0361353867 + rotY: 270.002136 + rotZ: 180.992111 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2674': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ + NumHeight: 3 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: e6188c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Search Light Beam + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.4013987 + posY: 1.8282541 + posZ: -3.05022764 + rotX: 0.0358129255 + rotY: 270.002075 + rotZ: 181.0558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267404 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2674': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ + NumHeight: 3 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cb7de2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Search Light Beam + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.1754055 + posY: 1.97573352 + posZ: -3.33040977 + rotX: 359.967041 + rotY: 269.991241 + rotZ: 170.417313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2674': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ + NumHeight: 3 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '564036' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Search Light Beam + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.81101 + posY: 1.80684662 + posZ: -3.28871918 + rotX: 359.952484 + rotY: 269.997742 + rotZ: 178.818954 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2674': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ + NumHeight: 3 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0dedff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Martian Technician + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.0105934 + posY: 1.79556668 + posZ: -2.69907117 + rotX: 0.0355848372 + rotY: 270.002136 + rotZ: 180.906708 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2674': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ + NumHeight: 3 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6826c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Martian Technician + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.7216635 + posY: 1.7919054 + posZ: -2.66484356 + rotX: 0.03645171 + rotY: 270.00174 + rotZ: 181.054321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2674': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ + NumHeight: 3 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0675da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Martian Technician + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.100811 + posY: 1.761666 + posZ: -3.19721437 + rotX: 0.0454738177 + rotY: 270.001221 + rotZ: 180.203171 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2674': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ + NumHeight: 3 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 381c24 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Martian Technician + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.7097759 + posY: 1.75093091 + posZ: -3.460492 + rotX: 0.0348324 + rotY: 270.000427 + rotZ: 180.106812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267410 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2674': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ + NumHeight: 3 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: d3bec9 Grid: true GridProjection: false Hands: true @@ -1479,27 +1389,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.6990976 - posY: 1.73109448 - posZ: 6.550235 - rotX: 359.952057 - rotY: 270.00116 - rotZ: 180.6733 + posX: -13.7490911 + posY: 1.75872517 + posZ: -3.03785515 + rotX: 359.952576 + rotY: 270.0009 + rotZ: 178.6434 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266913 + CardID: 267411 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -1507,7 +1417,97 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: ceee7a + GUID: d19fab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Handling Machine + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.1113138 + posY: 1.75179267 + posZ: -3.13707137 + rotX: 0.0449036434 + rotY: 270.001038 + rotZ: 180.8343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2674': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ + NumHeight: 3 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: df0679 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Handling Machine + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.0707521 + posY: 1.739896 + posZ: -3.02546358 + rotX: 0.03610193 + rotY: 270.0021 + rotZ: 180.993851 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267413 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2674': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ + NumHeight: 3 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 927c6d Grid: true GridProjection: false Hands: true @@ -1524,27 +1524,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.7379971 - posY: 1.71056128 - posZ: 6.150592 - rotX: 359.9524 - rotY: 270.0 - rotZ: 180.025223 + posX: -13.7317514 + posY: 1.713524 + posZ: -2.86069036 + rotX: 0.0213335287 + rotY: 270.001251 + rotZ: 180.185257 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266914 + CardID: 267414 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -1552,7 +1552,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: e047be + GUID: 0160fa Grid: true GridProjection: false Hands: true @@ -1569,27 +1569,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.9181089 - posY: 1.72010469 - posZ: 6.33414364 - rotX: 359.952057 - rotY: 269.9992 - rotZ: 179.133652 + posX: -14.1116161 + posY: 1.70494974 + posZ: -2.82771277 + rotX: 0.03839522 + rotY: 270.001526 + rotZ: 180.254257 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266915 + CardID: 267415 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -1597,7 +1597,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 58cd2b + GUID: 7c2447 Grid: true GridProjection: false Hands: true @@ -1614,27 +1614,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.6283989 - posY: 1.6832335 - posZ: 6.67682171 - rotX: 359.9529 - rotY: 270.0006 - rotZ: 180.089874 + posX: -13.8469458 + posY: 1.69424224 + posZ: -2.8296454 + rotX: 0.0221196488 + rotY: 270.001251 + rotZ: 180.184937 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266916 + CardID: 267416 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -1642,7 +1642,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 6358c6 + GUID: 74162b Grid: true GridProjection: false Hands: true @@ -1659,27 +1659,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.9783211 - posY: 1.65827584 - posZ: 6.16383171 - rotX: 359.9553 - rotY: 270.000061 - rotZ: 180.12532 + posX: -13.9195662 + posY: 1.67035687 + posZ: -2.87534976 + rotX: 0.03568758 + rotY: 270.002 + rotZ: 180.697662 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266917 + CardID: 267417 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -1687,7 +1687,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: a58b43 + GUID: a89156 Grid: true GridProjection: false Hands: true @@ -1704,76 +1704,76 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.8157749 - posY: 1.6148411 - posZ: 6.366756 - rotX: 359.9202 - rotY: 270.000183 - rotZ: 180.017471 + posX: -11.836009 + posY: 1.78521478 + posZ: 21.5405064 + rotX: 359.9198 + rotY: 270.005981 + rotZ: 357.547546 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' CustomDeck: - '2664': - BackIsHidden: false + '2674': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ + NumHeight: 3 + NumWidth: 6 + Type: 0 + UniqueBack: false + '2677': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192031260/E01E5EC65C20AA29401910A96529CDF6B6956AD5/ NumHeight: 4 NumWidth: 6 Type: 0 UniqueBack: false - '2669': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ - NumHeight: 3 - NumWidth: 6 - Type: 0 - UniqueBack: false DeckIDs: -- 266400 -- 266401 -- 266402 -- 266403 -- 266404 -- 266405 -- 266406 -- 266407 -- 266408 -- 266409 -- 266410 -- 266411 -- 266412 -- 266413 -- 266414 -- 266415 -- 266416 -- 266417 -- 266418 -- 266419 -- 266900 -- 266901 -- 266902 -- 266903 -- 266904 -- 266905 -- 266906 -- 266907 -- 266908 -- 266909 -- 266910 -- 266911 -- 266912 -- 266913 -- 266914 -- 266915 -- 266916 -- 266917 +- 267700 +- 267701 +- 267702 +- 267703 +- 267704 +- 267705 +- 267706 +- 267707 +- 267708 +- 267709 +- 267710 +- 267711 +- 267712 +- 267713 +- 267714 +- 267715 +- 267716 +- 267719 +- 267718 +- 267717 +- 267400 +- 267401 +- 267402 +- 267403 +- 267404 +- 267405 +- 267406 +- 267407 +- 267408 +- 267409 +- 267410 +- 267411 +- 267412 +- 267413 +- 267414 +- 267415 +- 267416 +- 267417 Description: '' DragSelectable: true GMNotes: '' -GUID: aab86c +GUID: d0e2f1 Grid: true GridProjection: false Hands: false @@ -1790,12 +1790,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.9279 - posY: 1.79251933 - posZ: 5.75710154 + posX: -3.92719984 + posY: 1.79251826 + posZ: 5.757101 rotX: 359.919739 - rotY: 269.991455 - rotZ: 180.01683 + rotY: 270.000031 + rotZ: 180.016815 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1.ttslua new file mode 100644 index 000000000..cae387265 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + 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 + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) 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) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=400, width=400, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == 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 + memoryList[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} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + 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 +end + +--Resets bag to starting status +function buttonClick_reset() + 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={2,0.3,0}, rotation={0,90,0}, height=350, width=800, +-- font_size=250, color={0,0,0}, font_color={1,1,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.setPosition(entry.pos) + obj.setRotation(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, + }) + 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 deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + 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 + +--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 The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1.yaml similarity index 57% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1.yaml index 88f0e1cf7..4a40077ba 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1.yaml @@ -36,10 +36,11 @@ ContainedObjects: - !include 'Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 59d06d.yaml' - !include 'Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card General Motors Building 59f8a9.yaml' +- !include 'Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 6436eb.yaml' +- !include 'Custom_Model_Bag 3 The Thirsting Void a0d2b1/Deck Encounter Deck 69b73d.yaml' - !include 'Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 7234af.yaml' - !include 'Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Model_Bag Set-aside 7a167a.yaml' -- !include 'Custom_Model_Bag 3 The Thirsting Void a0d2b1/Deck Encounter Deck 86a87a.yaml' - !include 'Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag The investigators discovered some of the Martians'' weaknesses 8e9499.yaml' - !include 'Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Times Square 92a3d2.yaml' @@ -85,7 +86,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: false LuaScript: !include 'Custom_Model_Bag 3 The Thirsting Void a0d2b1.ttslua' -LuaScriptState: '{"ml":{"0683a6":{"lock":false,"pos":{"x":2.5417,"y":1.3917,"z":-4.1378},"rot":{"x":359.9832,"y":0.0008,"z":359.9197}},"0e619c":{"lock":false,"pos":{"x":-33.9406,"y":1.6294,"z":1.9878},"rot":{"x":359.939,"y":240.2362,"z":0.0543}},"13e962":{"lock":false,"pos":{"x":-36.7745,"y":1.6317,"z":-3.8288},"rot":{"x":0.0169,"y":179.9898,"z":0.0799}},"143177":{"lock":false,"pos":{"x":-36.7732,"y":1.6486,"z":7.57},"rot":{"x":359.9201,"y":269.9997,"z":180.0169}},"1b6eb1":{"lock":false,"pos":{"x":-31.0312,"y":1.6538,"z":-5.5705},"rot":{"x":359.9201,"y":270.0015,"z":180.9124}},"1cfcd8":{"lock":false,"pos":{"x":-23.6766,"y":1.6281,"z":-0.0297},"rot":{"x":359.9201,"y":270.0077,"z":180.0168}},"1e47a1":{"lock":false,"pos":{"x":-33.7422,"y":1.6268,"z":-5.8858},"rot":{"x":359.939,"y":240.301,"z":0.0542}},"43c278":{"lock":false,"pos":{"x":-23.9177,"y":1.6441,"z":-1.865},"rot":{"x":359.9201,"y":269.9958,"z":180.8659}},"507873":{"lock":false,"pos":{"x":-27.0204,"y":1.6174,"z":-5.9677},"rot":{"x":359.9224,"y":300.0099,"z":359.9747}},"51b850":{"lock":false,"pos":{"x":2.5947,"y":1.3927,"z":-0.2028},"rot":{"x":359.9832,"y":0.0008,"z":359.9197}},"533582":{"lock":false,"pos":{"x":-20.1668,"y":1.6084,"z":-4.1121},"rot":{"x":359.9317,"y":315.1504,"z":359.9553}},"59d06d":{"lock":false,"pos":{"x":-26.9777,"y":1.6184,"z":-2.4034},"rot":{"x":359.9392,"y":240.0526,"z":0.0545}},"59f8a9":{"lock":false,"pos":{"x":-23.6766,"y":1.6259,"z":-7.7},"rot":{"x":359.9201,"y":269.9993,"z":180.0169}},"7234af":{"lock":false,"pos":{"x":-36.7734,"y":1.6339,"z":3.8601},"rot":{"x":0.0169,"y":180.0052,"z":0.0799}},"7a167a":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.2789},"rot":{"x":359.9551,"y":225.0009,"z":0.0687}},"86a87a":{"lock":false,"pos":{"x":-3.9279,"y":1.7829,"z":5.7572},"rot":{"x":359.9197,"y":269.998,"z":180.0168}},"8e9499":{"lock":false,"pos":{"x":2.6428,"y":1.3938,"z":3.4968},"rot":{"x":359.9832,"y":0.0008,"z":359.9197}},"92a3d2":{"lock":false,"pos":{"x":-30.2243,"y":1.6384,"z":3.86},"rot":{"x":359.9201,"y":269.9964,"z":180.0169}},"986ddd":{"lock":false,"pos":{"x":-36.7732,"y":1.6441,"z":-7.7},"rot":{"x":359.9201,"y":269.9998,"z":180.0168}},"a318ba":{"lock":false,"pos":{"x":-33.4763,"y":1.6298,"z":5.5945},"rot":{"x":359.9224,"y":300.1253,"z":359.9745}},"a73f89":{"lock":false,"pos":{"x":-2.725,"y":1.6208,"z":0.3689},"rot":{"x":0.0168,"y":180.0202,"z":0.0803}},"ab952b":{"lock":false,"pos":{"x":-38.0369,"y":1.6632,"z":-9.3684},"rot":{"x":359.9201,"y":269.9999,"z":180.9491}},"afe2c5":{"lock":false,"pos":{"x":-17.1201,"y":1.6167,"z":-7.7},"rot":{"x":359.9201,"y":269.9993,"z":180.0169}},"b6a70f":{"lock":false,"pos":{"x":-30.2237,"y":1.6361,"z":-3.8313},"rot":{"x":359.9201,"y":269.9796,"z":180.0169}},"becd49":{"lock":false,"pos":{"x":-27.1866,"y":1.62,"z":1.838},"rot":{"x":359.9224,"y":300.02,"z":359.9747}},"c43615":{"lock":false,"pos":{"x":-33.6095,"y":1.6278,"z":-1.8932},"rot":{"x":359.9223,"y":299.8525,"z":359.9749}},"c7a9b1":{"lock":false,"pos":{"x":-36.7732,"y":1.6464,"z":-0.0302},"rot":{"x":359.9201,"y":269.9991,"z":180.0168}},"d6cc50":{"lock":false,"pos":{"x":-38.5548,"y":1.6663,"z":-1.6835},"rot":{"x":359.9202,"y":269.9995,"z":180.9544}},"f8f2ef":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9993,"z":0.0168}},"fdc52f":{"lock":false,"pos":{"x":-20.5628,"y":1.6079,"z":-7.6857},"rot":{"x":359.9201,"y":270.0124,"z":0.0169}}}}' +LuaScriptState: '{"ml":{"0683a6":{"lock":false,"pos":{"x":2.5417,"y":1.3917,"z":-4.1378},"rot":{"x":359.9832,"y":0.0008,"z":359.9197}},"0e619c":{"lock":false,"pos":{"x":-33.9406,"y":1.6294,"z":1.9878},"rot":{"x":359.939,"y":240.2362,"z":0.0543}},"13e962":{"lock":false,"pos":{"x":-36.7745,"y":1.6316,"z":-3.8288},"rot":{"x":0.0169,"y":179.99,"z":0.08}},"143177":{"lock":false,"pos":{"x":-36.7732,"y":1.6486,"z":7.57},"rot":{"x":359.9201,"y":269.9997,"z":180.0168}},"1b6eb1":{"lock":false,"pos":{"x":-31.0312,"y":1.6538,"z":-5.5705},"rot":{"x":359.9201,"y":270.0015,"z":180.9124}},"1cfcd8":{"lock":false,"pos":{"x":-23.6766,"y":1.6281,"z":-0.0297},"rot":{"x":359.9201,"y":270.0077,"z":180.0168}},"1e47a1":{"lock":false,"pos":{"x":-33.7422,"y":1.6268,"z":-5.8858},"rot":{"x":359.9389,"y":240.301,"z":0.0542}},"43c278":{"lock":false,"pos":{"x":-23.9177,"y":1.6441,"z":-1.865},"rot":{"x":359.9201,"y":269.9958,"z":180.8658}},"507873":{"lock":false,"pos":{"x":-27.0204,"y":1.6174,"z":-5.9677},"rot":{"x":359.9224,"y":300.0099,"z":359.9747}},"51b850":{"lock":false,"pos":{"x":2.5947,"y":1.3927,"z":-0.2028},"rot":{"x":359.9832,"y":0.0008,"z":359.9197}},"533582":{"lock":false,"pos":{"x":-20.1668,"y":1.6084,"z":-4.1121},"rot":{"x":359.9317,"y":315.1504,"z":359.9552}},"59d06d":{"lock":false,"pos":{"x":-26.9777,"y":1.6184,"z":-2.4034},"rot":{"x":359.9392,"y":240.0526,"z":0.0545}},"59f8a9":{"lock":false,"pos":{"x":-23.6766,"y":1.6258,"z":-7.7},"rot":{"x":359.9201,"y":269.9993,"z":180.0168}},"6436eb":{"lock":false,"pos":{"x":-32.0494,"y":1.6261,"z":-0.0812},"rot":{"x":0.0168,"y":179.9968,"z":0.0799}},"69b73d":{"lock":false,"pos":{"x":-3.9274,"y":1.7829,"z":5.757},"rot":{"x":359.9197,"y":270,"z":180.0168}},"7234af":{"lock":false,"pos":{"x":-36.7734,"y":1.6339,"z":3.8601},"rot":{"x":0.0168,"y":180.0052,"z":0.08}},"7a167a":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.2789},"rot":{"x":359.9551,"y":225.0009,"z":0.0687}},"8e9499":{"lock":false,"pos":{"x":2.6428,"y":1.3938,"z":3.4968},"rot":{"x":359.9832,"y":0.0008,"z":359.9197}},"92a3d2":{"lock":false,"pos":{"x":-30.2243,"y":1.6383,"z":3.86},"rot":{"x":359.9201,"y":269.9964,"z":180.0168}},"986ddd":{"lock":false,"pos":{"x":-36.7732,"y":1.6441,"z":-7.7},"rot":{"x":359.9201,"y":269.9998,"z":180.0168}},"a318ba":{"lock":false,"pos":{"x":-33.4763,"y":1.6298,"z":5.5945},"rot":{"x":359.9224,"y":300.1253,"z":359.9745}},"a73f89":{"lock":false,"pos":{"x":-2.725,"y":1.6208,"z":0.3689},"rot":{"x":0.0168,"y":180.0203,"z":0.0803}},"ab952b":{"lock":false,"pos":{"x":-38.0369,"y":1.6631,"z":-9.3684},"rot":{"x":359.9201,"y":269.9999,"z":180.9491}},"afe2c5":{"lock":false,"pos":{"x":-17.1201,"y":1.6167,"z":-7.7},"rot":{"x":359.9201,"y":269.9993,"z":180.0168}},"b6a70f":{"lock":false,"pos":{"x":-30.2237,"y":1.6361,"z":-3.8313},"rot":{"x":359.9201,"y":269.9796,"z":180.0168}},"becd49":{"lock":false,"pos":{"x":-27.1866,"y":1.6199,"z":1.838},"rot":{"x":359.9224,"y":300.02,"z":359.9746}},"c43615":{"lock":false,"pos":{"x":-33.6095,"y":1.6278,"z":-1.8932},"rot":{"x":359.9223,"y":299.8525,"z":359.9749}},"c7a9b1":{"lock":false,"pos":{"x":-36.7732,"y":1.6463,"z":-0.0302},"rot":{"x":359.9201,"y":269.9991,"z":180.0168}},"d6cc50":{"lock":false,"pos":{"x":-38.5548,"y":1.6662,"z":-1.6835},"rot":{"x":359.9202,"y":269.9995,"z":180.9544}},"f8f2ef":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9197,"y":269.9993,"z":0.0168}},"fdc52f":{"lock":false,"pos":{"x":-20.5628,"y":1.6079,"z":-7.6857},"rot":{"x":359.9201,"y":270.0123,"z":0.0169}}}}' MaterialIndex: -1 MeasureMovement: false MeshIndex: -1 @@ -100,7 +101,7 @@ Transform: posZ: -8.947 rotX: 359.9201 rotY: 270.0628 - rotZ: 0.0167860463 + rotZ: 0.016786024 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag The investigators did not discover some of the Martians' weaknesses 51b850.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag The investigators did not discover some of the Martians' weaknesses 51b850.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag The investigators did not discover some of the Martians' weaknesses 51b850.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag The investigators did not discover some of the Martians' weaknesses 51b850.yaml index 8fdb2ca64..1e2fa8a3d 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag The investigators did not discover some of the Martians' weaknesses 51b850.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag The investigators did not discover some of the Martians' weaknesses 51b850.yaml @@ -209,11 +209,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 2.594701 + posX: 2.59470081 posY: 1.3927331 - posZ: -0.202799335 + posZ: -0.202799112 rotX: 359.983154 - rotY: 0.000799337169 + rotY: 0.000772557338 rotZ: 359.919678 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag The investigators discovered some of the Martians' weaknesses 8e9499.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag The investigators discovered some of the Martians' weaknesses 8e9499.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag The investigators discovered some of the Martians' weaknesses 8e9499.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag The investigators discovered some of the Martians' weaknesses 8e9499.yaml index 9c6f8954b..1f64cf372 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag The investigators discovered some of the Martians' weaknesses 8e9499.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag The investigators discovered some of the Martians' weaknesses 8e9499.yaml @@ -210,10 +210,10 @@ Sticky: true Tooltip: true Transform: posX: 2.64280152 - posY: 1.39375281 - posZ: 3.49680114 + posY: 1.39375329 + posZ: 3.496801 rotX: 359.983154 - rotY: 0.0008548585 + rotY: 0.0007973819 rotZ: 359.919678 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6.yaml similarity index 95% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6.yaml index 2bc703d40..e01eb9172 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6.yaml @@ -33,11 +33,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 2.541701 - posY: 1.39165115 + posX: 2.54170084 + posY: 1.39165092 posZ: -4.13779974 rotX: 359.983154 - rotY: 0.0008383439 + rotY: 0.000784175762 rotZ: 359.919678 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile 1cc49b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile 1cc49b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile 1cc49b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile 1cc49b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile 60e324.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile 60e324.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile 60e324.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile 60e324.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile 76cfbe.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile 76cfbe.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile 76cfbe.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile 76cfbe.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile c09eb2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile c09eb2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile c09eb2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile c09eb2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile d13aab.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile d13aab.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile d13aab.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile d13aab.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile e2d6e2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile e2d6e2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile e2d6e2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile e2d6e2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile e7edaf.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile e7edaf.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile e7edaf.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile e7edaf.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile f665f1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile f665f1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile f665f1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Bag Tokens for Evacuated Locations setup 0683a6/Custom_Tile f665f1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card 69th Regiment Armory 986ddd.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card 69th Regiment Armory 986ddd.yaml similarity index 93% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card 69th Regiment Armory 986ddd.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card 69th Regiment Armory 986ddd.yaml index a7a5769af..4d9c95d48 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card 69th Regiment Armory 986ddd.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card 69th Regiment Armory 986ddd.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -36.7732 - posY: 1.64411628 + posY: 1.64407551 posZ: -7.70000029 rotX: 359.9201 - rotY: 269.999756 - rotZ: 180.016815 + rotY: 269.9998 + rotZ: 180.0168 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Abandoned Theater 1cfcd8.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Abandoned Theater 1cfcd8.yaml similarity index 93% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Abandoned Theater 1cfcd8.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Abandoned Theater 1cfcd8.yaml index f7338e419..aef716b82 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Abandoned Theater 1cfcd8.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Abandoned Theater 1cfcd8.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -23.6766 - posY: 1.62811244 - posZ: -0.029699849 + posY: 1.62806737 + posZ: -0.0296998937 rotX: 359.9201 rotY: 270.0077 - rotZ: 180.016815 + rotZ: 180.016785 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Abandoned Theater 43c278.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Abandoned Theater 43c278.yaml similarity index 95% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Abandoned Theater 43c278.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Abandoned Theater 43c278.yaml index 3078e8ec6..773a6f9e2 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Abandoned Theater 43c278.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Abandoned Theater 43c278.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -23.9177 - posY: 1.64411259 + posY: 1.64406848 posZ: -1.865 rotX: 359.9201 rotY: 269.9958 - rotZ: 180.86586 + rotZ: 180.865829 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Central Park afe2c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Central Park afe2c5.yaml similarity index 95% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Central Park afe2c5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Central Park afe2c5.yaml index b688bf91c..4fa9bc3da 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Central Park afe2c5.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Central Park afe2c5.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -17.1201 - posY: 1.61671066 + posY: 1.61666989 posZ: -7.7 rotX: 359.9201 rotY: 269.999268 - rotZ: 180.016861 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Collapsed Wreckage ab952b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Collapsed Wreckage ab952b.yaml similarity index 91% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Collapsed Wreckage ab952b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Collapsed Wreckage ab952b.yaml index 757fda43e..af00b5571 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Collapsed Wreckage ab952b.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Collapsed Wreckage ab952b.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -38.0369 - posY: 1.66318035 - posZ: -9.368402 + posY: 1.66314042 + posZ: -9.3684 rotX: 359.9201 - rotY: 269.999847 - rotZ: 180.949127 + rotY: 269.999939 + rotZ: 180.949081 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Derelict Skyscraper 1b6eb1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Derelict Skyscraper 1b6eb1.yaml similarity index 93% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Derelict Skyscraper 1b6eb1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Derelict Skyscraper 1b6eb1.yaml index 43784fbcb..05baabf41 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Derelict Skyscraper 1b6eb1.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Derelict Skyscraper 1b6eb1.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -31.0312 - posY: 1.65382922 + posY: 1.65378737 posZ: -5.57050037 rotX: 359.920074 - rotY: 270.0015 - rotZ: 180.9124 + rotY: 270.001526 + rotZ: 180.912354 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Derelict Skyscraper b6a70f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Derelict Skyscraper b6a70f.yaml similarity index 93% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Derelict Skyscraper b6a70f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Derelict Skyscraper b6a70f.yaml index 9693056a7..b7d00a168 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Derelict Skyscraper b6a70f.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Derelict Skyscraper b6a70f.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -30.2237 - posY: 1.63612235 + posY: 1.63607943 posZ: -3.8313 rotX: 359.9201 - rotY: 269.979584 - rotZ: 180.016861 + rotY: 269.9796 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card General Motors Building 59f8a9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card General Motors Building 59f8a9.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card General Motors Building 59f8a9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card General Motors Building 59f8a9.yaml index d58e19fdd..5b7054bff 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card General Motors Building 59f8a9.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card General Motors Building 59f8a9.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -23.6766 - posY: 1.6258533 + posY: 1.62581253 posZ: -7.700001 rotX: 359.9201 rotY: 269.999268 - rotZ: 180.016861 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Statue of Liberty 143177.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Statue of Liberty 143177.yaml similarity index 92% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Statue of Liberty 143177.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Statue of Liberty 143177.yaml index e62e8da83..444fdf996 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Statue of Liberty 143177.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Statue of Liberty 143177.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -36.7732 - posY: 1.648612 - posZ: 7.56999969 + posY: 1.64856255 + posZ: 7.57 rotX: 359.9201 - rotY: 269.999664 - rotZ: 180.016861 + rotY: 269.9997 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Times Square 92a3d2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Times Square 92a3d2.yaml similarity index 95% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Times Square 92a3d2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Times Square 92a3d2.yaml index 9030fe634..c4c7f181e 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Times Square 92a3d2.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Times Square 92a3d2.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -30.2243 - posY: 1.63838756 + posY: 1.63834023 posZ: 3.86000061 rotX: 359.9201 rotY: 269.9964 - rotZ: 180.016876 + rotZ: 180.01683 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Token Effects f8f2ef.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Token Effects f8f2ef.yaml similarity index 93% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Token Effects f8f2ef.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Token Effects f8f2ef.yaml index a48d78c4b..b8d2f3c32 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Token Effects f8f2ef.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Token Effects f8f2ef.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.95599985 + posX: -3.956 posY: 1.59753942 - posZ: -10.4412012 + posZ: -10.4412022 rotX: 359.919739 rotY: 269.999268 - rotZ: 0.016838219 + rotZ: 0.01683826 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Vacant Square c7a9b1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Vacant Square c7a9b1.yaml similarity index 91% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Vacant Square c7a9b1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Vacant Square c7a9b1.yaml index 71ed89385..7d96332b0 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Vacant Square c7a9b1.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Vacant Square c7a9b1.yaml @@ -34,11 +34,11 @@ Sticky: true Tooltip: true Transform: posX: -36.7732 - posY: 1.64637458 - posZ: -0.0301997177 + posY: 1.6463294 + posZ: -0.0301992018 rotX: 359.9201 - rotY: 269.999084 - rotZ: 180.01683 + rotY: 269.999176 + rotZ: 180.016815 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Vacant Square d6cc50.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Vacant Square d6cc50.yaml similarity index 89% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Vacant Square d6cc50.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Vacant Square d6cc50.yaml index 191a1468f..d7a841f96 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Vacant Square d6cc50.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Card Vacant Square d6cc50.yaml @@ -33,12 +33,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -38.5548019 - posY: 1.66626537 - posZ: -1.68350029 + posX: -38.5548 + posY: 1.66622114 + posZ: -1.68350041 rotX: 359.920166 - rotY: 269.999451 - rotZ: 180.954437 + rotY: 269.9995 + rotZ: 180.954391 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Model_Bag Set-aside 7a167a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Model_Bag Set-aside 7a167a.yaml similarity index 83% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Model_Bag Set-aside 7a167a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Model_Bag Set-aside 7a167a.yaml index efccf5340..3f291f91e 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Model_Bag Set-aside 7a167a.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Model_Bag Set-aside 7a167a.yaml @@ -5,16 +5,16 @@ ColorDiffuse: r: 0.02148666 ContainedObjects: - Autoraise: true - CardID: 266618 + CardID: 267718 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2666': - BackIsHidden: false + '2677': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192065227/7292715CFD206270336B56C0A2952AC0633D1E60/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/ NumHeight: 4 NumWidth: 5 Type: 0 @@ -22,7 +22,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: a203af + GUID: d3b02d Grid: true GridProjection: false Hands: true @@ -39,12 +39,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: 1.69641316 - posY: 3.671738 - posZ: 14.2788382 - rotX: 359.94458 - rotY: 224.94487 - rotZ: 0.06217197 + posX: 1.696429 + posY: 3.656701 + posZ: 14.2788181 + rotX: 359.947632 + rotY: 225.02858 + rotZ: 0.0584828034 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 @@ -90,12 +90,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 1.69640052 + posX: 1.69640088 posY: 1.55831623 - posZ: 14.2789 + posZ: 14.2789011 rotX: 359.955139 rotY: 225.000916 - rotZ: 0.06866988 + rotZ: 0.06866922 scaleX: 2.0 scaleY: 2.0 scaleZ: 2.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 0e619c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 0e619c.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 0e619c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 0e619c.yaml index a33d925e0..5ba72192e 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 0e619c.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 0e619c.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -33.9406 - posY: 1.62941349 - posZ: 1.9878 - rotX: 359.939026 - rotY: 240.236221 - rotZ: 0.05429412 + posY: 1.62936723 + posZ: 1.98780024 + rotX: 359.939 + rotY: 240.2362 + rotZ: 0.0542658567 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 13e962.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 13e962.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 13e962.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 13e962.yaml index 9ce53768e..d5bdbdb80 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 13e962.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 13e962.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -36.7745 - posY: 1.63165224 - posZ: -3.82879949 - rotX: 0.0168860368 - rotY: 179.989975 - rotZ: 0.0799504444 + posY: 1.63160932 + posZ: -3.8288002 + rotX: 0.0168532543 + rotY: 179.989914 + rotZ: 0.0799367 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 1e47a1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 1e47a1.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 1e47a1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 1e47a1.yaml index 63c0dd3a2..1c3494f44 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 1e47a1.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 1e47a1.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -33.7422 - posY: 1.62681854 - posZ: -5.8858 - rotX: 359.938965 - rotY: 240.301025 - rotZ: 0.0542228967 + posY: 1.62677658 + posZ: -5.88580036 + rotX: 359.938934 + rotY: 240.301 + rotZ: 0.0541972332 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 507873.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 507873.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 507873.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 507873.yaml index d99818469..50cb97832 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 507873.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 507873.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -27.0204 - posY: 1.61742139 - posZ: -5.96770048 - rotX: 359.922363 - rotY: 300.009857 - rotZ: 359.9747 + posY: 1.61737955 + posZ: -5.9677 + rotX: 359.9224 + rotY: 300.0099 + rotZ: 359.97467 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 533582.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 533582.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 533582.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 533582.yaml index a4817b3f7..92baaf67d 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 533582.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 533582.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -20.1668 - posY: 1.60841084 - posZ: -4.1121006 - rotX: 359.931671 - rotY: 315.15036 - rotZ: 359.955261 + posY: 1.608368 + posZ: -4.1121 + rotX: 359.9317 + rotY: 315.1504 + rotZ: 359.955231 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 59d06d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 59d06d.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 59d06d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 59d06d.yaml index f5c7dd71a..860b77149 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 59d06d.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 59d06d.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -26.9777 - posY: 1.6184113 + posY: 1.61836743 posZ: -2.40339971 - rotX: 359.9392 - rotY: 240.052551 - rotZ: 0.0544882156 + rotX: 359.939178 + rotY: 240.052612 + rotZ: 0.0544618741 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 6436eb.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 6436eb.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 6436eb.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 6436eb.yaml index 4834d4665..ac9246874 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 1 First Contact f70a0d/Custom_Tile 6436eb.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 6436eb.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -32.0494 - posY: 1.62616694 - posZ: -0.08119984 - rotX: 0.01687565 - rotY: 179.997269 - rotZ: 0.07993799 + posY: 1.62612188 + posZ: -0.08119982 + rotX: 0.01684375 + rotY: 179.996765 + rotZ: 0.07993841 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 7234af.yaml similarity index 96% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 7234af.yaml index 2c16127c0..92f2d99d3 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 7234af.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile 7234af.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -36.7734 - posY: 1.63391471 - posZ: 3.86010027 - rotX: 0.0168644767 - rotY: 180.005157 - rotZ: 0.07994061 + posY: 1.6338675 + posZ: 3.86009955 + rotX: 0.0168321487 + rotY: 180.005081 + rotZ: 0.079941906 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile a318ba.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile a318ba.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile a318ba.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile a318ba.yaml index 4e5a222ee..3c1ecece0 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile a318ba.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile a318ba.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -33.4763 - posY: 1.62982821 + posY: 1.6297797 posZ: 5.5945 rotX: 359.922424 rotY: 300.1253 - rotZ: 359.974518 + rotZ: 359.9745 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile becd49.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile becd49.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile becd49.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile becd49.yaml index 664981a63..f0d79789d 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile becd49.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile becd49.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -27.1866 - posY: 1.61995161 + posY: 1.61990535 posZ: 1.83799958 - rotX: 359.922363 + rotX: 359.9224 rotY: 300.019958 - rotZ: 359.97467 + rotZ: 359.97464 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile c43615.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile c43615.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile c43615.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile c43615.yaml index acd6c8662..f3250e3c2 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile c43615.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile c43615.yaml @@ -124,10 +124,10 @@ Sticky: true Tooltip: true Transform: posX: -33.6095 - posY: 1.627809 + posY: 1.62776518 posZ: -1.8932004 - rotX: 359.9223 - rotY: 299.8525 + rotX: 359.922333 + rotY: 299.852417 rotZ: 359.974884 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile fdc52f.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile fdc52f.yaml similarity index 97% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile fdc52f.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile fdc52f.yaml index f72cc5739..ea93c5699 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile fdc52f.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Custom_Tile fdc52f.yaml @@ -124,11 +124,11 @@ Sticky: true Tooltip: true Transform: posX: -20.5627975 - posY: 1.60791051 - posZ: -7.685702 + posY: 1.60786986 + posZ: -7.685701 rotX: 359.9201 - rotY: 270.0123 - rotZ: 0.016885167 + rotY: 270.0122 + rotZ: 0.0168502424 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Deck Agenda Deck a73f89.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Deck Agenda Deck a73f89.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Deck Agenda Deck a73f89.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Deck Agenda Deck a73f89.yaml index 676bbb157..bab686fea 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Deck Agenda Deck a73f89.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Deck Agenda Deck a73f89.yaml @@ -175,9 +175,9 @@ Transform: posX: -2.725 posY: 1.62075961 posZ: 0.3689005 - rotX: 0.016807314 - rotY: 180.020218 - rotZ: 0.0802618861 + rotX: 0.0168072227 + rotY: 180.020279 + rotZ: 0.08026193 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Deck Encounter Deck 86a87a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Deck Encounter Deck 69b73d.yaml similarity index 69% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Deck Encounter Deck 86a87a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Deck Encounter Deck 69b73d.yaml index 314cb2ad5..181dd3a86 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Deck Encounter Deck 86a87a.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Model_Bag 3 The Thirsting Void a0d2b1/Deck Encounter Deck 69b73d.yaml @@ -5,16 +5,16 @@ ColorDiffuse: r: 0.713235259 ContainedObjects: - Autoraise: true - CardID: 266600 + CardID: 267700 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2666': - BackIsHidden: false + '2677': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192065227/7292715CFD206270336B56C0A2952AC0633D1E60/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/ NumHeight: 4 NumWidth: 5 Type: 0 @@ -22,7 +22,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 85721d + GUID: dc4dbb Grid: true GridProjection: false Hands: true @@ -39,27 +39,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -3.92770815 - posY: 2.0039537 - posZ: 5.75714636 - rotX: 0.04819225 - rotY: 270.000061 - rotZ: 180.0635 + posX: -3.92766213 + posY: 1.81924617 + posZ: 5.757137 + rotX: 359.952667 + rotY: 269.9998 + rotZ: 179.96199 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266601 + CardID: 267701 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2666': - BackIsHidden: false + '2677': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192065227/7292715CFD206270336B56C0A2952AC0633D1E60/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/ NumHeight: 4 NumWidth: 5 Type: 0 @@ -67,7 +67,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 3f1ca9 + GUID: '610351' Grid: true GridProjection: false Hands: true @@ -84,27 +84,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -3.92764854 - posY: 1.97782362 - posZ: 5.75725 - rotX: 359.9516 - rotY: 270.000366 - rotZ: 180.064224 + posX: -3.92769742 + posY: 1.85036182 + posZ: 5.757144 + rotX: 359.951416 + rotY: 269.99765 + rotZ: 177.865387 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266602 + CardID: 267702 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2666': - BackIsHidden: false + '2677': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192065227/7292715CFD206270336B56C0A2952AC0633D1E60/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/ NumHeight: 4 NumWidth: 5 Type: 0 @@ -112,7 +112,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 849d6b + GUID: 68bd75 Grid: true GridProjection: false Hands: true @@ -129,27 +129,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -3.92765713 - posY: 1.97240746 - posZ: 5.75713539 - rotX: 359.9517 - rotY: 270.000183 - rotZ: 180.058014 + posX: -3.92770576 + posY: 1.841866 + posZ: 5.757146 + rotX: 359.951752 + rotY: 269.9985 + rotZ: 178.114777 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266603 + CardID: 267703 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2666': - BackIsHidden: false + '2677': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192065227/7292715CFD206270336B56C0A2952AC0633D1E60/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/ NumHeight: 4 NumWidth: 5 Type: 0 @@ -157,7 +157,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: b414c3 + GUID: c13807 Grid: true GridProjection: false Hands: true @@ -175,26 +175,26 @@ ContainedObjects: Tooltip: true Transform: posX: -3.92769742 - posY: 1.95795369 - posZ: 5.75716734 - rotX: 359.951477 - rotY: 270.000031 - rotZ: 180.059113 + posY: 1.83113647 + posZ: 5.757144 + rotX: 359.951721 + rotY: 269.9976 + rotZ: 177.863953 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266604 + CardID: 267704 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2666': - BackIsHidden: false + '2677': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192065227/7292715CFD206270336B56C0A2952AC0633D1E60/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/ NumHeight: 4 NumWidth: 5 Type: 0 @@ -202,7 +202,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: f1ab0a + GUID: c48f32 Grid: true GridProjection: false Hands: true @@ -219,117 +219,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -3.92765713 - posY: 1.95312047 - posZ: 5.75713539 - rotX: 359.952271 - rotY: 269.999939 - rotZ: 179.998444 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266605 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2666': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192065227/7292715CFD206270336B56C0A2952AC0633D1E60/ - NumHeight: 4 - NumWidth: 5 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 94bde6 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hound of Tindalos - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.92769814 - posY: 1.93868518 - posZ: 5.757165 - rotX: 359.951477 - rotY: 270.000061 - rotZ: 180.055817 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266606 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2666': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192065227/7292715CFD206270336B56C0A2952AC0633D1E60/ - NumHeight: 4 - NumWidth: 5 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: ee0eeb - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Hound of Tindalos - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.92765069 - posY: 1.928801 - posZ: 5.75723648 + posX: -3.927672 + posY: 1.777268 + posZ: 5.75721359 rotX: 359.951569 - rotY: 270.0003 - rotZ: 180.063828 + rotY: 270.000916 + rotZ: 180.092331 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266607 + CardID: 267705 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2666': - BackIsHidden: false + '2677': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192065227/7292715CFD206270336B56C0A2952AC0633D1E60/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/ NumHeight: 4 NumWidth: 5 Type: 0 @@ -337,7 +247,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 11e890 + GUID: e848e6 Grid: true GridProjection: false Hands: true @@ -354,27 +264,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -3.927708 - posY: 1.92122746 - posZ: 5.757178 - rotX: 359.951477 - rotY: 269.999878 - rotZ: 180.072769 + posX: -3.92761755 + posY: 1.77022731 + posZ: 5.75759029 + rotX: 359.9521 + rotY: 270.000763 + rotZ: 180.273727 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266608 + CardID: 267706 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2666': - BackIsHidden: false + '2677': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192065227/7292715CFD206270336B56C0A2952AC0633D1E60/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/ NumHeight: 4 NumWidth: 5 Type: 0 @@ -382,7 +292,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: c937fe + GUID: fb659f Grid: true GridProjection: false Hands: true @@ -399,27 +309,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -3.92770815 - posY: 1.92596054 - posZ: 5.75714636 - rotX: 0.0441451222 - rotY: 270.000031 - rotZ: 180.021927 + posX: -3.92765117 + posY: 1.75951862 + posZ: 5.75713444 + rotX: 359.9516 + rotY: 270.000122 + rotZ: 180.0455 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266609 + CardID: 267707 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2666': - BackIsHidden: false + '2677': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192065227/7292715CFD206270336B56C0A2952AC0633D1E60/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/ NumHeight: 4 NumWidth: 5 Type: 0 @@ -427,7 +337,97 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 8827cc + GUID: d408c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hound of Tindalos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92770982 + posY: 1.74834883 + posZ: 5.757172 + rotX: 359.951141 + rotY: 269.999969 + rotZ: 180.06395 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/ + NumHeight: 4 + NumWidth: 5 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0d2a26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Hound of Tindalos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92766523 + posY: 1.74275851 + posZ: 5.7571373 + rotX: 359.950836 + rotY: 269.999481 + rotZ: 179.884735 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267709 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/ + NumHeight: 4 + NumWidth: 5 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: cac2d9 Grid: true GridProjection: false Hands: true @@ -444,27 +444,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -3.92770815 - posY: 1.91624439 - posZ: 5.75714636 - rotX: 0.0381714776 - rotY: 270.000031 - rotZ: 180.030411 + posX: -3.927664 + posY: 1.73291409 + posZ: 5.757137 + rotX: 359.950623 + rotY: 269.9998 + rotZ: 179.966675 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266610 + CardID: 267710 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2666': - BackIsHidden: false + '2677': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192065227/7292715CFD206270336B56C0A2952AC0633D1E60/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/ NumHeight: 4 NumWidth: 5 Type: 0 @@ -472,7 +472,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: c36f12 + GUID: 3e663d Grid: true GridProjection: false Hands: true @@ -489,27 +489,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -3.92763162 - posY: 1.8932488 - posZ: 5.757342 - rotX: 359.95166 - rotY: 269.999542 - rotZ: 180.091843 + posX: -3.927662 + posY: 1.72049773 + posZ: 5.75715065 + rotX: 359.951569 + rotY: 270.002136 + rotZ: 180.054276 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266611 + CardID: 267711 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2666': - BackIsHidden: false + '2677': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192065227/7292715CFD206270336B56C0A2952AC0633D1E60/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/ NumHeight: 4 NumWidth: 5 Type: 0 @@ -517,7 +517,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: f9f35e + GUID: dce334 Grid: true GridProjection: false Hands: true @@ -534,27 +534,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -3.927698 - posY: 1.88091457 - posZ: 5.757176 - rotX: 359.951477 - rotY: 269.999878 - rotZ: 180.072968 + posX: -3.92765427 + posY: 1.71191812 + posZ: 5.757135 + rotX: 359.9516 + rotY: 270.000122 + rotZ: 180.057449 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266612 + CardID: 267712 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2666': - BackIsHidden: false + '2677': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192065227/7292715CFD206270336B56C0A2952AC0633D1E60/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/ NumHeight: 4 NumWidth: 5 Type: 0 @@ -562,7 +562,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: ad1062 + GUID: 191c6d Grid: true GridProjection: false Hands: true @@ -579,207 +579,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -3.92770815 - posY: 1.88887239 - posZ: 5.75714636 - rotX: 0.0475733355 - rotY: 270.0001 - rotZ: 180.088547 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266613 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2666': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192065227/7292715CFD206270336B56C0A2952AC0633D1E60/ - NumHeight: 4 - NumWidth: 5 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 24c5c1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Death Throes - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.92766261 - posY: 1.864925 - posZ: 5.75729227 - rotX: 359.95163 - rotY: 270.00116 - rotZ: 180.142014 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266614 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2666': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192065227/7292715CFD206270336B56C0A2952AC0633D1E60/ - NumHeight: 4 - NumWidth: 5 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 30b21e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Death Throes - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.927432 - posY: 1.85819781 - posZ: 5.756811 - rotX: 359.952118 - rotY: 269.987366 - rotZ: 179.8196 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266615 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2666': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192065227/7292715CFD206270336B56C0A2952AC0633D1E60/ - NumHeight: 4 - NumWidth: 5 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e35384 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bloodlust - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.927709 - posY: 1.858578 - posZ: 5.757146 - rotX: 0.04471141 - rotY: 270.000061 - rotZ: 180.021454 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266616 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2666': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192065227/7292715CFD206270336B56C0A2952AC0633D1E60/ - NumHeight: 4 - NumWidth: 5 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c994c1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Bloodlust - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -3.92765045 - posY: 1.83193386 - posZ: 5.75719643 + posX: -3.927662 + posY: 1.70124269 + posZ: 5.75715065 rotX: 359.951538 - rotY: 270.0002 - rotZ: 180.047363 + rotY: 270.002136 + rotZ: 180.054352 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266617 + CardID: 267713 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2666': - BackIsHidden: false + '2677': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192065227/7292715CFD206270336B56C0A2952AC0633D1E60/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/ NumHeight: 4 NumWidth: 5 Type: 0 @@ -787,7 +607,97 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: '697703' + GUID: '127004' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Death Throes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.9277 + posY: 1.68894613 + posZ: 5.757167 + rotX: 359.951447 + rotY: 270.0 + rotZ: 180.060242 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/ + NumHeight: 4 + NumWidth: 5 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 90c62e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Death Throes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92770815 + posY: 1.72826815 + posZ: 5.75714636 + rotX: 0.04745216 + rotY: 269.9979 + rotZ: 178.268448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/ + NumHeight: 4 + NumWidth: 5 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '833214' Grid: true GridProjection: false Hands: true @@ -804,27 +714,117 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -3.92776 - posY: 1.82796466 - posZ: 5.757166 - rotX: 359.952545 - rotY: 270.0 - rotZ: 180.00795 + posX: -3.92765641 + posY: 1.67182815 + posZ: 5.75715351 + rotX: 359.9512 + rotY: 270.002258 + rotZ: 180.0606 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266900 + CardID: 267716 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2677': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/ + NumHeight: 4 + NumWidth: 5 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: '337999' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bloodlust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92776012 + posY: 1.63972652 + posZ: 5.75709724 + rotX: 359.94577 + rotY: 270.000031 + rotZ: 180.031647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/ + NumHeight: 4 + NumWidth: 5 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 5eb7c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Bloodlust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.927671 + posY: 1.60222316 + posZ: 5.757167 + rotX: 359.920135 + rotY: 270.000244 + rotZ: 180.019272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2674': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -832,7 +832,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: '534965' + GUID: b7a687 Grid: true GridProjection: false Hands: true @@ -849,27 +849,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.7876606 - posY: 1.83676994 - posZ: 6.48368835 - rotX: 359.948944 - rotY: 270.000519 - rotZ: 180.141922 + posX: -13.9324627 + posY: 1.85147655 + posZ: -3.548372 + rotX: 0.0364938639 + rotY: 270.0015 + rotZ: 181.037537 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266901 + CardID: 267401 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -877,7 +877,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: fd91b7 + GUID: ed6319 Grid: true GridProjection: false Hands: true @@ -894,27 +894,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.9722528 - posY: 1.8184936 - posZ: 6.24175549 - rotX: 359.9539 - rotY: 269.9933 - rotZ: 180.194778 + posX: -14.4051943 + posY: 1.84486878 + posZ: -2.6871326 + rotX: 0.000262588757 + rotY: 269.999634 + rotZ: 178.286057 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266902 + CardID: 267402 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -922,7 +922,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 9194ce + GUID: deeb02 Grid: true GridProjection: false Hands: true @@ -939,27 +939,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.6258936 - posY: 1.82349575 - posZ: 6.08819675 - rotX: 359.952057 - rotY: 269.999847 - rotZ: 180.5669 + posX: -13.9666576 + posY: 1.836208 + posZ: -2.92806649 + rotX: 0.0361353867 + rotY: 270.002136 + rotZ: 180.992111 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266903 + CardID: 267403 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -967,7 +967,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 38fad5 + GUID: e6188c Grid: true GridProjection: false Hands: true @@ -984,27 +984,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.3344193 - posY: 1.80703282 - posZ: 6.4101553 - rotX: 359.9522 - rotY: 270.0004 - rotZ: 180.120941 + posX: -14.4013987 + posY: 1.8282541 + posZ: -3.05022764 + rotX: 0.0358129255 + rotY: 270.002075 + rotZ: 181.0558 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266904 + CardID: 267404 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -1012,7 +1012,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 64779c + GUID: cb7de2 Grid: true GridProjection: false Hands: true @@ -1029,27 +1029,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.6367645 - posY: 1.789097 - posZ: 5.870122 - rotX: 359.95105 - rotY: 269.998627 - rotZ: 180.1949 + posX: -14.1754055 + posY: 1.97573352 + posZ: -3.33040977 + rotX: 359.967041 + rotY: 269.991241 + rotZ: 170.417313 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266905 + CardID: 267405 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -1057,7 +1057,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 0f1268 + GUID: '564036' Grid: true GridProjection: false Hands: true @@ -1074,27 +1074,162 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.6797743 - posY: 1.80768812 - posZ: 6.447141 - rotX: 359.952057 + posX: -13.81101 + posY: 1.80684662 + posZ: -3.28871918 + rotX: 359.952484 + rotY: 269.997742 + rotZ: 178.818954 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2674': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ + NumHeight: 3 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0dedff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Martian Technician + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.0105934 + posY: 1.79556668 + posZ: -2.69907117 + rotX: 0.0355848372 + rotY: 270.002136 + rotZ: 180.906708 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2674': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ + NumHeight: 3 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 6826c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Martian Technician + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.7216635 + posY: 1.7919054 + posZ: -2.66484356 + rotX: 0.03645171 + rotY: 270.00174 + rotZ: 181.054321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2674': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ + NumHeight: 3 + NumWidth: 6 + Type: 0 + UniqueBack: false + Description: '' + DragSelectable: true + GMNotes: '' + GUID: 0675da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Card + Nickname: Martian Technician + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.100811 + posY: 1.761666 + posZ: -3.19721437 + rotX: 0.0454738177 rotY: 270.001221 - rotZ: 181.084442 + rotZ: 180.203171 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266906 + CardID: 267409 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -1102,7 +1237,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 53734f + GUID: 381c24 Grid: true GridProjection: false Hands: true @@ -1119,27 +1254,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.9699106 - posY: 1.77900541 - posZ: 6.434538 - rotX: 359.952057 - rotY: 270.0004 - rotZ: 180.1208 + posX: -13.7097759 + posY: 1.75093091 + posZ: -3.460492 + rotX: 0.0348324 + rotY: 270.000427 + rotZ: 180.106812 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266907 + CardID: 267410 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -1147,142 +1282,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: ec8dec - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Martian Technician - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -12.42023 - posY: 1.76790416 - posZ: 6.19154453 - rotX: 359.95224 - rotY: 270.0 - rotZ: 180.0247 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266908 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2669': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ - NumHeight: 3 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 6f31fd - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Martian Technician - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -12.661952 - posY: 1.7789706 - posZ: 5.92893839 - rotX: 359.952026 - rotY: 269.998383 - rotZ: 178.815933 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266909 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2669': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ - NumHeight: 3 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c9b746 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Card - Nickname: Martian Technician - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -12.5504055 - posY: 1.77141654 - posZ: 6.088148 - rotX: 359.956665 - rotY: 269.948 - rotZ: 178.4085 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -- Autoraise: true - CardID: 266910 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2669': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ - NumHeight: 3 - NumWidth: 6 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a88c76 + GUID: d3bec9 Grid: true GridProjection: false Hands: true @@ -1299,27 +1299,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.9453268 - posY: 1.76238787 - posZ: 6.290613 - rotX: 0.06100134 - rotY: 270.000977 - rotZ: 180.8578 + posX: -13.7490911 + posY: 1.75872517 + posZ: -3.03785515 + rotX: 359.952576 + rotY: 270.0009 + rotZ: 178.6434 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266911 + CardID: 267411 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -1327,7 +1327,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 5b2c46 + GUID: d19fab Grid: true GridProjection: false Hands: true @@ -1344,27 +1344,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.9329548 - posY: 1.75290227 - posZ: 6.33849764 - rotX: 0.0523924157 - rotY: 270.000854 - rotZ: 180.84407 + posX: -14.1113138 + posY: 1.75179267 + posZ: -3.13707137 + rotX: 0.0449036434 + rotY: 270.001038 + rotZ: 180.8343 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266912 + CardID: 267412 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -1372,7 +1372,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 35ca80 + GUID: df0679 Grid: true GridProjection: false Hands: true @@ -1389,27 +1389,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.6990976 - posY: 1.73109448 - posZ: 6.550235 - rotX: 359.952057 - rotY: 270.00116 - rotZ: 180.6733 + posX: -14.0707521 + posY: 1.739896 + posZ: -3.02546358 + rotX: 0.03610193 + rotY: 270.0021 + rotZ: 180.993851 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266913 + CardID: 267413 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -1417,7 +1417,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: ceee7a + GUID: 927c6d Grid: true GridProjection: false Hands: true @@ -1434,27 +1434,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.7379971 - posY: 1.71056128 - posZ: 6.150592 - rotX: 359.9524 - rotY: 270.0 - rotZ: 180.025223 + posX: -13.7317514 + posY: 1.713524 + posZ: -2.86069036 + rotX: 0.0213335287 + rotY: 270.001251 + rotZ: 180.185257 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266914 + CardID: 267414 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -1462,7 +1462,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: e047be + GUID: 0160fa Grid: true GridProjection: false Hands: true @@ -1479,27 +1479,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.9181089 - posY: 1.72010469 - posZ: 6.33414364 - rotX: 359.952057 - rotY: 269.9992 - rotZ: 179.133652 + posX: -14.1116161 + posY: 1.70494974 + posZ: -2.82771277 + rotX: 0.03839522 + rotY: 270.001526 + rotZ: 180.254257 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266915 + CardID: 267415 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -1507,7 +1507,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 58cd2b + GUID: 7c2447 Grid: true GridProjection: false Hands: true @@ -1524,27 +1524,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.6283989 - posY: 1.6832335 - posZ: 6.67682171 - rotX: 359.9529 - rotY: 270.0006 - rotZ: 180.089874 + posX: -13.8469458 + posY: 1.69424224 + posZ: -2.8296454 + rotX: 0.0221196488 + rotY: 270.001251 + rotZ: 180.184937 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266916 + CardID: 267416 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -1552,7 +1552,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: 6358c6 + GUID: 74162b Grid: true GridProjection: false Hands: true @@ -1569,27 +1569,27 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.9783211 - posY: 1.65827584 - posZ: 6.16383171 - rotX: 359.9553 - rotY: 270.000061 - rotZ: 180.12532 + posX: -13.9195662 + posY: 1.67035687 + posZ: -2.87534976 + rotX: 0.03568758 + rotY: 270.002 + rotZ: 180.697662 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' - Autoraise: true - CardID: 266917 + CardID: 267417 ColorDiffuse: b: 0.713235259 g: 0.713235259 r: 0.713235259 CustomDeck: - '2669': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 @@ -1597,7 +1597,7 @@ ContainedObjects: Description: '' DragSelectable: true GMNotes: '' - GUID: a58b43 + GUID: a89156 Grid: true GridProjection: false Hands: true @@ -1614,74 +1614,74 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -12.8157749 - posY: 1.6148411 - posZ: 6.366756 - rotX: 359.9202 - rotY: 270.000183 - rotZ: 180.017471 + posX: -11.836009 + posY: 1.78521478 + posZ: 21.5405064 + rotX: 359.9198 + rotY: 270.005981 + rotZ: 357.547546 scaleX: 1.0 scaleY: 1.0 scaleZ: 1.0 XmlUI: '' CustomDeck: - '2666': - BackIsHidden: false + '2674': + BackIsHidden: true BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192065227/7292715CFD206270336B56C0A2952AC0633D1E60/ - NumHeight: 4 - NumWidth: 5 - Type: 0 - UniqueBack: false - '2669': - BackIsHidden: false - BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1461933361192090661/54F236D4BFFFB271FDFAAB03AC5863F3C240CFA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996706745/D0016A18D5CAFA6F4B7228E220DA83B3320E0FAC/ NumHeight: 3 NumWidth: 6 Type: 0 UniqueBack: false + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1461933361191993988/FE126C3E21593398897E3C691A0AEA8D9B73A614/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1478823585996798197/7D81C4BB35DFC72BA376AEB7F3DC9F8166F72DDF/ + NumHeight: 4 + NumWidth: 5 + Type: 0 + UniqueBack: false DeckIDs: -- 266600 -- 266601 -- 266602 -- 266603 -- 266604 -- 266605 -- 266606 -- 266607 -- 266608 -- 266609 -- 266610 -- 266611 -- 266612 -- 266613 -- 266614 -- 266615 -- 266616 -- 266617 -- 266900 -- 266901 -- 266902 -- 266903 -- 266904 -- 266905 -- 266906 -- 266907 -- 266908 -- 266909 -- 266910 -- 266911 -- 266912 -- 266913 -- 266914 -- 266915 -- 266916 -- 266917 +- 267700 +- 267701 +- 267702 +- 267703 +- 267704 +- 267705 +- 267706 +- 267707 +- 267708 +- 267709 +- 267710 +- 267711 +- 267712 +- 267713 +- 267714 +- 267715 +- 267716 +- 267717 +- 267400 +- 267401 +- 267402 +- 267403 +- 267404 +- 267405 +- 267406 +- 267407 +- 267408 +- 267409 +- 267410 +- 267411 +- 267412 +- 267413 +- 267414 +- 267415 +- 267416 +- 267417 Description: '' DragSelectable: true GMNotes: '' -GUID: 86a87a +GUID: 69b73d Grid: true GridProjection: false Hands: false @@ -1698,11 +1698,11 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -3.927899 - posY: 1.78289127 - posZ: 5.75721836 + posX: -3.92740035 + posY: 1.78289044 + posZ: 5.75700045 rotX: 359.919739 - rotY: 269.998138 + rotY: 270.000031 rotZ: 180.016815 scaleX: 1.0 scaleY: 1.0 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_PDF War of the Worlds Campaign Guide 480756.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_PDF War of the Worlds Campaign Guide 480756.yaml similarity index 94% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_PDF War of the Worlds Campaign Guide 480756.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_PDF War of the Worlds Campaign Guide 480756.yaml index 9c815b7eb..62cd89b09 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_PDF War of the Worlds Campaign Guide 480756.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_PDF War of the Worlds Campaign Guide 480756.yaml @@ -29,10 +29,10 @@ Tooltip: true Transform: posX: 12.2534008 posY: 1.47267389 - posZ: 28.0062046 + posZ: 28.0062027 rotX: 359.920135 rotY: 269.994354 - rotZ: 0.0168796051 + rotZ: 0.01687961 scaleX: 3.51166582 scaleY: 1.0 scaleZ: 3.51166582 diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Tile War of the Worlds b5928a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Tile War of the Worlds b5928a.ttslua new file mode 100644 index 000000000..267e4346b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Tile War of the Worlds b5928a.ttslua @@ -0,0 +1,21 @@ +name = 'War of the Worlds' + +function onLoad() + Global.call('createSetupButtons', {object=self, key=name}) +end + +function easyClick() + Global.call('fillContainer', {object=self, key=name, mode='easy'}) +end + +function normalClick() + Global.call('fillContainer', {object=self, key=name, mode='normal'}) +end + +function hardClick() + Global.call('fillContainer', {object=self, key=name, mode='hard'}) +end + +function expertClick() + Global.call('fillContainer', {object=self, key=name, mode='expert'}) +end diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Tile War of the Worlds b5928a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Tile War of the Worlds b5928a.yaml new file mode 100644 index 000000000..a8bff96db --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Tile War of the Worlds b5928a.yaml @@ -0,0 +1,44 @@ +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: https://i.imgur.com/EcbhVuh.jpg/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/ + WidthScale: 0.0 +Description: click to set chaos token difficulty +DragSelectable: true +GMNotes: '' +GUID: b5928a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile War of the Worlds b5928a.ttslua' +LuaScriptState: '' +MeasureMovement: false +Name: Custom_Tile +Nickname: War of the Worlds +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.84816146 + posY: 1.58253086 + posZ: -14.7051477 + rotX: 359.919739 + rotY: 270.003 + rotZ: 0.0168336667 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Token War of the Worlds Campaign Log eda22b.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Token War of the Worlds Campaign Log eda22b.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Token War of the Worlds Campaign Log eda22b.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Token War of the Worlds Campaign Log eda22b.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Token War of the Worlds Campaign Log eda22b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Token War of the Worlds Campaign Log eda22b.yaml similarity index 98% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Token War of the Worlds Campaign Log eda22b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Token War of the Worlds Campaign Log eda22b.yaml index 852831b48..e19385ff0 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Custom_Token War of the Worlds Campaign Log eda22b.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag The War of the Worlds 19d469/Custom_Token War of the Worlds Campaign Log eda22b.yaml @@ -32,12 +32,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: -1.46549833 + posX: -1.46549869 posY: 1.57562232 posZ: -26.93051 rotX: 359.920135 rotY: 270.009583 - rotZ: 0.0168583859 + rotZ: 0.0168581661 scaleX: 4.37388372 scaleY: 1.0 scaleZ: 4.37388372 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057.yaml similarity index 95% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057.yaml index e80c6bc44..36b55efb0 100644 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057.yaml +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057.yaml @@ -53,12 +53,12 @@ Snap: true Sticky: true Tooltip: true Transform: - posX: 13.7256174 - posY: 8.48117352 - posZ: -170.728287 - rotX: 0.0208087768 + posX: -0.254278749 + posY: 3.34882855 + posZ: -20.394434 + rotX: 0.0208087731 rotY: 270.0 - rotZ: 0.01677108 + rotZ: 0.0167710837 scaleX: 2.21 scaleY: 0.46 scaleZ: 2.42 diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + 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 + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) 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.25 * 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) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == 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 + memoryList[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} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + 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 +end + +--Resets bag to starting status +function buttonClick_reset() + 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,0.3,-2}, rotation={0,180,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={0,0.3,-2.8}, rotation={0,180,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={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,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, + }) + 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 deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + 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 + +--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 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9/Card Experienced Passenger ede709.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9/Card Experienced Passenger ede709.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9/Card Experienced Passenger ede709.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9/Card Experienced Passenger ede709.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9/Card Jewel of the Winter Wind 3a674c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9/Card Jewel of the Winter Wind 3a674c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9/Card Jewel of the Winter Wind 3a674c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9/Card Jewel of the Winter Wind 3a674c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9/Card The Ritualist 77acb9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9/Card The Ritualist 77acb9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9/Card The Ritualist 77acb9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9/Card The Ritualist 77acb9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Engine a8dd66.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Engine a8dd66.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Engine a8dd66.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Engine a8dd66.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Frozen Tracks 1d9d5a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Frozen Tracks 1d9d5a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Frozen Tracks 1d9d5a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Frozen Tracks 1d9d5a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Frozen Tracks ba0135.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Frozen Tracks ba0135.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Frozen Tracks ba0135.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Frozen Tracks ba0135.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Train Car (Cargo Car) 8a34fc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Train Car (Cargo Car) 8a34fc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Train Car (Cargo Car) 8a34fc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Train Car (Cargo Car) 8a34fc.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Custom_Tile Setup 818319.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Custom_Tile Setup 818319.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Custom_Tile Setup 818319.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Custom_Tile Setup 818319.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Act 3d7392.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Act 3d7392.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Act 3d7392.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Act 3d7392.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Agenda 77b535.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Agenda 77b535.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Agenda 77b535.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Agenda 77b535.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Encounter Deck 6712b5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Encounter Deck 6712b5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Encounter Deck 6712b5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Encounter Deck 6712b5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Train Car e49f42.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Train Car e49f42.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Train Car e49f42.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Train Car e49f42.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + 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 + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) 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.25 * 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) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == 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 + memoryList[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} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + 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 +end + +--Resets bag to starting status +function buttonClick_reset() + 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,0.3,-2}, rotation={0,180,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={0,0.3,-2.8}, rotation={0,180,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={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,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, + }) + 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 deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + 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 + +--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 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Card Awakened Bear 65dc35.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Card Awakened Bear 65dc35.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Card Awakened Bear 65dc35.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Card Awakened Bear 65dc35.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Card Dark Woods 840896.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Card Dark Woods 840896.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Card Dark Woods 840896.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Card Dark Woods 840896.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Card Mysterious Predator d6b469.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Card Mysterious Predator d6b469.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Card Mysterious Predator d6b469.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Card Mysterious Predator d6b469.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Card Vantage Point 5ff6b5.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Card Vantage Point 5ff6b5.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Card Vantage Point 5ff6b5.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Card Vantage Point 5ff6b5.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Beast-Scarred e786f6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Beast-Scarred e786f6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Beast-Scarred e786f6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Beast-Scarred e786f6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Deep Woods cb97ce.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Deep Woods cb97ce.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Deep Woods cb97ce.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Deep Woods cb97ce.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Encounter Deck (Aside) d31305.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Encounter Deck (Aside) d31305.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Encounter Deck (Aside) d31305.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Encounter Deck (Aside) d31305.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Snowy Woods 12ec4b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Snowy Woods 12ec4b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Snowy Woods 12ec4b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Snowy Woods 12ec4b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Story Asset fb056a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Story Asset fb056a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Story Asset fb056a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Story Asset fb056a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Card Rail-Side Ridge cdb1f6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Card Rail-Side Ridge cdb1f6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Card Rail-Side Ridge cdb1f6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Card Rail-Side Ridge cdb1f6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Card Stranded in the Urals c2daa0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Card Stranded in the Urals c2daa0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Card Stranded in the Urals c2daa0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Card Stranded in the Urals c2daa0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Card Stranded in the Urals c4b865.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Card Stranded in the Urals c4b865.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Card Stranded in the Urals c4b865.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Card Stranded in the Urals c4b865.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Custom_Tile Setup 10a86b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Custom_Tile Setup 10a86b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Custom_Tile Setup 10a86b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Custom_Tile Setup 10a86b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Act 7a7819.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Act 7a7819.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Act 7a7819.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Act 7a7819.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Agenda f4149c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Agenda f4149c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Agenda f4149c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Agenda f4149c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Encounter Deck d0fe7b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Encounter Deck d0fe7b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Encounter Deck d0fe7b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Encounter Deck d0fe7b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Starting Location f957fa.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Starting Location f957fa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Starting Location f957fa.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Starting Location f957fa.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b.ttslua @@ -0,0 +1,273 @@ +function updateSave() + local data_to_save = {["ml"]=memoryList} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function onload(saved_data) + 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 + + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end +end + + +--Beginning Setup + + +--Make setup button +function createSetupButton() + self.createButton({ + label="Setup", click_function="buttonClick_setup", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + +--Triggered by setup button, +function buttonClick_setup() + memoryListBackup = duplicateTable(memoryList) + memoryList = {} + self.clearButtons() + createButtonsOnAllObjects() + createSetupActionButtons() +end + +--Creates selection buttons on objects +function createButtonsOnAllObjects() + local howManyButtons = 0 + for _, obj in ipairs(getAllObjects()) 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.25 * 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) end + self.setVar(funcName, func) + self.createButton({ + click_function=funcName, function_owner=self, + position=objPos, rotation=rot, height=1000, width=1000, + color={0.75,0.25,0.25,0.6}, + }) + howManyButtons = howManyButtons + 1 + end + end +end + +--Creates submit and cancel buttons +function createSetupActionButtons() + self.createButton({ + label="Cancel", click_function="buttonClick_cancel", function_owner=self, + position={0,0.3,-2}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,0.3,-2.8}, rotation={0,180,0}, height=350, width=1100, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +end + + +--During Setup + + +--Checks or unchecks buttons +function buttonClick_selection(index, obj) + local color = {0,1,0,0.6} + if memoryList[obj.getGUID()] == 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 + memoryList[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} + self.editButton({index=index, color=color}) + memoryList[obj.getGUID()] = nil + obj.highlightOff() + end +end + +--Cancels selection process +function buttonClick_cancel() + memoryList = memoryListBackup + self.clearButtons() + if next(memoryList) == nil then + createSetupButton() + else + createMemoryActionButtons() + end + removeAllHighlights() + broadcastToAll("Selection Canceled", {1,1,1}) +end + +--Saves selections +function buttonClick_submit() + if next(memoryList) == nil then + broadcastToAll("You cannot submit without any selections.", {0.75, 0.25, 0.25}) + else + 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 +end + +--Resets bag to starting status +function buttonClick_reset() + 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,0.3,-2}, rotation={0,180,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={0,0.3,-2.8}, rotation={0,180,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={-2,0.3,0}, rotation={0,270,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,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, + }) + 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 deltaPos = {} + local bounds = obj.getBounds() + deltaPos.x = (p2.x-p1.x) + deltaPos.y = (p2.y-p1.y) + (bounds.size.y - bounds.offset.y) + 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 + +--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 diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Card Gnoph-Keh ab6851.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Card Gnoph-Keh ab6851.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Card Gnoph-Keh ab6851.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Card Gnoph-Keh ab6851.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Blizzard ab8878.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Blizzard ab8878.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Blizzard ab8878.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Blizzard ab8878.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Dark Cult 7c2ffc.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Dark Cult 7c2ffc.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Dark Cult 7c2ffc.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Dark Cult 7c2ffc.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Destoryed Structure 2844b0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Destoryed Structure 2844b0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Destoryed Structure 2844b0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Destoryed Structure 2844b0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Gaze of the North 74d3d2.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Gaze of the North 74d3d2.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Gaze of the North 74d3d2.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Gaze of the North 74d3d2.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Village Outskirts 10d474.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Village Outskirts 10d474.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Village Outskirts 10d474.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Village Outskirts 10d474.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Decrepit Building 0163c6.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Decrepit Building 0163c6.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Decrepit Building 0163c6.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Decrepit Building 0163c6.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Decrepit Building 942089.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Decrepit Building 942089.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Decrepit Building 942089.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Decrepit Building 942089.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Decrepit Building fd47fa.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Decrepit Building fd47fa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Decrepit Building fd47fa.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Decrepit Building fd47fa.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card The Forgotten Village 139394.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card The Forgotten Village 139394.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card The Forgotten Village 139394.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card The Forgotten Village 139394.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card The Forgotten Village ea3065.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card The Forgotten Village ea3065.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card The Forgotten Village ea3065.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card The Forgotten Village ea3065.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Town Square fcf95c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Town Square fcf95c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Town Square fcf95c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Town Square fcf95c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Village Road 00466a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Village Road 00466a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Village Road 00466a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Village Road 00466a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Village Road 0edbea.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Village Road 0edbea.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Village Road 0edbea.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Village Road 0edbea.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Village Road ad8016.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Village Road ad8016.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Village Road ad8016.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Village Road ad8016.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 020079.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 020079.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 020079.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 020079.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 2757d7.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 2757d7.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 2757d7.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 2757d7.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 526f54.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 526f54.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 526f54.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 526f54.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 7234af.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 7234af.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 7234af.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 756064.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 756064.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 756064.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 756064.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 855857.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 855857.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 855857.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 855857.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 8b3862.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 8b3862.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 8b3862.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 8b3862.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 8c90b0.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 8c90b0.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 8c90b0.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 8c90b0.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile e9566b.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile e9566b.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile e9566b.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile e9566b.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile Setup e6b081.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile Setup e6b081.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile Setup e6b081.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile Setup e6b081.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Act 82021c.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Act 82021c.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Act 82021c.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Act 82021c.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Agenda 3e28fa.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Agenda 3e28fa.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Agenda 3e28fa.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Agenda 3e28fa.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Encounter Deck 9a893a.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Encounter Deck 9a893a.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Encounter Deck 9a893a.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Encounter Deck 9a893a.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Hidden Motivations 4ba650.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Hidden Motivations 4ba650.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Hidden Motivations 4ba650.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Hidden Motivations 4ba650.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Passenger 2d7592.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Passenger 2d7592.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Passenger 2d7592.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Passenger 2d7592.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Custom_Tile Winter Winds d54710.ttslua b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Custom_Tile Winter Winds d54710.ttslua similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Custom_Tile Winter Winds d54710.ttslua rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Custom_Tile Winter Winds d54710.ttslua diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Custom_Tile Winter Winds d54710.yaml b/unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Custom_Tile Winter Winds d54710.yaml similarity index 100% rename from unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds 754057/Custom_Tile Winter Winds d54710.yaml rename to unpacked/Custom_Model_Bag The Side Missions 2d16e1/Custom_Model_Bag Winter Winds 754057/Custom_Tile Winter Winds d54710.yaml diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6.yaml deleted file mode 100644 index cc2505150..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6.yaml +++ /dev/null @@ -1,157 +0,0 @@ -AttachedDecals: -- CustomDecal: - ImageURL: http://cloud-3.steamusercontent.com/ugc/959719855125569260/B39210A6DF2FE4C20B68290DDFB3E2C47E50ACC7/ - Name: sidemissions_back - Size: 7.4 - Transform: - posX: 0.00659763161 - posY: -0.08963571 - posZ: -0.0007843329 - rotX: 270.0 - rotY: 0.349585 - rotZ: 0.0 - scaleX: 2.00000215 - scaleY: 2.00000238 - scaleZ: 2.00000238 -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -ContainedObjects: -- !include 'Custom_Model_Bag The Side Missions d466d6/Bag Secret Objectives & Ultimatums - b2077d.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Winter Winds - 754057.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of - the Worlds 19d469.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Thing in - the Woods c90c49.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Svalbard - Event 7bc42b.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Stranger Things - 408301.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Red Room - fa4327.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony - of Erich Zann 18aa54.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Strange Aeons - 2abdd6.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Stolen - Baillius bfefd4.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Parallel Universe - 28e0a1.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Pensher - Wyrm 504f38.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Outsider - 3c175c.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Ordo Templi - Orientis 7cf202.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Of Sphinx and - Sands eeeb50.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag North Country - Cycle aaceca.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Nephew - Calls 3ddd12.yaml' -- !include "Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Masks of Nyarlathotep\ - \ \u2013 New York 94a1f8.yaml" -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The London - set 0f96ac.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Last Call at - Roxie''s c6a1ca.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Knightfall - df62e8.yaml' -- !include "Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Kiedy sny Staj\u0105\ - \ si\u0119 Rzeczywi\u015Bci\u0105 acdf16.yaml" -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Jenny''s Choice - a61b48.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Into the Shadowlands - 019847.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag In Blackest - Pits 68380c.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Idol Thoughts - 2d417b.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Happy''s Funhouse - e7d9f8.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Grand Oak - Hotel 4255b1.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Festival - 29d22a.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Dying Star - bcfff6.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Delta Green - Convergence ac164e.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Curse of - Amulotep 0d7a8d.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Consternation - on the Constellation 0ec730.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Colour - out of Space 5b81ff.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Collector - 9810eb.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of - Spiders e57017.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Bridge of Sighs - 578e97.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Blood Spilled - in Salem 4237da.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Approaching - Storm 0fad66.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Against the - Wendigo 4d5fa0.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Curse of the - Rougarou db7039.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Carnevale of - Horrors 23dd51.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Labyrinths - of Lunacy 4c173f.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Guardians of - the Abyss ee987d.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the - Excelsior Hotel 01d780.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Read or Die - 9e73fa.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Blob that - Ate Everything 4dee5a.yaml' -- !include 'Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag All or Nothing - 72ab92.yaml' -CustomMesh: - CastShadows: true - ColliderURL: '' - Convex: true - DiffuseURL: http://cloud-3.steamusercontent.com/ugc/959719855125563996/FDA10962ACB63735E976EE99B101E3CDCE562018/ - MaterialIndex: 3 - MeshURL: http://pastebin.com/raw.php?i=1ZucEznd - NormalURL: '' - TypeIndex: 6 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: d466d6 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Custom_Model_Bag -Nickname: The Side Missions -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 32.3018875 - posY: 1.87118363 - posZ: 0.139688253 - rotX: 359.920135 - rotY: 269.9988 - rotZ: 0.016874969 - scaleX: 5.0 - scaleY: 5.0 - scaleZ: 5.0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/CardCustom Campaign Guide 45facd.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/CardCustom Campaign Guide 45facd.yaml deleted file mode 100644 index f57497d3a..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/CardCustom Campaign Guide 45facd.yaml +++ /dev/null @@ -1,598 +0,0 @@ -Autoraise: true -CardID: 232500 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '2325': - BackIsHidden: true - BackURL: https://i.imgur.com/OhshkLa.jpg - FaceURL: https://i.imgur.com/OhshkLa.jpg - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false -Description: Murder at the Excelsior Hotel -DragSelectable: true -GMNotes: '' -GUID: 45facd -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: CardCustom -Nickname: Campaign Guide -SidewaysCard: false -Snap: true -States: - '10': - Autoraise: true - CardID: 233200 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2332': - BackIsHidden: true - BackURL: https://i.imgur.com/L5XK8iw.jpg - FaceURL: https://i.imgur.com/L5XK8iw.jpg - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 630d74 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 5.455791 - posY: 1.55558383 - posZ: 33.84769 - rotX: 359.9201 - rotY: 270.013062 - rotZ: 0.0168548 - scaleX: 2.11755562 - scaleY: 1.0 - scaleZ: 2.11755562 - XmlUI: '' - '11': - Autoraise: true - CardID: 233300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2333': - BackIsHidden: true - BackURL: https://i.imgur.com/4FATXPc.jpg - FaceURL: https://i.imgur.com/4FATXPc.jpg - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e04c72 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 5.45579052 - posY: 1.55558383 - posZ: 33.8476868 - rotX: 359.9201 - rotY: 270.013062 - rotZ: 0.0168544482 - scaleX: 2.11755562 - scaleY: 1.0 - scaleZ: 2.11755562 - XmlUI: '' - '12': - Autoraise: true - CardID: 233400 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2334': - BackIsHidden: true - BackURL: https://i.imgur.com/7hCJAHY.jpg - FaceURL: https://i.imgur.com/7hCJAHY.jpg - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: '537250' - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 5.45579 - posY: 1.55558383 - posZ: 33.847683 - rotX: 359.9201 - rotY: 270.013062 - rotZ: 0.016854452 - scaleX: 2.11755562 - scaleY: 1.0 - scaleZ: 2.11755562 - XmlUI: '' - '13': - Autoraise: true - CardID: 233500 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2335': - BackIsHidden: true - BackURL: https://i.imgur.com/lBbk0GB.jpg - FaceURL: https://i.imgur.com/lBbk0GB.jpg - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 7ce342 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 5.45578957 - posY: 1.55558383 - posZ: 33.84768 - rotX: 359.9201 - rotY: 270.0131 - rotZ: 0.016858194 - scaleX: 2.11755562 - scaleY: 1.0 - scaleZ: 2.11755562 - XmlUI: '' - '2': - Autoraise: true - CardID: 232200 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2322': - BackIsHidden: true - BackURL: https://i.imgur.com/VNdgRD8.jpg - FaceURL: https://i.imgur.com/VNdgRD8.jpg - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 8aff87 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -1.46552587 - posY: 1.54733586 - posZ: -26.9304085 - rotX: 359.920135 - rotY: 269.999878 - rotZ: 0.0168721434 - scaleX: 2.11755562 - scaleY: 1.0 - scaleZ: 2.11755562 - XmlUI: '' - '3': - Autoraise: true - CardID: 232300 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2323': - BackIsHidden: true - BackURL: https://i.imgur.com/DtRhP9I.jpg - FaceURL: https://i.imgur.com/DtRhP9I.jpg - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: e5e605 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -1.46552575 - posY: 1.547336 - posZ: -26.9304123 - rotX: 359.920135 - rotY: 269.999878 - rotZ: 0.0168719031 - scaleX: 2.11755562 - scaleY: 1.0 - scaleZ: 2.11755562 - XmlUI: '' - '4': - Autoraise: true - CardID: 232600 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2326': - BackIsHidden: true - BackURL: https://i.imgur.com/J0MLBCx.jpg - FaceURL: https://i.imgur.com/J0MLBCx.jpg - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a7ed10 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -1.46552551 - posY: 1.54733586 - posZ: -26.9304161 - rotX: 359.920135 - rotY: 269.999878 - rotZ: 0.0168717634 - scaleX: 2.11755562 - scaleY: 1.0 - scaleZ: 2.11755562 - XmlUI: '' - '5': - Autoraise: true - CardID: 232700 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2327': - BackIsHidden: true - BackURL: https://i.imgur.com/el6K0yh.jpg - FaceURL: https://i.imgur.com/el6K0yh.jpg - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a6b49e - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -1.46496809 - posY: 1.54732692 - posZ: -26.9581127 - rotX: 359.920135 - rotY: 269.999817 - rotZ: 0.0168722533 - scaleX: 2.11755562 - scaleY: 1.0 - scaleZ: 2.11755562 - XmlUI: '' - '6': - Autoraise: true - CardID: 232800 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2328': - BackIsHidden: true - BackURL: https://i.imgur.com/Y1zKQCa.jpg - FaceURL: https://i.imgur.com/Y1zKQCa.jpg - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 212aec - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 5.455793 - posY: 1.55558383 - posZ: 33.8477058 - rotX: 359.9201 - rotY: 270.013062 - rotZ: 0.0168542322 - scaleX: 2.11755562 - scaleY: 1.0 - scaleZ: 2.11755562 - XmlUI: '' - '7': - Autoraise: true - CardID: 232900 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2329': - BackIsHidden: true - BackURL: https://i.imgur.com/lDkKQ68.jpg - FaceURL: https://i.imgur.com/lDkKQ68.jpg - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: a81b44 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 5.45579243 - posY: 1.55558383 - posZ: 33.847702 - rotX: 359.9201 - rotY: 270.013062 - rotZ: 0.016854398 - scaleX: 2.11755562 - scaleY: 1.0 - scaleZ: 2.11755562 - XmlUI: '' - '8': - Autoraise: true - CardID: 233000 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2330': - BackIsHidden: true - BackURL: https://i.imgur.com/0Q8AZVh.jpg - FaceURL: https://i.imgur.com/0Q8AZVh.jpg - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: dec02a - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 5.455792 - posY: 1.55558383 - posZ: 33.8477 - rotX: 359.9201 - rotY: 270.013062 - rotZ: 0.0168547835 - scaleX: 2.11755562 - scaleY: 1.0 - scaleZ: 2.11755562 - XmlUI: '' - '9': - Autoraise: true - CardID: 233100 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2331': - BackIsHidden: true - BackURL: https://i.imgur.com/JItxc8p.jpg - FaceURL: https://i.imgur.com/JItxc8p.jpg - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c9e4e9 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 5.45579147 - posY: 1.55558383 - posZ: 33.8476944 - rotX: 359.9201 - rotY: 270.013062 - rotZ: 0.01685431 - scaleX: 2.11755562 - scaleY: 1.0 - scaleZ: 2.11755562 - XmlUI: '' -Sticky: true -Tooltip: true -Transform: - posX: -1.46550059 - posY: 1.54733586 - posZ: -26.9304066 - rotX: 359.920135 - rotY: 269.999756 - rotZ: 0.0168734118 - scaleX: 2.11755562 - scaleY: 1.0 - scaleZ: 2.11755562 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54.yaml deleted file mode 100644 index 01d58eeed..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54.yaml +++ /dev/null @@ -1,89 +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: - b: 1.0 - g: 1.0 - r: 1.0 -ContainedObjects: -- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/Deck 0484a7.yaml' -- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 422e71.yaml' -- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 4d2acb.yaml' -- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 676b16.yaml' -- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom 6e92f3.yaml' -- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile 7234af.yaml' -- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/Deck Encounter Deck - 7927f6.yaml' -- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/CardCustom Scenario - Reference Card a5a321.yaml' -- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_PDF Scenario - Guide a6ddbc.yaml' -- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile b2aace.yaml' -- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside - b6da68.yaml' -- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile e044bd.yaml' -- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/Deck ed44f7.yaml' -- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile The Symphony - of Erich Zann f4c93e.yaml' -- !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile f56746.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/1254763972105175718/5A09C7E8EBCC79DD9E405FF6F83E49C2C27D5F29/ - MaterialIndex: 3 - MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj - NormalURL: '' - TypeIndex: 6 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 18aa54 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: !include 'Custom_Model_Bag The Symphony of Erich Zann 18aa54.ttslua' -LuaScriptState: '{"ml":{"0484a7":{"lock":false,"pos":{"x":-2.725,"y":1.6208,"z":0.3732},"rot":{"x":359.9197,"y":269.9856,"z":0.0169}},"422e71":{"lock":false,"pos":{"x":-30.2241,"y":1.6395,"z":7.57},"rot":{"x":359.9201,"y":270,"z":180.0169}},"4d2acb":{"lock":false,"pos":{"x":-23.6764,"y":1.6281,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":180.0169}},"676b16":{"lock":false,"pos":{"x":-17.107,"y":1.6189,"z":-0.0534},"rot":{"x":359.9201,"y":270,"z":180.0169}},"6e92f3":{"lock":false,"pos":{"x":-23.6764,"y":1.6303,"z":7.57},"rot":{"x":359.9201,"y":270.0002,"z":180.0169}},"7234af":{"lock":false,"pos":{"x":-20.311,"y":1.6098,"z":-0.012},"rot":{"x":359.9201,"y":270.0092,"z":0.0169}},"7927f6":{"lock":false,"pos":{"x":-3.9276,"y":1.7348,"z":5.7571},"rot":{"x":359.9197,"y":270,"z":180.0168}},"a5a321":{"lock":false,"pos":{"x":-3.956,"y":1.5975,"z":-10.4412},"rot":{"x":359.9198,"y":269.935,"z":0.0169}},"a6ddbc":{"lock":false,"pos":{"x":-1.4653,"y":1.4756,"z":-26.9305},"rot":{"x":359.9201,"y":269.9974,"z":0.0169}},"b2aace":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9829,"y":359.8529,"z":359.9201}},"b6da68":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.279},"rot":{"x":359.9551,"y":224.9995,"z":0.0687}},"e044bd":{"lock":false,"pos":{"x":-26.9117,"y":1.6213,"z":7.6765},"rot":{"x":359.9201,"y":270.0026,"z":0.0169}},"ed44f7":{"lock":false,"pos":{"x":-2.6888,"y":1.6191,"z":-5.0488},"rot":{"x":359.9197,"y":269.9885,"z":0.0169}},"f4c93e":{"lock":false,"pos":{"x":-3.9715,"y":1.5827,"z":-14.663},"rot":{"x":359.9197,"y":270.03,"z":0.0168}},"f56746":{"lock":false,"pos":{"x":-26.9984,"y":1.6202,"z":3.5381},"rot":{"x":359.9316,"y":315.0954,"z":359.9553}}}}' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Custom_Model_Bag -Nickname: The Symphony of Erich Zann -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 32.29998 - posY: 2.31103444 - posZ: 0.140022367 - rotX: 359.932922 - rotY: 270.000519 - rotZ: 0.0139464093 - scaleX: 2.21 - scaleY: 0.46 - scaleZ: 2.42 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Auguste Gaudin 15fb0f.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Auguste Gaudin 15fb0f.yaml deleted file mode 100644 index 8d5798a8c..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Model_Bag Set-aside b6da68/CardCustom Auguste Gaudin 15fb0f.yaml +++ /dev/null @@ -1,45 +0,0 @@ -Autoraise: true -CardID: 270200 -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -CustomDeck: - '2702': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/789759303540348998/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474754803/CDCA76602846E37D6734D19BF460E209BDACBB2A/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 15fb0f -Grid: true -GridProjection: false -Hands: true -HideWhenFaceDown: true -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: CardCustom -Nickname: Auguste Gaudin -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 1.69639647 - posY: 3.834007 - posZ: 14.2788191 - rotX: 359.948029 - rotY: 224.998962 - rotZ: 5.52851772 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile f56746.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile f56746.yaml deleted file mode 100644 index d2c89404b..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Custom_Tile f56746.yaml +++ /dev/null @@ -1,135 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1.0 - ImageSecondaryURL: https://i.imgur.com/vppt2my.png - ImageURL: https://i.imgur.com/vppt2my.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: f56746 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -States: - '2': - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1.0 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/HyfE8m8.png - WidthScale: 0.0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 44b0c5 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -39.7933121 - posY: 1.63758957 - posZ: 2.038383 - rotX: 359.9201 - rotY: 269.9961 - rotZ: 0.0168742146 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' - '3': - Autoraise: true - ColorDiffuse: - b: 0.6045295 - g: 0.6045295 - r: 0.6045295 - CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 3 - ImageScalar: 1.0 - ImageSecondaryURL: https://i.imgur.com/HyfE8m8.png - ImageURL: https://i.imgur.com/dHKBLoD.png - WidthScale: 0.0 - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 5b38c6 - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Custom_Tile - Nickname: '' - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -38.8217163 - posY: 1.99356019 - posZ: 0.4159239 - rotX: 359.9201 - rotY: 272.9828 - rotZ: 0.01687373 - scaleX: 0.8 - scaleY: 1.0 - scaleZ: 0.8 - XmlUI: '' -Sticky: true -Tooltip: true -Transform: - posX: -26.9984 - posY: 1.62018967 - posZ: 3.53810024 - rotX: 359.931641 - rotY: 315.095459 - rotZ: 359.955322 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Deck 0484a7.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Deck 0484a7.yaml deleted file mode 100644 index 92cb53282..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The Symphony of Erich Zann 18aa54/Deck 0484a7.yaml +++ /dev/null @@ -1,200 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 -ContainedObjects: -- Autoraise: true - CardID: 269900 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2699': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1016067538700643557/10D4D80B81C7E848A9C41D2B0BE2540A7FD4D667/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474751307/13DBBFBEF4EBAB8E8EA0E2104908565EF99B40B9/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: c3d2e3 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -2.724613 - posY: 1.65702379 - posZ: 0.3733955 - rotX: 359.920959 - rotY: 269.9996 - rotZ: 0.013283168 - scaleX: 0.7375908 - scaleY: 1.0 - scaleZ: 0.7375908 - XmlUI: '' -- Autoraise: true - CardID: 269800 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2698': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474750912/750BF9165190CFFAF8EA80AE936BC91702516C6F/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700642770/06F5036446C8848717A8F40698F126D68643BFFA/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: 4120e1 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -2.72463417 - posY: 1.80538642 - posZ: 0.373282254 - rotX: 359.970917 - rotY: 270.001434 - rotZ: 0.00594384968 - scaleX: 0.7375908 - scaleY: 1.0 - scaleZ: 0.7375908 - XmlUI: '' -- Autoraise: true - CardID: 269700 - ColorDiffuse: - b: 0.713235259 - g: 0.713235259 - r: 0.713235259 - CustomDeck: - '2697': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474750336/80B1A90DD039B0628AD31060085B7EA217F0D38E/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474750197/815C1F6BFA88E7C15610CE3821C3EA872C5B8757/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - Description: '' - DragSelectable: true - GMNotes: '' - GUID: cbc724 - Grid: true - GridProjection: false - Hands: true - HideWhenFaceDown: true - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: CardCustom - Nickname: '' - SidewaysCard: false - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: -2.724645 - posY: 1.67203939 - posZ: 0.373307645 - rotX: 359.9358 - rotY: 270.0 - rotZ: 0.0134699857 - scaleX: 0.7375908 - scaleY: 1.0 - scaleZ: 0.7375908 - XmlUI: '' -CustomDeck: - '2697': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474750336/80B1A90DD039B0628AD31060085B7EA217F0D38E/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474750197/815C1F6BFA88E7C15610CE3821C3EA872C5B8757/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - '2698': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1017194907474750912/750BF9165190CFFAF8EA80AE936BC91702516C6F/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1016067538700642770/06F5036446C8848717A8F40698F126D68643BFFA/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false - '2699': - BackIsHidden: true - BackURL: http://cloud-3.steamusercontent.com/ugc/1016067538700643557/10D4D80B81C7E848A9C41D2B0BE2540A7FD4D667/ - FaceURL: http://cloud-3.steamusercontent.com/ugc/1017194907474751307/13DBBFBEF4EBAB8E8EA0E2104908565EF99B40B9/ - NumHeight: 1 - NumWidth: 1 - Type: 0 - UniqueBack: false -DeckIDs: -- 269900 -- 269800 -- 269700 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 0484a7 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: true -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Deck -Nickname: '' -SidewaysCard: false -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: -2.72500014 - posY: 1.62076092 - posZ: 0.373199642 - rotX: 359.919739 - rotY: 269.9856 - rotZ: 0.016857462 - scaleX: 0.7375908 - scaleY: 1.0 - scaleZ: 0.7375908 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1.yaml deleted file mode 100644 index c9f3514f9..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1.yaml +++ /dev/null @@ -1,52 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 0.0 - g: 0.366520882 - r: 0.7058823 -ContainedObjects: -- !include 'Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 80c55a.yaml' -- !include 'Bag Chaos Tokens - Easy e9f3b1/Custom_Tile d84185.yaml' -- !include 'Bag Chaos Tokens - Easy e9f3b1/Custom_Tile e5d7f5.yaml' -- !include 'Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 2b7e92.yaml' -- !include 'Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 65a97d.yaml' -- !include 'Bag Chaos Tokens - Easy e9f3b1/Custom_Tile a6ea6e.yaml' -- !include 'Bag Chaos Tokens - Easy e9f3b1/Custom_Tile bdd84c.yaml' -- !include 'Bag Chaos Tokens - Easy e9f3b1/Custom_Tile b644d2.yaml' -- !include 'Bag Chaos Tokens - Easy e9f3b1/Custom_Tile b644d2.yaml' -- !include 'Bag Chaos Tokens - Easy e9f3b1/Custom_Tile b644d2.yaml' -- !include 'Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 0a8592.yaml' -- !include 'Bag Chaos Tokens - Easy e9f3b1/Custom_Tile a80fe7.yaml' -- !include 'Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 0a8592.yaml' -- !include 'Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 850cf1.yaml' -- !include 'Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 1737a7.yaml' -Description: '' -DragSelectable: true -GMNotes: '' -GUID: e9f3b1 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Bag -Nickname: Chaos Tokens - Easy -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.07261 - posY: 1.27731347 - posZ: -22.1196041 - rotX: 359.9831 - rotY: 0.00106278178 - rotZ: 359.920044 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 0a8592.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 0a8592.yaml deleted file mode 100644 index 5b89fbad0..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 0a8592.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/btEtVfd.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 0a8592 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.374602 - posY: 3.5303247 - posZ: -21.8518257 - rotX: 359.428223 - rotY: 270.019653 - rotZ: 358.518219 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 1737a7.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 1737a7.yaml deleted file mode 100644 index 79c066766..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 1737a7.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/uIx8jbY.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 1737a7 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 8.803557 - posY: 3.49608421 - posZ: -21.4332771 - rotX: 0.636305 - rotY: 269.958649 - rotZ: 355.853546 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 2b7e92.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 2b7e92.yaml deleted file mode 100644 index cbb5933fa..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 2b7e92.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/stbBxtx.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 2b7e92 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.3584795 - posY: 3.550738 - posZ: -21.9525375 - rotX: 0.5396057 - rotY: 270.026123 - rotZ: 1.86905563 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 65a97d.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 65a97d.yaml deleted file mode 100644 index 1e907f16c..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 65a97d.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/stbBxtx.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 65a97d -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 8.51672649 - posY: 3.534178 - posZ: -22.1686249 - rotX: 1.08414936 - rotY: 270.010529 - rotZ: 0.0784216449 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 80c55a.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 80c55a.yaml deleted file mode 100644 index 340afaf10..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 80c55a.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/nEmqjmj.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 80c55a -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 10.2479143 - posY: 3.44219923 - posZ: -21.6780357 - rotX: 356.607483 - rotY: 270.069641 - rotZ: 358.439728 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 850cf1.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 850cf1.yaml deleted file mode 100644 index 516870a01..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile 850cf1.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/uIx8jbY.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 850cf1 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.799436 - posY: 3.53337836 - posZ: -21.4314728 - rotX: 359.3767 - rotY: 269.998566 - rotZ: 359.2877 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile a6ea6e.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile a6ea6e.yaml deleted file mode 100644 index 9d337880a..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile a6ea6e.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/bfTg2hb.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: a6ea6e -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.38868 - posY: 3.52525163 - posZ: -22.5251255 - rotX: 1.12288654 - rotY: 270.0462 - rotZ: 4.52385855 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile a80fe7.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile a80fe7.yaml deleted file mode 100644 index 67af4cd6a..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile a80fe7.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/btEtVfd.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: a80fe7 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.374602 - posY: 3.53032422 - posZ: -21.8518257 - rotX: 359.428223 - rotY: 270.019684 - rotZ: 358.51825 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile b644d2.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile b644d2.yaml deleted file mode 100644 index b212b7480..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile b644d2.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/w3XbrCC.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: b644d2 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.867091 - posY: 3.568025 - posZ: -21.9041424 - rotX: 0.009070705 - rotY: 270.044067 - rotZ: 4.855129 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile bdd84c.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile bdd84c.yaml deleted file mode 100644 index c86328fc5..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile bdd84c.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/bfTg2hb.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: bdd84c -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.008445 - posY: 3.53547287 - posZ: -22.7122688 - rotX: 0.403797746 - rotY: 270.030151 - rotZ: 1.11883843 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile d84185.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile d84185.yaml deleted file mode 100644 index 6d170c590..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile d84185.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/lns4fhz.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: d84185 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.462101 - posY: 3.54357433 - posZ: -22.2771053 - rotX: 358.999634 - rotY: 269.999451 - rotZ: 0.711219549 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile e5d7f5.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile e5d7f5.yaml deleted file mode 100644 index af6fff726..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Easy e9f3b1/Custom_Tile e5d7f5.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/ttnspKt.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: e5d7f5 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.528278 - posY: 3.541657 - posZ: -22.2937374 - rotX: 358.8601 - rotY: 270.0144 - rotZ: 0.6813258 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6.yaml deleted file mode 100644 index cf2e5469b..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6.yaml +++ /dev/null @@ -1,52 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 0.0 - g: 0.366520882 - r: 0.7058823 -ContainedObjects: -- !include 'Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 59aae2.yaml' -- !include 'Bag Chaos Tokens - Expert 38fcc6/Custom_Tile b99eaf.yaml' -- !include 'Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 20836f.yaml' -- !include 'Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 24671d.yaml' -- !include 'Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 4e6d8f.yaml' -- !include 'Bag Chaos Tokens - Expert 38fcc6/Custom_Tile c4e172.yaml' -- !include 'Bag Chaos Tokens - Expert 38fcc6/Custom_Tile cb3271.yaml' -- !include 'Bag Chaos Tokens - Expert 38fcc6/Custom_Tile a69779.yaml' -- !include 'Bag Chaos Tokens - Expert 38fcc6/Custom_Tile be347f.yaml' -- !include 'Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 77ad65.yaml' -- !include 'Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 9e61fd.yaml' -- !include 'Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 9e61fd.yaml' -- !include 'Bag Chaos Tokens - Expert 38fcc6/Custom_Tile b644d2.yaml' -- !include 'Bag Chaos Tokens - Expert 38fcc6/Custom_Tile b644d2.yaml' -- !include 'Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 0a8592.yaml' -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 38fcc6 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Bag -Nickname: Chaos Tokens - Expert -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.036703 - posY: 1.2743907 - posZ: -32.21311 - rotX: 359.983154 - rotY: 4.94621454e-05 - rotZ: 359.920044 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 0a8592.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 0a8592.yaml deleted file mode 100644 index 481f737ab..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 0a8592.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/btEtVfd.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 0a8592 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.404658 - posY: 3.527411 - posZ: -31.9463482 - rotX: 358.8208 - rotY: 270.022461 - rotZ: 358.932281 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 20836f.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 20836f.yaml deleted file mode 100644 index 321b53f8f..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 20836f.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/ttnspKt.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 20836f -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.935287 - posY: 3.528794 - posZ: -32.45768 - rotX: 358.8171 - rotY: 270.019073 - rotZ: 0.186558038 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 24671d.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 24671d.yaml deleted file mode 100644 index d397386ad..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 24671d.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/stbBxtx.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 24671d -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.406095 - posY: 3.54133248 - posZ: -32.1427345 - rotX: 358.813232 - rotY: 270.012054 - rotZ: -0.0023728793 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 4e6d8f.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 4e6d8f.yaml deleted file mode 100644 index 596962092..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 4e6d8f.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/stbBxtx.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 4e6d8f -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.522579 - posY: 3.532813 - posZ: -32.5938072 - rotX: 359.1541 - rotY: 270.0051 - rotZ: 1.02849746 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 59aae2.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 59aae2.yaml deleted file mode 100644 index 9e99efe67..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 59aae2.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/nEmqjmj.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 59aae2 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 8.955662 - posY: 3.542853 - posZ: -32.30121 - rotX: 0.920627654 - rotY: 270.0112 - rotZ: 359.850159 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 77ad65.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 77ad65.yaml deleted file mode 100644 index 1ec23b756..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 77ad65.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/yfs8gHq.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 77ad65 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.136736 - posY: 3.531746 - posZ: -32.6566429 - rotX: 0.131532758 - rotY: 270.0165 - rotZ: 1.48875082 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 9e61fd.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 9e61fd.yaml deleted file mode 100644 index 585db3649..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile 9e61fd.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/bfTg2hb.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 9e61fd -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 10.1095963 - posY: 2.99797988 - posZ: -32.04306 - rotX: -2.10968983e-06 - rotY: 270.0135 - rotZ: 3.294815e-05 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile a69779.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile a69779.yaml deleted file mode 100644 index b47ffaf29..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile a69779.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/3Ym1IeG.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: a69779 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.725429 - posY: 3.45140147 - posZ: -31.241621 - rotX: 358.025726 - rotY: 270.0533 - rotZ: 356.9877 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile b99eaf.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile b99eaf.yaml deleted file mode 100644 index b0ad32a3d..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile b99eaf.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/lns4fhz.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: b99eaf -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.777473 - posY: 3.50998068 - posZ: -32.42745 - rotX: 357.366974 - rotY: 269.996948 - rotZ: 0.394901246 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile be347f.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile be347f.yaml deleted file mode 100644 index bbf26c219..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile be347f.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/qrgGQRD.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: be347f -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.36293 - posY: 3.53788185 - posZ: -31.8869343 - rotX: 359.2102 - rotY: 270.031677 - rotZ: 358.859741 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile c4e172.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile c4e172.yaml deleted file mode 100644 index d88aa9b69..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile c4e172.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/9t3rPTQ.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: c4e172 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.825005 - posY: 3.53190732 - posZ: -32.3693733 - rotX: 358.870026 - rotY: 269.9791 - rotZ: 0.39023748 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile cb3271.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile cb3271.yaml deleted file mode 100644 index 6f33ca123..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Expert 38fcc6/Custom_Tile cb3271.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/c9qdSzS.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: cb3271 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.799235 - posY: 3.5325 - posZ: -32.24532 - rotX: 358.769226 - rotY: 270.0265 - rotZ: 0.200976565 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf.yaml deleted file mode 100644 index b488bcf9b..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf.yaml +++ /dev/null @@ -1,52 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 0.0 - g: 0.366520882 - r: 0.7058823 -ContainedObjects: -- !include 'Bag Chaos Tokens - Hard 3671bf/Custom_Tile abbf5d.yaml' -- !include 'Bag Chaos Tokens - Hard 3671bf/Custom_Tile 437efb.yaml' -- !include 'Bag Chaos Tokens - Hard 3671bf/Custom_Tile 672daf.yaml' -- !include 'Bag Chaos Tokens - Hard 3671bf/Custom_Tile f87053.yaml' -- !include 'Bag Chaos Tokens - Hard 3671bf/Custom_Tile eed7b8.yaml' -- !include 'Bag Chaos Tokens - Hard 3671bf/Custom_Tile 419001.yaml' -- !include 'Bag Chaos Tokens - Hard 3671bf/Custom_Tile 1cf18b.yaml' -- !include 'Bag Chaos Tokens - Hard 3671bf/Custom_Tile bb8c4a.yaml' -- !include 'Bag Chaos Tokens - Hard 3671bf/Custom_Tile ccc76a.yaml' -- !include 'Bag Chaos Tokens - Hard 3671bf/Custom_Tile d2b786.yaml' -- !include 'Bag Chaos Tokens - Hard 3671bf/Custom_Tile 141dac.yaml' -- !include 'Bag Chaos Tokens - Hard 3671bf/Custom_Tile b644d2.yaml' -- !include 'Bag Chaos Tokens - Hard 3671bf/Custom_Tile b644d2.yaml' -- !include 'Bag Chaos Tokens - Hard 3671bf/Custom_Tile 0a8592.yaml' -- !include 'Bag Chaos Tokens - Hard 3671bf/Custom_Tile 44078a.yaml' -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 3671bf -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Bag -Nickname: Chaos Tokens - Hard -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.006803 - posY: 1.27545428 - posZ: -28.7444057 - rotX: 359.983124 - rotY: 0.001018472 - rotZ: 359.920044 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile 0a8592.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile 0a8592.yaml deleted file mode 100644 index 6d5b62ce7..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile 0a8592.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/btEtVfd.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 0a8592 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.465097 - posY: 3.53095746 - posZ: -28.6733341 - rotX: 358.9967 - rotY: 270.019135 - rotZ: 359.1453 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile 141dac.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile 141dac.yaml deleted file mode 100644 index 31fa33532..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile 141dac.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/bfTg2hb.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 141dac -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 8.674705 - posY: 3.55432057 - posZ: -28.9447784 - rotX: 0.7915995 - rotY: 269.893921 - rotZ: 353.267548 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile 1cf18b.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile 1cf18b.yaml deleted file mode 100644 index 3fb5777c0..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile 1cf18b.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/3Ym1IeG.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 1cf18b -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 10.176055 - posY: 3.48156834 - posZ: -28.8531189 - rotX: 356.621582 - rotY: 270.032654 - rotZ: 357.70816 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile 419001.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile 419001.yaml deleted file mode 100644 index 68ba9980f..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile 419001.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/c9qdSzS.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: '419001' -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.135368 - posY: 3.53755522 - posZ: -29.242178 - rotX: 0.295633674 - rotY: 270.032837 - rotZ: 1.28790164 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile 437efb.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile 437efb.yaml deleted file mode 100644 index 5b4d9ef82..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile 437efb.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/lns4fhz.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 437efb -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.497414 - posY: 3.53859425 - posZ: -29.1048851 - rotX: 359.010651 - rotY: 269.997955 - rotZ: 0.928960145 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile 44078a.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile 44078a.yaml deleted file mode 100644 index efe0dc684..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile 44078a.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/uIx8jbY.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 44078a -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 10.0170908 - posY: 3.52820516 - posZ: -29.4979649 - rotX: 359.886047 - rotY: 269.9995 - rotZ: 0.0439445637 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile 672daf.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile 672daf.yaml deleted file mode 100644 index 9237f47e2..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile 672daf.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/ttnspKt.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 672daf -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.857215 - posY: 3.50572181 - posZ: -28.1448231 - rotX: 358.70932 - rotY: 270.021881 - rotZ: 358.537659 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile abbf5d.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile abbf5d.yaml deleted file mode 100644 index 20dc172e8..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile abbf5d.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/nEmqjmj.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: abbf5d -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.377265 - posY: 3.53955 - posZ: -28.8975239 - rotX: 358.550873 - rotY: 270.005432 - rotZ: 0.425039142 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile b644d2.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile b644d2.yaml deleted file mode 100644 index 05dbcae8a..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile b644d2.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/w3XbrCC.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: b644d2 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.04724 - posY: 3.51937222 - posZ: -29.1425972 - rotX: 0.249393851 - rotY: 270.065 - rotZ: 5.103952 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile bb8c4a.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile bb8c4a.yaml deleted file mode 100644 index 058957500..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile bb8c4a.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/qrgGQRD.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: bb8c4a -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 10.3273382 - posY: 3.48645949 - posZ: -28.8584423 - rotX: 358.896332 - rotY: 270.0237 - rotZ: -0.000116721836 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile ccc76a.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile ccc76a.yaml deleted file mode 100644 index 891d4d56a..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile ccc76a.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/yfs8gHq.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: ccc76a -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.71795 - posY: 3.53076339 - posZ: -28.4828358 - rotX: 358.879333 - rotY: 270.023621 - rotZ: 359.0945 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile d2b786.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile d2b786.yaml deleted file mode 100644 index c3dad1799..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile d2b786.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/bfTg2hb.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: d2b786 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.240763 - posY: 3.54476261 - posZ: -29.0168228 - rotX: 3.4574 - rotY: 270.081757 - rotZ: 2.1540916 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile eed7b8.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile eed7b8.yaml deleted file mode 100644 index 336827939..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile eed7b8.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/stbBxtx.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: eed7b8 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.854934 - posY: 3.5318234 - posZ: -28.5068264 - rotX: 358.919067 - rotY: 270.0188 - rotZ: 359.4357 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile f87053.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile f87053.yaml deleted file mode 100644 index 7fa422749..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Hard 3671bf/Custom_Tile f87053.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/stbBxtx.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: f87053 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 8.98499 - posY: 3.538707 - posZ: -28.8220253 - rotX: 3.580775 - rotY: 270.183228 - rotZ: 3.0704205 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee.yaml deleted file mode 100644 index 32e3de312..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee.yaml +++ /dev/null @@ -1,52 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 0.0 - g: 0.366520882 - r: 0.7058823 -ContainedObjects: -- !include 'Bag Chaos Tokens - Standard 1708ee/Custom_Tile 6e24c2.yaml' -- !include 'Bag Chaos Tokens - Standard 1708ee/Custom_Tile f37021.yaml' -- !include 'Bag Chaos Tokens - Standard 1708ee/Custom_Tile 411a9a.yaml' -- !include 'Bag Chaos Tokens - Standard 1708ee/Custom_Tile 12b94b.yaml' -- !include 'Bag Chaos Tokens - Standard 1708ee/Custom_Tile e371e8.yaml' -- !include 'Bag Chaos Tokens - Standard 1708ee/Custom_Tile 424692.yaml' -- !include 'Bag Chaos Tokens - Standard 1708ee/Custom_Tile f0cb2a.yaml' -- !include 'Bag Chaos Tokens - Standard 1708ee/Custom_Tile 728ec7.yaml' -- !include 'Bag Chaos Tokens - Standard 1708ee/Custom_Tile 76a561.yaml' -- !include 'Bag Chaos Tokens - Standard 1708ee/Custom_Tile b644d2.yaml' -- !include 'Bag Chaos Tokens - Standard 1708ee/Custom_Tile b644d2.yaml' -- !include 'Bag Chaos Tokens - Standard 1708ee/Custom_Tile b644d2.yaml' -- !include 'Bag Chaos Tokens - Standard 1708ee/Custom_Tile 0a8592.yaml' -- !include 'Bag Chaos Tokens - Standard 1708ee/Custom_Tile 0a8592.yaml' -- !include 'Bag Chaos Tokens - Standard 1708ee/Custom_Tile ca63f3.yaml' -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 1708ee -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MaterialIndex: -1 -MeasureMovement: false -MeshIndex: -1 -Name: Bag -Nickname: Chaos Tokens - Standard -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 8.98500252 - posY: 1.2764622 - posZ: -25.426403 - rotX: 359.976654 - rotY: 355.3276 - rotZ: 359.9217 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile 0a8592.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile 0a8592.yaml deleted file mode 100644 index 86211627a..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile 0a8592.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/btEtVfd.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 0a8592 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.454019 - posY: 3.5446682 - posZ: -24.91992 - rotX: 0.0207988229 - rotY: 270.012451 - rotZ: 0.016774876 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile 12b94b.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile 12b94b.yaml deleted file mode 100644 index f2ab06d24..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile 12b94b.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/stbBxtx.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 12b94b -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.665694 - posY: 3.549435 - posZ: -25.332058 - rotX: 1.45655882 - rotY: 269.948517 - rotZ: 0.212811917 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile 411a9a.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile 411a9a.yaml deleted file mode 100644 index f1a384973..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile 411a9a.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/ttnspKt.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 411a9a -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.481179 - posY: 3.54370284 - posZ: -25.6016674 - rotX: 358.8637 - rotY: 284.967041 - rotZ: 0.0453162268 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile 424692.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile 424692.yaml deleted file mode 100644 index c2f180f1f..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile 424692.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/qrgGQRD.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: '424692' -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 8.910916 - posY: 3.49396133 - posZ: -25.1365166 - rotX: 2.48862386 - rotY: 270.0249 - rotZ: 355.460724 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile 6e24c2.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile 6e24c2.yaml deleted file mode 100644 index d5f2128ed..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile 6e24c2.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/nEmqjmj.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 6e24c2 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 8.802916 - posY: 3.534256 - posZ: -25.9909439 - rotX: 0.789197147 - rotY: 270.018982 - rotZ: 0.841081 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile 728ec7.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile 728ec7.yaml deleted file mode 100644 index b760d407d..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile 728ec7.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/bfTg2hb.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 728ec7 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.01215649 - posY: 3.53518152 - posZ: -25.8241768 - rotX: 1.08361459 - rotY: 270.026062 - rotZ: 1.22446978 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile 76a561.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile 76a561.yaml deleted file mode 100644 index 9c7272764..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile 76a561.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/bfTg2hb.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: 76a561 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.483608 - posY: 3.53892732 - posZ: -25.82906 - rotX: 359.177734 - rotY: 270.0061 - rotZ: 1.133157 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile b644d2.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile b644d2.yaml deleted file mode 100644 index 70e99799b..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile b644d2.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/w3XbrCC.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: b644d2 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 10.0918894 - posY: 2.883454 - posZ: -26.1473 - rotX: 0.009070705 - rotY: 270.044067 - rotZ: 4.855129 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile ca63f3.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile ca63f3.yaml deleted file mode 100644 index 24d3382f2..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile ca63f3.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/uIx8jbY.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: ca63f3 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.369025 - posY: 3.538791 - posZ: -25.547842 - rotX: 358.677521 - rotY: 269.9963 - rotZ: 0.371539831 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile e371e8.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile e371e8.yaml deleted file mode 100644 index f9cdbe5bb..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile e371e8.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/stbBxtx.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: e371e8 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 10.0855522 - posY: 3.53245139 - posZ: -25.8328037 - rotX: 359.0296 - rotY: 270.006622 - rotZ: 0.340761572 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile f0cb2a.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile f0cb2a.yaml deleted file mode 100644 index 6cb333759..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile f0cb2a.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/yfs8gHq.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: f0cb2a -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.940891 - posY: 3.44495153 - posZ: -26.57063 - rotX: 359.088135 - rotY: 269.988617 - rotZ: 359.614441 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile f37021.yaml b/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile f37021.yaml deleted file mode 100644 index 15d339103..000000000 --- a/unpacked/Custom_Model_Bag The Side Missions d466d6/Custom_Model_Bag The War of the Worlds 19d469/Bag Chaos Tokens - Standard 1708ee/Custom_Tile f37021.yaml +++ /dev/null @@ -1,44 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -CustomImage: - CustomTile: - Stackable: false - Stretch: true - Thickness: 0.1 - Type: 2 - ImageScalar: 1.0 - ImageSecondaryURL: '' - ImageURL: https://i.imgur.com/lns4fhz.png - WidthScale: 0.0 -Description: '' -DragSelectable: true -GMNotes: '' -GUID: f37021 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Custom_Tile -Nickname: '' -Snap: true -Sticky: true -Tooltip: true -Transform: - posX: 9.925762 - posY: 3.526771 - posZ: -25.899147 - rotX: 358.6572 - rotY: 269.99707 - rotZ: 0.7259842 - scaleX: 0.81 - scaleY: 1.0 - scaleZ: 0.81 -XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck All Weaknesses d95bd6.yaml b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck All Weaknesses d95bd6.yaml index e70df3429..b170740c0 100644 --- a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck All Weaknesses d95bd6.yaml +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck All Weaknesses d95bd6.yaml @@ -1779,7 +1779,7 @@ Transform: posX: -24.5466042 posY: 1.46303952 posZ: 78.6946 - rotX: 0.0207951721 + rotX: 0.0207952 rotY: 270.046234 rotZ: 180.0168 scaleX: 1.0 diff --git a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck Return to the Dunwich Legacy 0b361d.yaml b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck Return to the Dunwich Legacy 0b361d.yaml index b602fb82e..72d869e44 100644 --- a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck Return to the Dunwich Legacy 0b361d.yaml +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck Return to the Dunwich Legacy 0b361d.yaml @@ -129,7 +129,7 @@ Transform: posX: -20.9388981 posY: 1.29720843 posZ: 83.3067 - rotX: 0.02080292 + rotX: 0.020803161 rotY: 270.0185 rotZ: 180.016785 scaleX: 1.0 diff --git a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck The Circle Undone f9215d.yaml b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck The Circle Undone f9215d.yaml index 8e1127f53..f85bdcc8f 100644 --- a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck The Circle Undone f9215d.yaml +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck The Circle Undone f9215d.yaml @@ -221,7 +221,7 @@ Transform: posX: -20.938921 posY: 1.30145049 posZ: 64.90663 - rotX: 0.02080422 + rotX: 0.0208042767 rotY: 270.0141 rotZ: 180.016785 scaleX: 1.0 diff --git a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck The Dream-Eaters c97be9.yaml b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck The Dream-Eaters c97be9.yaml index 20fa21ace..ddd49bac9 100644 --- a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck The Dream-Eaters c97be9.yaml +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck The Dream-Eaters c97be9.yaml @@ -221,7 +221,7 @@ Transform: posX: -20.9389286 posY: 1.300104 posZ: 60.3065376 - rotX: 0.02080428 + rotX: 0.0208042283 rotY: 270.0144 rotZ: 180.016785 scaleX: 1.0 diff --git a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck The Path to Carcosa 193ddf.yaml b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck The Path to Carcosa 193ddf.yaml index 9a418f071..6c300993d 100644 --- a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck The Path to Carcosa 193ddf.yaml +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck The Path to Carcosa 193ddf.yaml @@ -221,7 +221,7 @@ Transform: posX: -20.9388981 posY: 1.30549 posZ: 78.7067 - rotX: 0.0208048932 + rotX: 0.02080495 rotY: 270.0115 rotZ: 180.016769 scaleX: 1.0 diff --git a/unpacked/Custom_Model_Infinite_Bag Clue tokens 31fa39.yaml b/unpacked/Custom_Model_Infinite_Bag Clue tokens 31fa39.yaml index a50e1e6da..d2943104c 100644 --- a/unpacked/Custom_Model_Infinite_Bag Clue tokens 31fa39.yaml +++ b/unpacked/Custom_Model_Infinite_Bag Clue tokens 31fa39.yaml @@ -83,7 +83,7 @@ Transform: posZ: -1.23971236 rotX: 359.9201 rotY: 270.011841 - rotZ: 0.0168668 + rotZ: 0.0168667957 scaleX: 0.8 scaleY: 0.8 scaleZ: 0.8 diff --git a/unpacked/Custom_Model_Infinite_Bag Doom tokens 47ffc3.yaml b/unpacked/Custom_Model_Infinite_Bag Doom tokens 47ffc3.yaml index 9fe2977ff..f4f807f7c 100644 --- a/unpacked/Custom_Model_Infinite_Bag Doom tokens 47ffc3.yaml +++ b/unpacked/Custom_Model_Infinite_Bag Doom tokens 47ffc3.yaml @@ -83,7 +83,7 @@ Transform: posZ: 1.09087777 rotX: 359.9201 rotY: 270.0118 - rotZ: 0.0168728027 + rotZ: 0.0168731473 scaleX: 0.8 scaleY: 1.0 scaleZ: 0.8 diff --git a/unpacked/Custom_Model_Infinite_Bag Horror tokens 7bd2a0.yaml b/unpacked/Custom_Model_Infinite_Bag Horror tokens 7bd2a0.yaml index 64c1af6d8..203338f12 100644 --- a/unpacked/Custom_Model_Infinite_Bag Horror tokens 7bd2a0.yaml +++ b/unpacked/Custom_Model_Infinite_Bag Horror tokens 7bd2a0.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: b: 0.4512195 - g: 0.248162061 - r: 0.19251281 + g: 0.248160541 + r: 0.19251138 ContainedObjects: - Autoraise: true ColorDiffuse: diff --git a/unpacked/Custom_Model_Infinite_Bag Horror tokens ae1a4e.yaml b/unpacked/Custom_Model_Infinite_Bag Horror tokens ae1a4e.yaml index 182b8f4cd..116c0442a 100644 --- a/unpacked/Custom_Model_Infinite_Bag Horror tokens ae1a4e.yaml +++ b/unpacked/Custom_Model_Infinite_Bag Horror tokens ae1a4e.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: b: 0.4512195 - g: 0.248162061 - r: 0.19251281 + g: 0.248160541 + r: 0.19251138 ContainedObjects: - Autoraise: true ColorDiffuse: diff --git a/unpacked/Custom_Model_Infinite_Bag Horror tokens c3ecf4.yaml b/unpacked/Custom_Model_Infinite_Bag Horror tokens c3ecf4.yaml index 9adc44073..ca14bfea3 100644 --- a/unpacked/Custom_Model_Infinite_Bag Horror tokens c3ecf4.yaml +++ b/unpacked/Custom_Model_Infinite_Bag Horror tokens c3ecf4.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: b: 0.4512195 - g: 0.248162061 - r: 0.19251281 + g: 0.248160541 + r: 0.19251138 ContainedObjects: - Autoraise: true ColorDiffuse: @@ -444,7 +444,7 @@ Transform: posZ: -1.23968494 rotX: 359.9201 rotY: 270.013245 - rotZ: 0.0168637447 + rotZ: 0.01686403 scaleX: 0.8 scaleY: 1.0 scaleZ: 0.8 diff --git a/unpacked/Custom_Model_Infinite_Bag Resource tokens 0168ae.yaml b/unpacked/Custom_Model_Infinite_Bag Resource tokens 0168ae.yaml index 3a00ceaa2..ce5014e22 100644 --- a/unpacked/Custom_Model_Infinite_Bag Resource tokens 0168ae.yaml +++ b/unpacked/Custom_Model_Infinite_Bag Resource tokens 0168ae.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: - b: 0.0705268 - g: 0.0705268 - r: 0.2822676 + b: 0.07052573 + g: 0.07052573 + r: 0.28226608 ContainedObjects: - Autoraise: true ColorDiffuse: @@ -12,9 +12,9 @@ ContainedObjects: CustomImage: CustomToken: MergeDistancePixels: 5.0 - Stackable: false + Stackable: true StandUp: false - Thickness: 0.1 + Thickness: 0.3 ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/j5v5E3j.png @@ -38,12 +38,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -44.5858459 - posY: 1.7639544 - posZ: 26.7597733 - rotX: 0.00450766226 - rotY: 0.0132827619 - rotZ: 5.878918e-05 + posX: -44.4978676 + posY: 1.780814 + posZ: 26.8173084 + rotX: 359.987335 + rotY: 359.988251 + rotZ: 0.01935556 scaleX: 0.17 scaleY: 0.17 scaleZ: 0.17 diff --git a/unpacked/Custom_Model_Infinite_Bag Resource tokens 9fadf9.yaml b/unpacked/Custom_Model_Infinite_Bag Resource tokens 9fadf9.yaml index b4f9c64cb..c79cb8b60 100644 --- a/unpacked/Custom_Model_Infinite_Bag Resource tokens 9fadf9.yaml +++ b/unpacked/Custom_Model_Infinite_Bag Resource tokens 9fadf9.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: - b: 0.0705268 - g: 0.0705268 - r: 0.2822676 + b: 0.07052573 + g: 0.07052573 + r: 0.28226608 ContainedObjects: - Autoraise: true ColorDiffuse: @@ -12,9 +12,9 @@ ContainedObjects: CustomImage: CustomToken: MergeDistancePixels: 5.0 - Stackable: false + Stackable: true StandUp: false - Thickness: 0.1 + Thickness: 0.3 ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/j5v5E3j.png @@ -38,12 +38,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -51.0112267 - posY: 1.764534 - posZ: -1.86179507 - rotX: 0.000176791131 - rotY: 0.00205930183 - rotZ: 1.16711055e-06 + posX: -50.89665 + posY: 1.78145909 + posZ: -1.283418 + rotX: -0.000167391569 + rotY: 359.992 + rotZ: 2.02021056e-05 scaleX: 0.17 scaleY: 0.17 scaleZ: 0.17 diff --git a/unpacked/Custom_Model_Infinite_Bag Resource tokens fd617a.yaml b/unpacked/Custom_Model_Infinite_Bag Resource tokens fd617a.yaml index 5a430b400..71193184e 100644 --- a/unpacked/Custom_Model_Infinite_Bag Resource tokens fd617a.yaml +++ b/unpacked/Custom_Model_Infinite_Bag Resource tokens fd617a.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: - b: 0.0705268 - g: 0.0705268 - r: 0.2822676 + b: 0.07052573 + g: 0.07052573 + r: 0.28226608 ContainedObjects: - Autoraise: true ColorDiffuse: @@ -12,9 +12,9 @@ ContainedObjects: CustomImage: CustomToken: MergeDistancePixels: 5.0 - Stackable: false + Stackable: true StandUp: false - Thickness: 0.1 + Thickness: 0.3 ImageScalar: 1.0 ImageSecondaryURL: '' ImageURL: https://i.imgur.com/j5v5E3j.png @@ -38,12 +38,12 @@ ContainedObjects: Sticky: true Tooltip: true Transform: - posX: -42.449852 - posY: 1.74528813 - posZ: -26.1945229 - rotX: -0.00335346861 - rotY: 0.02161121 - rotZ: 359.984039 + posX: -42.6822624 + posY: 1.76264536 + posZ: -26.3272648 + rotX: 359.980682 + rotY: 0.0176682267 + rotZ: 359.987457 scaleX: 0.17 scaleY: 0.17 scaleZ: 0.17 diff --git a/unpacked/Custom_Tile b9140e.yaml b/unpacked/Custom_Tile b9140e.yaml index 06838218a..cdfb7d6fd 100644 --- a/unpacked/Custom_Tile b9140e.yaml +++ b/unpacked/Custom_Tile b9140e.yaml @@ -2,7 +2,7 @@ Autoraise: true ColorDiffuse: b: 0.0 g: 0.008296312 - r: 0.106249489 + r: 0.106248729 CustomImage: CustomTile: Stackable: false diff --git a/unpacked/Custom_Tile ArkhamDB Deck Importer 928c8e.yaml b/unpacked/Custom_Tile ArkhamDB Deck Importer 928c8e.yaml index cfa2bd258..3267d1dfb 100644 --- a/unpacked/Custom_Tile ArkhamDB Deck Importer 928c8e.yaml +++ b/unpacked/Custom_Tile ArkhamDB Deck Importer 928c8e.yaml @@ -60,9 +60,9 @@ Snap: true Sticky: true Tooltip: false Transform: - posX: -61.62754 + posX: -61.63179 posY: 1.2 - posZ: -70.4778748 + posZ: -70.48129 rotX: 0.0208098888 rotY: 269.995667 rotZ: 0.0167699326 diff --git a/unpacked/Custom_Tile Data Helper 708279.ttslua b/unpacked/Custom_Tile Data Helper 708279.ttslua index 103ce0b11..2f2ae08ff 100644 --- a/unpacked/Custom_Tile Data Helper 708279.ttslua +++ b/unpacked/Custom_Tile Data Helper 708279.ttslua @@ -262,7 +262,7 @@ "Temples of Tenochtitlán": {"type": "perPlayer", "value": 2, "clueSide": "front"}, "Temples of Tenochtitlán_80cef8": {"type": "perPlayer", "value": 1, "clueSide": "front"}, - "Mouth of K'n-yan": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Mouth of K'n-yan_38a3e5": {"type": "perPlayer", "value": 1, "clueSide": "back"}, "Stone Altar": {"type": "perPlayer", "value": 1, "clueSide": "front"}, "Time-Wracked Woods": {"type": "perPlayer", "value": 2, "clueSide": "front"}, "Vast Passages": {"type": "perPlayer", "value": 1, "clueSide": "front"}, @@ -1447,12 +1447,38 @@ normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }, hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } } }, + ['War of the Worlds'] = { + easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'elder', 'red', 'blue' } }, + normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'elder', 'red', 'blue' } }, + hard = { token = { 'p1', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'elder', 'red', 'blue' } }, + expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'elder', 'red', 'blue' } } + }, ['Alice in Wonderland'] = { easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'elder', 'red', 'blue' } }, normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'elder', 'red', 'blue' } }, hard = { token = { 'p1', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'elder', 'red', 'blue' } }, expert = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'm8', 'skull', 'skull', 'elder', 'red', 'blue' } } }, + ['Pokemon'] = { + easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'skull', 'skull', 'tablet', 'elder', 'red', 'blue' } }, + normal = { token = { 'p1', '0', '0', '0', 'm1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'tablet', 'elder', 'red', 'blue' } }, + hard = { token = { 'p1', '0', '0', 'm1', 'm2', 'm3', 'm3', 'm4', 'm6', 'skull', 'skull', 'tablet', 'elder', 'red', 'blue' } }, + expert = { token = { '0', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm6', 'm8', 'skull', 'skull', 'tablet', 'elder', 'red', 'blue' } } + }, + ['Safari'] = { + normal = { token = { 'p1', '0', '0', '0', 'm1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + hard = { token = { 'p1', '0', '0', 'm1', 'm2', 'm3', 'm3', 'm4', 'm6', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + }, + ['Cerulean'] = { + normal = { token = { 'p1', '0', '0', '0', 'm1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + hard = { token = { 'p1', '0', '0', 'm1', 'm2', 'm3', 'm3', 'm4', 'm6', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + }, + ['Erich Zann'] = { + easy = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + normal = { token = { 'p1', '0', 'm1', 'm1', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + hard = { token = { '0', 'm1', 'm2', 'm3', 'm4', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + expert = { token = { '0', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, ['XXXX'] = { easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }, normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }, diff --git a/unpacked/Custom_Tile Playermat 1 Yellow 8b081b.ttslua b/unpacked/Custom_Tile Playermat 1 White 8b081b.ttslua similarity index 95% rename from unpacked/Custom_Tile Playermat 1 Yellow 8b081b.ttslua rename to unpacked/Custom_Tile Playermat 1 White 8b081b.ttslua index b785a01c3..031d5e493 100644 --- a/unpacked/Custom_Tile Playermat 1 Yellow 8b081b.ttslua +++ b/unpacked/Custom_Tile Playermat 1 White 8b081b.ttslua @@ -1,204 +1,204 @@ --- set true to enable debug logging -DEBUG = false --- we use this to turn off collision handling (for clue spawning) --- until after load is complete (probably a better way to do this) -COLLISION_ENABLED = false --- position offsets, adjust these to reposition things relative to mat [x,y,z] -DRAWN_ENCOUNTER_CARD_OFFSET = {0.98, 0.5, -0.635} -DRAWN_CHAOS_TOKEN_OFFSET = {-1.2, 0.5, -0.45} -DISCARD_BUTTON_OFFSETS = { - {-0.98, 0.2, -0.935}, - {-0.525, 0.2, -0.935}, - {-0.07, 0.2, -0.935}, - {0.39, 0.2, -0.935}, - {0.84, 0.2, -0.935}, -} - --- the position of the global discard pile --- TODO: delegate to global for any auto discard actions -DISCARD_POSITION = {-3.85, 3, 10.38} - -function log(message) - if DEBUG then - print(message) - end -end - --- builds a function that discards things in searchPostion to discardPostition -function makeDiscardHandlerFor(searchPosition, discardPosition) - return function (_) - local discardItemList = findObjectsAtPosition(searchPosition) - for _, obj in ipairs(discardItemList) do - obj.setPositionSmooth(discardPosition, false, true) - obj.setRotation({0, -90, 0}) - end - end -end - --- build a discard button at position to discard from searchPosition to discardPosition --- number must be unique -function makeDiscardButton(position, searchPosition, discardPosition, number) - local handler = makeDiscardHandlerFor(searchPosition, discardPosition) - local handlerName = 'handler' .. number - self.setVar(handlerName, handler) - self.createButton({ - label = "Discard", - click_function= handlerName, - function_owner= self, - position = position, - scale = {0.12, 0.12, 0.12}, - width = 800, - height = 280, - font_size = 180, - }) -end - -function onload() - self.interactable = DEBUG - DATA_HELPER = getObjectFromGUID('708279') - PLAYER_CARDS = DATA_HELPER.getTable('PLAYER_CARD_DATA') - PLAYER_CARD_TOKEN_OFFSETS = DATA_HELPER.getTable('PLAYER_CARD_TOKEN_OFFSETS') - - -- positions of encounter card slots - local encounterSlots = { - {1, 0, -0.7}, - {0.55, 0, -0.7}, - {0.1, 0, -0.7}, - {-0.35, 0, -0.7}, - {-0.8, 0, -0.7} - } - - local i = 1 - while i <= 5 do - makeDiscardButton(DISCARD_BUTTON_OFFSETS[i], encounterSlots[i], DISCARD_POSITION, i) - i = i + 1 - end - - self.createButton({ - label = " ", - click_function = "drawEncountercard", - function_owner = self, - position = {-1.45,0,-0.7}, - rotation = {0,-15,0}, - width = 170, - height = 255, - font_size = 50 - }) - - self.createButton({ - label=" ", - click_function = "drawChaostokenButton", - function_owner = self, - position = {1.48,0.0,-0.74}, - rotation = {0,-45,0}, - width = 125, - height = 125, - font_size = 50 - }) - - COLLISION_ENABLED = true -end - -function findObjectsAtPosition(localPos) - local globalPos = self.positionToWorld(localPos) - local objList = Physics.cast({ - origin=globalPos, --Where the cast takes place - direction={0,1,0}, --Which direction it moves (up is shown) - type=2, --Type. 2 is "sphere" - size={2,2,2}, --How large that sphere is - max_distance=1, --How far it moves. Just a little bit - debug=false --If it displays the sphere when casting. - }) - local decksAndCards = {} - for _, obj in ipairs(objList) do - if obj.hit_object.tag == "Deck" or obj.hit_object.tag == "Card" then - table.insert(decksAndCards, obj.hit_object) - end - end - return decksAndCards -end - -function spawnTokenOn(object, offsets, tokenType) - local tokenPosition = object.positionToWorld(offsets) - spawnToken(tokenPosition, tokenType) -end - --- spawn a group of tokens of the given type on the object -function spawnTokenGroup(object, tokenType, tokenCount) - local offsets = PLAYER_CARD_TOKEN_OFFSETS[tokenCount] - if offsets == nil then - error("couldn't find offsets for " .. tokenCount .. ' tokens') - end - local i = 0 - while i < tokenCount do - local offset = offsets[i + 1] - spawnTokenOn(object, offset, tokenType) - i = i + 1 - end -end - -function buildPlayerCardKey(object) - return object.getName() .. ':' .. object.getDescription() -end - -function getPlayerCardData(object) - return PLAYER_CARDS[buildPlayerCardKey(object)] or PLAYER_CARDS[object.getName()] -end - -function shouldSpawnTokens(object) - -- we assume we shouldn't spawn tokens if in doubt, this should - -- only ever happen on load and in that case prevents respawns - local spawned = DATA_HELPER.call('getSpawnedPlayerCardGuid', {object.getGUID()}) - local canSpawn = getPlayerCardData(object) - return not spawned and canSpawn -end - -function markSpawned(object) - local saved = DATA_HELPER.call('setSpawnedPlayerCardGuid', {object.getGUID(), true}) - if not saved then - error('attempt to mark player card spawned before data loaded') - end -end - -function spawnTokensFor(object) - local data = getPlayerCardData(object) - if data == nil then - error('attempt to spawn tokens for ' .. object.getName() .. ': no token data') - end - log(object.getName() .. '[' .. object.getDescription() .. ']' .. ' : ' .. data['tokenType'] .. ' : ' .. data['tokenCount']) - spawnTokenGroup(object, data['tokenType'], data['tokenCount']) - markSpawned(object) -end - -function onCollisionEnter(collision_info) - if not COLLISION_ENABLED then - return - end - - local object = collision_info.collision_object - -- anything to the left of this is legal to spawn - local discardSpawnBoundary = self.positionToWorld({-1.2, 0, 0}) - local boundaryLocalToCard = object.positionToLocal(discardSpawnBoundary) - if boundaryLocalToCard.x > 0 then - log('not checking for token spawn, boundary relative is ' .. boundaryLocalToCard.x) - return - end - if not object.is_face_down and shouldSpawnTokens(object) then - spawnTokensFor(object) - end -end - --- functions delegated to Global -function drawChaostokenButton(object, player, isRightClick) - -- local toPosition = self.positionToWorld(DRAWN_CHAOS_TOKEN_OFFSET) - Global.call("drawChaostoken", {self, DRAWN_CHAOS_TOKEN_OFFSET, isRightClick}) -end - -function drawEncountercard(object, player, isRightClick) -local toPosition = self.positionToWorld(DRAWN_ENCOUNTER_CARD_OFFSET) -Global.call("drawEncountercard", {toPosition, self.getRotation(), isRightClick}) -end - -function spawnToken(position, tokenType) - Global.call('spawnToken', {position, tokenType}) +-- set true to enable debug logging +DEBUG = false +-- we use this to turn off collision handling (for clue spawning) +-- until after load is complete (probably a better way to do this) +COLLISION_ENABLED = false +-- position offsets, adjust these to reposition things relative to mat [x,y,z] +DRAWN_ENCOUNTER_CARD_OFFSET = {0.98, 0.5, -0.635} +DRAWN_CHAOS_TOKEN_OFFSET = {-1.2, 0.5, -0.45} +DISCARD_BUTTON_OFFSETS = { + {-0.98, 0.2, -0.945}, + {-0.525, 0.2, -0.945}, + {-0.07, 0.2, -0.945}, + {0.39, 0.2, -0.945}, + {0.84, 0.2, -0.945}, +} + +-- the position of the global discard pile +-- TODO: delegate to global for any auto discard actions +DISCARD_POSITION = {-3.85, 3, 10.38} + +function log(message) + if DEBUG then + print(message) + end +end + +-- builds a function that discards things in searchPostion to discardPostition +function makeDiscardHandlerFor(searchPosition, discardPosition) + return function (_) + local discardItemList = findObjectsAtPosition(searchPosition) + for _, obj in ipairs(discardItemList) do + obj.setPositionSmooth(discardPosition, false, true) + obj.setRotation({0, -90, 0}) + end + end +end + +-- build a discard button at position to discard from searchPosition to discardPosition +-- number must be unique +function makeDiscardButton(position, searchPosition, discardPosition, number) + local handler = makeDiscardHandlerFor(searchPosition, discardPosition) + local handlerName = 'handler' .. number + self.setVar(handlerName, handler) + self.createButton({ + label = "Discard", + click_function= handlerName, + function_owner= self, + position = position, + scale = {0.12, 0.12, 0.12}, + width = 800, + height = 280, + font_size = 180, + }) +end + +function onload() + self.interactable = DEBUG + DATA_HELPER = getObjectFromGUID('708279') + PLAYER_CARDS = DATA_HELPER.getTable('PLAYER_CARD_DATA') + PLAYER_CARD_TOKEN_OFFSETS = DATA_HELPER.getTable('PLAYER_CARD_TOKEN_OFFSETS') + + -- positions of encounter card slots + local encounterSlots = { + {1, 0, -0.7}, + {0.55, 0, -0.7}, + {0.1, 0, -0.7}, + {-0.35, 0, -0.7}, + {-0.8, 0, -0.7} + } + + local i = 1 + while i <= 5 do + makeDiscardButton(DISCARD_BUTTON_OFFSETS[i], encounterSlots[i], DISCARD_POSITION, i) + i = i + 1 + end + + self.createButton({ + label = " ", + click_function = "drawEncountercard", + function_owner = self, + position = {-1.45,0,-0.7}, + rotation = {0,-15,0}, + width = 170, + height = 255, + font_size = 50 + }) + + self.createButton({ + label=" ", + click_function = "drawChaostokenButton", + function_owner = self, + position = {1.48,0.0,-0.74}, + rotation = {0,-45,0}, + width = 125, + height = 125, + font_size = 50 + }) + + COLLISION_ENABLED = true +end + +function findObjectsAtPosition(localPos) + local globalPos = self.positionToWorld(localPos) + local objList = Physics.cast({ + origin=globalPos, --Where the cast takes place + direction={0,1,0}, --Which direction it moves (up is shown) + type=2, --Type. 2 is "sphere" + size={2,2,2}, --How large that sphere is + max_distance=1, --How far it moves. Just a little bit + debug=false --If it displays the sphere when casting. + }) + local decksAndCards = {} + for _, obj in ipairs(objList) do + if obj.hit_object.tag == "Deck" or obj.hit_object.tag == "Card" then + table.insert(decksAndCards, obj.hit_object) + end + end + return decksAndCards +end + +function spawnTokenOn(object, offsets, tokenType) + local tokenPosition = object.positionToWorld(offsets) + spawnToken(tokenPosition, tokenType) +end + +-- spawn a group of tokens of the given type on the object +function spawnTokenGroup(object, tokenType, tokenCount) + local offsets = PLAYER_CARD_TOKEN_OFFSETS[tokenCount] + if offsets == nil then + error("couldn't find offsets for " .. tokenCount .. ' tokens') + end + local i = 0 + while i < tokenCount do + local offset = offsets[i + 1] + spawnTokenOn(object, offset, tokenType) + i = i + 1 + end +end + +function buildPlayerCardKey(object) + return object.getName() .. ':' .. object.getDescription() +end + +function getPlayerCardData(object) + return PLAYER_CARDS[buildPlayerCardKey(object)] or PLAYER_CARDS[object.getName()] +end + +function shouldSpawnTokens(object) + -- we assume we shouldn't spawn tokens if in doubt, this should + -- only ever happen on load and in that case prevents respawns + local spawned = DATA_HELPER.call('getSpawnedPlayerCardGuid', {object.getGUID()}) + local canSpawn = getPlayerCardData(object) + return not spawned and canSpawn +end + +function markSpawned(object) + local saved = DATA_HELPER.call('setSpawnedPlayerCardGuid', {object.getGUID(), true}) + if not saved then + error('attempt to mark player card spawned before data loaded') + end +end + +function spawnTokensFor(object) + local data = getPlayerCardData(object) + if data == nil then + error('attempt to spawn tokens for ' .. object.getName() .. ': no token data') + end + log(object.getName() .. '[' .. object.getDescription() .. ']' .. ' : ' .. data['tokenType'] .. ' : ' .. data['tokenCount']) + spawnTokenGroup(object, data['tokenType'], data['tokenCount']) + markSpawned(object) +end + +function onCollisionEnter(collision_info) + if not COLLISION_ENABLED then + return + end + + local object = collision_info.collision_object + -- anything to the left of this is legal to spawn + local discardSpawnBoundary = self.positionToWorld({-1.2, 0, 0}) + local boundaryLocalToCard = object.positionToLocal(discardSpawnBoundary) + if boundaryLocalToCard.x > 0 then + log('not checking for token spawn, boundary relative is ' .. boundaryLocalToCard.x) + return + end + if not object.is_face_down and shouldSpawnTokens(object) then + spawnTokensFor(object) + end +end + +-- functions delegated to Global +function drawChaostokenButton(object, player, isRightClick) + -- local toPosition = self.positionToWorld(DRAWN_CHAOS_TOKEN_OFFSET) + Global.call("drawChaostoken", {self, DRAWN_CHAOS_TOKEN_OFFSET, isRightClick}) +end + +function drawEncountercard(object, player, isRightClick) +local toPosition = self.positionToWorld(DRAWN_ENCOUNTER_CARD_OFFSET) +Global.call("drawEncountercard", {toPosition, self.getRotation(), isRightClick}) +end + +function spawnToken(position, tokenType) + Global.call('spawnToken', {position, tokenType}) end \ No newline at end of file diff --git a/unpacked/Custom_Tile Playermat 1 Yellow 8b081b.yaml b/unpacked/Custom_Tile Playermat 1 White 8b081b.yaml similarity index 91% rename from unpacked/Custom_Tile Playermat 1 Yellow 8b081b.yaml rename to unpacked/Custom_Tile Playermat 1 White 8b081b.yaml index 172073c75..8bd98d3fc 100644 --- a/unpacked/Custom_Tile Playermat 1 Yellow 8b081b.yaml +++ b/unpacked/Custom_Tile Playermat 1 White 8b081b.yaml @@ -5,15 +5,15 @@ AttachedSnapPoints: z: -0.633720756 Rotation: x: -3.66321835e-08 - y: 0.0280859582 - z: -2.18427218e-07 + y: 0.0280861184 + z: -2.18426e-07 - Position: x: 0.5208152 y: 0.09971385 z: -0.633939445 Rotation: x: -3.6553363e-08 - y: 0.02811328 + y: 0.02811344 z: -5.402876e-07 - Position: x: 0.9804662 @@ -21,7 +21,7 @@ AttachedSnapPoints: z: -0.634164751 Rotation: x: -3.67513557e-08 - y: 0.028144015 + y: 0.0281441752 z: 2.6679524e-07 - Position: x: -0.384615272 @@ -29,7 +29,7 @@ AttachedSnapPoints: z: -0.6334956 Rotation: x: -3.76656857e-08 - y: 0.028144015 + y: 0.0281441752 z: -2.79978553e-06 - Position: x: -0.8354233 @@ -37,7 +37,7 @@ AttachedSnapPoints: z: -0.633274555 Rotation: x: -3.518123e-08 - y: 0.028144015 + y: 0.0281441752 z: 6.636666e-07 - Position: x: -1.4141587 @@ -124,11 +124,11 @@ Hands: false HideWhenFaceDown: false IgnoreFoW: false Locked: true -LuaScript: !include 'Custom_Tile Playermat 1 Yellow 8b081b.ttslua' +LuaScript: !include 'Custom_Tile Playermat 1 White 8b081b.ttslua' LuaScriptState: '[]' MeasureMovement: false Name: Custom_Tile -Nickname: 'Playermat 1: Yellow' +Nickname: 'Playermat 1: White' Snap: true Sticky: true Tooltip: false diff --git a/unpacked/Custom_Tile Playermat 2 Orange bd0ff4.ttslua b/unpacked/Custom_Tile Playermat 2 Orange bd0ff4.ttslua index b785a01c3..031d5e493 100644 --- a/unpacked/Custom_Tile Playermat 2 Orange bd0ff4.ttslua +++ b/unpacked/Custom_Tile Playermat 2 Orange bd0ff4.ttslua @@ -1,204 +1,204 @@ --- set true to enable debug logging -DEBUG = false --- we use this to turn off collision handling (for clue spawning) --- until after load is complete (probably a better way to do this) -COLLISION_ENABLED = false --- position offsets, adjust these to reposition things relative to mat [x,y,z] -DRAWN_ENCOUNTER_CARD_OFFSET = {0.98, 0.5, -0.635} -DRAWN_CHAOS_TOKEN_OFFSET = {-1.2, 0.5, -0.45} -DISCARD_BUTTON_OFFSETS = { - {-0.98, 0.2, -0.935}, - {-0.525, 0.2, -0.935}, - {-0.07, 0.2, -0.935}, - {0.39, 0.2, -0.935}, - {0.84, 0.2, -0.935}, -} - --- the position of the global discard pile --- TODO: delegate to global for any auto discard actions -DISCARD_POSITION = {-3.85, 3, 10.38} - -function log(message) - if DEBUG then - print(message) - end -end - --- builds a function that discards things in searchPostion to discardPostition -function makeDiscardHandlerFor(searchPosition, discardPosition) - return function (_) - local discardItemList = findObjectsAtPosition(searchPosition) - for _, obj in ipairs(discardItemList) do - obj.setPositionSmooth(discardPosition, false, true) - obj.setRotation({0, -90, 0}) - end - end -end - --- build a discard button at position to discard from searchPosition to discardPosition --- number must be unique -function makeDiscardButton(position, searchPosition, discardPosition, number) - local handler = makeDiscardHandlerFor(searchPosition, discardPosition) - local handlerName = 'handler' .. number - self.setVar(handlerName, handler) - self.createButton({ - label = "Discard", - click_function= handlerName, - function_owner= self, - position = position, - scale = {0.12, 0.12, 0.12}, - width = 800, - height = 280, - font_size = 180, - }) -end - -function onload() - self.interactable = DEBUG - DATA_HELPER = getObjectFromGUID('708279') - PLAYER_CARDS = DATA_HELPER.getTable('PLAYER_CARD_DATA') - PLAYER_CARD_TOKEN_OFFSETS = DATA_HELPER.getTable('PLAYER_CARD_TOKEN_OFFSETS') - - -- positions of encounter card slots - local encounterSlots = { - {1, 0, -0.7}, - {0.55, 0, -0.7}, - {0.1, 0, -0.7}, - {-0.35, 0, -0.7}, - {-0.8, 0, -0.7} - } - - local i = 1 - while i <= 5 do - makeDiscardButton(DISCARD_BUTTON_OFFSETS[i], encounterSlots[i], DISCARD_POSITION, i) - i = i + 1 - end - - self.createButton({ - label = " ", - click_function = "drawEncountercard", - function_owner = self, - position = {-1.45,0,-0.7}, - rotation = {0,-15,0}, - width = 170, - height = 255, - font_size = 50 - }) - - self.createButton({ - label=" ", - click_function = "drawChaostokenButton", - function_owner = self, - position = {1.48,0.0,-0.74}, - rotation = {0,-45,0}, - width = 125, - height = 125, - font_size = 50 - }) - - COLLISION_ENABLED = true -end - -function findObjectsAtPosition(localPos) - local globalPos = self.positionToWorld(localPos) - local objList = Physics.cast({ - origin=globalPos, --Where the cast takes place - direction={0,1,0}, --Which direction it moves (up is shown) - type=2, --Type. 2 is "sphere" - size={2,2,2}, --How large that sphere is - max_distance=1, --How far it moves. Just a little bit - debug=false --If it displays the sphere when casting. - }) - local decksAndCards = {} - for _, obj in ipairs(objList) do - if obj.hit_object.tag == "Deck" or obj.hit_object.tag == "Card" then - table.insert(decksAndCards, obj.hit_object) - end - end - return decksAndCards -end - -function spawnTokenOn(object, offsets, tokenType) - local tokenPosition = object.positionToWorld(offsets) - spawnToken(tokenPosition, tokenType) -end - --- spawn a group of tokens of the given type on the object -function spawnTokenGroup(object, tokenType, tokenCount) - local offsets = PLAYER_CARD_TOKEN_OFFSETS[tokenCount] - if offsets == nil then - error("couldn't find offsets for " .. tokenCount .. ' tokens') - end - local i = 0 - while i < tokenCount do - local offset = offsets[i + 1] - spawnTokenOn(object, offset, tokenType) - i = i + 1 - end -end - -function buildPlayerCardKey(object) - return object.getName() .. ':' .. object.getDescription() -end - -function getPlayerCardData(object) - return PLAYER_CARDS[buildPlayerCardKey(object)] or PLAYER_CARDS[object.getName()] -end - -function shouldSpawnTokens(object) - -- we assume we shouldn't spawn tokens if in doubt, this should - -- only ever happen on load and in that case prevents respawns - local spawned = DATA_HELPER.call('getSpawnedPlayerCardGuid', {object.getGUID()}) - local canSpawn = getPlayerCardData(object) - return not spawned and canSpawn -end - -function markSpawned(object) - local saved = DATA_HELPER.call('setSpawnedPlayerCardGuid', {object.getGUID(), true}) - if not saved then - error('attempt to mark player card spawned before data loaded') - end -end - -function spawnTokensFor(object) - local data = getPlayerCardData(object) - if data == nil then - error('attempt to spawn tokens for ' .. object.getName() .. ': no token data') - end - log(object.getName() .. '[' .. object.getDescription() .. ']' .. ' : ' .. data['tokenType'] .. ' : ' .. data['tokenCount']) - spawnTokenGroup(object, data['tokenType'], data['tokenCount']) - markSpawned(object) -end - -function onCollisionEnter(collision_info) - if not COLLISION_ENABLED then - return - end - - local object = collision_info.collision_object - -- anything to the left of this is legal to spawn - local discardSpawnBoundary = self.positionToWorld({-1.2, 0, 0}) - local boundaryLocalToCard = object.positionToLocal(discardSpawnBoundary) - if boundaryLocalToCard.x > 0 then - log('not checking for token spawn, boundary relative is ' .. boundaryLocalToCard.x) - return - end - if not object.is_face_down and shouldSpawnTokens(object) then - spawnTokensFor(object) - end -end - --- functions delegated to Global -function drawChaostokenButton(object, player, isRightClick) - -- local toPosition = self.positionToWorld(DRAWN_CHAOS_TOKEN_OFFSET) - Global.call("drawChaostoken", {self, DRAWN_CHAOS_TOKEN_OFFSET, isRightClick}) -end - -function drawEncountercard(object, player, isRightClick) -local toPosition = self.positionToWorld(DRAWN_ENCOUNTER_CARD_OFFSET) -Global.call("drawEncountercard", {toPosition, self.getRotation(), isRightClick}) -end - -function spawnToken(position, tokenType) - Global.call('spawnToken', {position, tokenType}) +-- set true to enable debug logging +DEBUG = false +-- we use this to turn off collision handling (for clue spawning) +-- until after load is complete (probably a better way to do this) +COLLISION_ENABLED = false +-- position offsets, adjust these to reposition things relative to mat [x,y,z] +DRAWN_ENCOUNTER_CARD_OFFSET = {0.98, 0.5, -0.635} +DRAWN_CHAOS_TOKEN_OFFSET = {-1.2, 0.5, -0.45} +DISCARD_BUTTON_OFFSETS = { + {-0.98, 0.2, -0.945}, + {-0.525, 0.2, -0.945}, + {-0.07, 0.2, -0.945}, + {0.39, 0.2, -0.945}, + {0.84, 0.2, -0.945}, +} + +-- the position of the global discard pile +-- TODO: delegate to global for any auto discard actions +DISCARD_POSITION = {-3.85, 3, 10.38} + +function log(message) + if DEBUG then + print(message) + end +end + +-- builds a function that discards things in searchPostion to discardPostition +function makeDiscardHandlerFor(searchPosition, discardPosition) + return function (_) + local discardItemList = findObjectsAtPosition(searchPosition) + for _, obj in ipairs(discardItemList) do + obj.setPositionSmooth(discardPosition, false, true) + obj.setRotation({0, -90, 0}) + end + end +end + +-- build a discard button at position to discard from searchPosition to discardPosition +-- number must be unique +function makeDiscardButton(position, searchPosition, discardPosition, number) + local handler = makeDiscardHandlerFor(searchPosition, discardPosition) + local handlerName = 'handler' .. number + self.setVar(handlerName, handler) + self.createButton({ + label = "Discard", + click_function= handlerName, + function_owner= self, + position = position, + scale = {0.12, 0.12, 0.12}, + width = 800, + height = 280, + font_size = 180, + }) +end + +function onload() + self.interactable = DEBUG + DATA_HELPER = getObjectFromGUID('708279') + PLAYER_CARDS = DATA_HELPER.getTable('PLAYER_CARD_DATA') + PLAYER_CARD_TOKEN_OFFSETS = DATA_HELPER.getTable('PLAYER_CARD_TOKEN_OFFSETS') + + -- positions of encounter card slots + local encounterSlots = { + {1, 0, -0.7}, + {0.55, 0, -0.7}, + {0.1, 0, -0.7}, + {-0.35, 0, -0.7}, + {-0.8, 0, -0.7} + } + + local i = 1 + while i <= 5 do + makeDiscardButton(DISCARD_BUTTON_OFFSETS[i], encounterSlots[i], DISCARD_POSITION, i) + i = i + 1 + end + + self.createButton({ + label = " ", + click_function = "drawEncountercard", + function_owner = self, + position = {-1.45,0,-0.7}, + rotation = {0,-15,0}, + width = 170, + height = 255, + font_size = 50 + }) + + self.createButton({ + label=" ", + click_function = "drawChaostokenButton", + function_owner = self, + position = {1.48,0.0,-0.74}, + rotation = {0,-45,0}, + width = 125, + height = 125, + font_size = 50 + }) + + COLLISION_ENABLED = true +end + +function findObjectsAtPosition(localPos) + local globalPos = self.positionToWorld(localPos) + local objList = Physics.cast({ + origin=globalPos, --Where the cast takes place + direction={0,1,0}, --Which direction it moves (up is shown) + type=2, --Type. 2 is "sphere" + size={2,2,2}, --How large that sphere is + max_distance=1, --How far it moves. Just a little bit + debug=false --If it displays the sphere when casting. + }) + local decksAndCards = {} + for _, obj in ipairs(objList) do + if obj.hit_object.tag == "Deck" or obj.hit_object.tag == "Card" then + table.insert(decksAndCards, obj.hit_object) + end + end + return decksAndCards +end + +function spawnTokenOn(object, offsets, tokenType) + local tokenPosition = object.positionToWorld(offsets) + spawnToken(tokenPosition, tokenType) +end + +-- spawn a group of tokens of the given type on the object +function spawnTokenGroup(object, tokenType, tokenCount) + local offsets = PLAYER_CARD_TOKEN_OFFSETS[tokenCount] + if offsets == nil then + error("couldn't find offsets for " .. tokenCount .. ' tokens') + end + local i = 0 + while i < tokenCount do + local offset = offsets[i + 1] + spawnTokenOn(object, offset, tokenType) + i = i + 1 + end +end + +function buildPlayerCardKey(object) + return object.getName() .. ':' .. object.getDescription() +end + +function getPlayerCardData(object) + return PLAYER_CARDS[buildPlayerCardKey(object)] or PLAYER_CARDS[object.getName()] +end + +function shouldSpawnTokens(object) + -- we assume we shouldn't spawn tokens if in doubt, this should + -- only ever happen on load and in that case prevents respawns + local spawned = DATA_HELPER.call('getSpawnedPlayerCardGuid', {object.getGUID()}) + local canSpawn = getPlayerCardData(object) + return not spawned and canSpawn +end + +function markSpawned(object) + local saved = DATA_HELPER.call('setSpawnedPlayerCardGuid', {object.getGUID(), true}) + if not saved then + error('attempt to mark player card spawned before data loaded') + end +end + +function spawnTokensFor(object) + local data = getPlayerCardData(object) + if data == nil then + error('attempt to spawn tokens for ' .. object.getName() .. ': no token data') + end + log(object.getName() .. '[' .. object.getDescription() .. ']' .. ' : ' .. data['tokenType'] .. ' : ' .. data['tokenCount']) + spawnTokenGroup(object, data['tokenType'], data['tokenCount']) + markSpawned(object) +end + +function onCollisionEnter(collision_info) + if not COLLISION_ENABLED then + return + end + + local object = collision_info.collision_object + -- anything to the left of this is legal to spawn + local discardSpawnBoundary = self.positionToWorld({-1.2, 0, 0}) + local boundaryLocalToCard = object.positionToLocal(discardSpawnBoundary) + if boundaryLocalToCard.x > 0 then + log('not checking for token spawn, boundary relative is ' .. boundaryLocalToCard.x) + return + end + if not object.is_face_down and shouldSpawnTokens(object) then + spawnTokensFor(object) + end +end + +-- functions delegated to Global +function drawChaostokenButton(object, player, isRightClick) + -- local toPosition = self.positionToWorld(DRAWN_CHAOS_TOKEN_OFFSET) + Global.call("drawChaostoken", {self, DRAWN_CHAOS_TOKEN_OFFSET, isRightClick}) +end + +function drawEncountercard(object, player, isRightClick) +local toPosition = self.positionToWorld(DRAWN_ENCOUNTER_CARD_OFFSET) +Global.call("drawEncountercard", {toPosition, self.getRotation(), isRightClick}) +end + +function spawnToken(position, tokenType) + Global.call('spawnToken', {position, tokenType}) end \ No newline at end of file diff --git a/unpacked/Custom_Tile Playermat 3 Green 383d8b.ttslua b/unpacked/Custom_Tile Playermat 3 Green 383d8b.ttslua index b785a01c3..031d5e493 100644 --- a/unpacked/Custom_Tile Playermat 3 Green 383d8b.ttslua +++ b/unpacked/Custom_Tile Playermat 3 Green 383d8b.ttslua @@ -1,204 +1,204 @@ --- set true to enable debug logging -DEBUG = false --- we use this to turn off collision handling (for clue spawning) --- until after load is complete (probably a better way to do this) -COLLISION_ENABLED = false --- position offsets, adjust these to reposition things relative to mat [x,y,z] -DRAWN_ENCOUNTER_CARD_OFFSET = {0.98, 0.5, -0.635} -DRAWN_CHAOS_TOKEN_OFFSET = {-1.2, 0.5, -0.45} -DISCARD_BUTTON_OFFSETS = { - {-0.98, 0.2, -0.935}, - {-0.525, 0.2, -0.935}, - {-0.07, 0.2, -0.935}, - {0.39, 0.2, -0.935}, - {0.84, 0.2, -0.935}, -} - --- the position of the global discard pile --- TODO: delegate to global for any auto discard actions -DISCARD_POSITION = {-3.85, 3, 10.38} - -function log(message) - if DEBUG then - print(message) - end -end - --- builds a function that discards things in searchPostion to discardPostition -function makeDiscardHandlerFor(searchPosition, discardPosition) - return function (_) - local discardItemList = findObjectsAtPosition(searchPosition) - for _, obj in ipairs(discardItemList) do - obj.setPositionSmooth(discardPosition, false, true) - obj.setRotation({0, -90, 0}) - end - end -end - --- build a discard button at position to discard from searchPosition to discardPosition --- number must be unique -function makeDiscardButton(position, searchPosition, discardPosition, number) - local handler = makeDiscardHandlerFor(searchPosition, discardPosition) - local handlerName = 'handler' .. number - self.setVar(handlerName, handler) - self.createButton({ - label = "Discard", - click_function= handlerName, - function_owner= self, - position = position, - scale = {0.12, 0.12, 0.12}, - width = 800, - height = 280, - font_size = 180, - }) -end - -function onload() - self.interactable = DEBUG - DATA_HELPER = getObjectFromGUID('708279') - PLAYER_CARDS = DATA_HELPER.getTable('PLAYER_CARD_DATA') - PLAYER_CARD_TOKEN_OFFSETS = DATA_HELPER.getTable('PLAYER_CARD_TOKEN_OFFSETS') - - -- positions of encounter card slots - local encounterSlots = { - {1, 0, -0.7}, - {0.55, 0, -0.7}, - {0.1, 0, -0.7}, - {-0.35, 0, -0.7}, - {-0.8, 0, -0.7} - } - - local i = 1 - while i <= 5 do - makeDiscardButton(DISCARD_BUTTON_OFFSETS[i], encounterSlots[i], DISCARD_POSITION, i) - i = i + 1 - end - - self.createButton({ - label = " ", - click_function = "drawEncountercard", - function_owner = self, - position = {-1.45,0,-0.7}, - rotation = {0,-15,0}, - width = 170, - height = 255, - font_size = 50 - }) - - self.createButton({ - label=" ", - click_function = "drawChaostokenButton", - function_owner = self, - position = {1.48,0.0,-0.74}, - rotation = {0,-45,0}, - width = 125, - height = 125, - font_size = 50 - }) - - COLLISION_ENABLED = true -end - -function findObjectsAtPosition(localPos) - local globalPos = self.positionToWorld(localPos) - local objList = Physics.cast({ - origin=globalPos, --Where the cast takes place - direction={0,1,0}, --Which direction it moves (up is shown) - type=2, --Type. 2 is "sphere" - size={2,2,2}, --How large that sphere is - max_distance=1, --How far it moves. Just a little bit - debug=false --If it displays the sphere when casting. - }) - local decksAndCards = {} - for _, obj in ipairs(objList) do - if obj.hit_object.tag == "Deck" or obj.hit_object.tag == "Card" then - table.insert(decksAndCards, obj.hit_object) - end - end - return decksAndCards -end - -function spawnTokenOn(object, offsets, tokenType) - local tokenPosition = object.positionToWorld(offsets) - spawnToken(tokenPosition, tokenType) -end - --- spawn a group of tokens of the given type on the object -function spawnTokenGroup(object, tokenType, tokenCount) - local offsets = PLAYER_CARD_TOKEN_OFFSETS[tokenCount] - if offsets == nil then - error("couldn't find offsets for " .. tokenCount .. ' tokens') - end - local i = 0 - while i < tokenCount do - local offset = offsets[i + 1] - spawnTokenOn(object, offset, tokenType) - i = i + 1 - end -end - -function buildPlayerCardKey(object) - return object.getName() .. ':' .. object.getDescription() -end - -function getPlayerCardData(object) - return PLAYER_CARDS[buildPlayerCardKey(object)] or PLAYER_CARDS[object.getName()] -end - -function shouldSpawnTokens(object) - -- we assume we shouldn't spawn tokens if in doubt, this should - -- only ever happen on load and in that case prevents respawns - local spawned = DATA_HELPER.call('getSpawnedPlayerCardGuid', {object.getGUID()}) - local canSpawn = getPlayerCardData(object) - return not spawned and canSpawn -end - -function markSpawned(object) - local saved = DATA_HELPER.call('setSpawnedPlayerCardGuid', {object.getGUID(), true}) - if not saved then - error('attempt to mark player card spawned before data loaded') - end -end - -function spawnTokensFor(object) - local data = getPlayerCardData(object) - if data == nil then - error('attempt to spawn tokens for ' .. object.getName() .. ': no token data') - end - log(object.getName() .. '[' .. object.getDescription() .. ']' .. ' : ' .. data['tokenType'] .. ' : ' .. data['tokenCount']) - spawnTokenGroup(object, data['tokenType'], data['tokenCount']) - markSpawned(object) -end - -function onCollisionEnter(collision_info) - if not COLLISION_ENABLED then - return - end - - local object = collision_info.collision_object - -- anything to the left of this is legal to spawn - local discardSpawnBoundary = self.positionToWorld({-1.2, 0, 0}) - local boundaryLocalToCard = object.positionToLocal(discardSpawnBoundary) - if boundaryLocalToCard.x > 0 then - log('not checking for token spawn, boundary relative is ' .. boundaryLocalToCard.x) - return - end - if not object.is_face_down and shouldSpawnTokens(object) then - spawnTokensFor(object) - end -end - --- functions delegated to Global -function drawChaostokenButton(object, player, isRightClick) - -- local toPosition = self.positionToWorld(DRAWN_CHAOS_TOKEN_OFFSET) - Global.call("drawChaostoken", {self, DRAWN_CHAOS_TOKEN_OFFSET, isRightClick}) -end - -function drawEncountercard(object, player, isRightClick) -local toPosition = self.positionToWorld(DRAWN_ENCOUNTER_CARD_OFFSET) -Global.call("drawEncountercard", {toPosition, self.getRotation(), isRightClick}) -end - -function spawnToken(position, tokenType) - Global.call('spawnToken', {position, tokenType}) +-- set true to enable debug logging +DEBUG = false +-- we use this to turn off collision handling (for clue spawning) +-- until after load is complete (probably a better way to do this) +COLLISION_ENABLED = false +-- position offsets, adjust these to reposition things relative to mat [x,y,z] +DRAWN_ENCOUNTER_CARD_OFFSET = {0.98, 0.5, -0.635} +DRAWN_CHAOS_TOKEN_OFFSET = {-1.2, 0.5, -0.45} +DISCARD_BUTTON_OFFSETS = { + {-0.98, 0.2, -0.945}, + {-0.525, 0.2, -0.945}, + {-0.07, 0.2, -0.945}, + {0.39, 0.2, -0.945}, + {0.84, 0.2, -0.945}, +} + +-- the position of the global discard pile +-- TODO: delegate to global for any auto discard actions +DISCARD_POSITION = {-3.85, 3, 10.38} + +function log(message) + if DEBUG then + print(message) + end +end + +-- builds a function that discards things in searchPostion to discardPostition +function makeDiscardHandlerFor(searchPosition, discardPosition) + return function (_) + local discardItemList = findObjectsAtPosition(searchPosition) + for _, obj in ipairs(discardItemList) do + obj.setPositionSmooth(discardPosition, false, true) + obj.setRotation({0, -90, 0}) + end + end +end + +-- build a discard button at position to discard from searchPosition to discardPosition +-- number must be unique +function makeDiscardButton(position, searchPosition, discardPosition, number) + local handler = makeDiscardHandlerFor(searchPosition, discardPosition) + local handlerName = 'handler' .. number + self.setVar(handlerName, handler) + self.createButton({ + label = "Discard", + click_function= handlerName, + function_owner= self, + position = position, + scale = {0.12, 0.12, 0.12}, + width = 800, + height = 280, + font_size = 180, + }) +end + +function onload() + self.interactable = DEBUG + DATA_HELPER = getObjectFromGUID('708279') + PLAYER_CARDS = DATA_HELPER.getTable('PLAYER_CARD_DATA') + PLAYER_CARD_TOKEN_OFFSETS = DATA_HELPER.getTable('PLAYER_CARD_TOKEN_OFFSETS') + + -- positions of encounter card slots + local encounterSlots = { + {1, 0, -0.7}, + {0.55, 0, -0.7}, + {0.1, 0, -0.7}, + {-0.35, 0, -0.7}, + {-0.8, 0, -0.7} + } + + local i = 1 + while i <= 5 do + makeDiscardButton(DISCARD_BUTTON_OFFSETS[i], encounterSlots[i], DISCARD_POSITION, i) + i = i + 1 + end + + self.createButton({ + label = " ", + click_function = "drawEncountercard", + function_owner = self, + position = {-1.45,0,-0.7}, + rotation = {0,-15,0}, + width = 170, + height = 255, + font_size = 50 + }) + + self.createButton({ + label=" ", + click_function = "drawChaostokenButton", + function_owner = self, + position = {1.48,0.0,-0.74}, + rotation = {0,-45,0}, + width = 125, + height = 125, + font_size = 50 + }) + + COLLISION_ENABLED = true +end + +function findObjectsAtPosition(localPos) + local globalPos = self.positionToWorld(localPos) + local objList = Physics.cast({ + origin=globalPos, --Where the cast takes place + direction={0,1,0}, --Which direction it moves (up is shown) + type=2, --Type. 2 is "sphere" + size={2,2,2}, --How large that sphere is + max_distance=1, --How far it moves. Just a little bit + debug=false --If it displays the sphere when casting. + }) + local decksAndCards = {} + for _, obj in ipairs(objList) do + if obj.hit_object.tag == "Deck" or obj.hit_object.tag == "Card" then + table.insert(decksAndCards, obj.hit_object) + end + end + return decksAndCards +end + +function spawnTokenOn(object, offsets, tokenType) + local tokenPosition = object.positionToWorld(offsets) + spawnToken(tokenPosition, tokenType) +end + +-- spawn a group of tokens of the given type on the object +function spawnTokenGroup(object, tokenType, tokenCount) + local offsets = PLAYER_CARD_TOKEN_OFFSETS[tokenCount] + if offsets == nil then + error("couldn't find offsets for " .. tokenCount .. ' tokens') + end + local i = 0 + while i < tokenCount do + local offset = offsets[i + 1] + spawnTokenOn(object, offset, tokenType) + i = i + 1 + end +end + +function buildPlayerCardKey(object) + return object.getName() .. ':' .. object.getDescription() +end + +function getPlayerCardData(object) + return PLAYER_CARDS[buildPlayerCardKey(object)] or PLAYER_CARDS[object.getName()] +end + +function shouldSpawnTokens(object) + -- we assume we shouldn't spawn tokens if in doubt, this should + -- only ever happen on load and in that case prevents respawns + local spawned = DATA_HELPER.call('getSpawnedPlayerCardGuid', {object.getGUID()}) + local canSpawn = getPlayerCardData(object) + return not spawned and canSpawn +end + +function markSpawned(object) + local saved = DATA_HELPER.call('setSpawnedPlayerCardGuid', {object.getGUID(), true}) + if not saved then + error('attempt to mark player card spawned before data loaded') + end +end + +function spawnTokensFor(object) + local data = getPlayerCardData(object) + if data == nil then + error('attempt to spawn tokens for ' .. object.getName() .. ': no token data') + end + log(object.getName() .. '[' .. object.getDescription() .. ']' .. ' : ' .. data['tokenType'] .. ' : ' .. data['tokenCount']) + spawnTokenGroup(object, data['tokenType'], data['tokenCount']) + markSpawned(object) +end + +function onCollisionEnter(collision_info) + if not COLLISION_ENABLED then + return + end + + local object = collision_info.collision_object + -- anything to the left of this is legal to spawn + local discardSpawnBoundary = self.positionToWorld({-1.2, 0, 0}) + local boundaryLocalToCard = object.positionToLocal(discardSpawnBoundary) + if boundaryLocalToCard.x > 0 then + log('not checking for token spawn, boundary relative is ' .. boundaryLocalToCard.x) + return + end + if not object.is_face_down and shouldSpawnTokens(object) then + spawnTokensFor(object) + end +end + +-- functions delegated to Global +function drawChaostokenButton(object, player, isRightClick) + -- local toPosition = self.positionToWorld(DRAWN_CHAOS_TOKEN_OFFSET) + Global.call("drawChaostoken", {self, DRAWN_CHAOS_TOKEN_OFFSET, isRightClick}) +end + +function drawEncountercard(object, player, isRightClick) +local toPosition = self.positionToWorld(DRAWN_ENCOUNTER_CARD_OFFSET) +Global.call("drawEncountercard", {toPosition, self.getRotation(), isRightClick}) +end + +function spawnToken(position, tokenType) + Global.call('spawnToken', {position, tokenType}) end \ No newline at end of file diff --git a/unpacked/Custom_Tile Playermat 4 Red 0840d5.ttslua b/unpacked/Custom_Tile Playermat 4 Red 0840d5.ttslua index b785a01c3..031d5e493 100644 --- a/unpacked/Custom_Tile Playermat 4 Red 0840d5.ttslua +++ b/unpacked/Custom_Tile Playermat 4 Red 0840d5.ttslua @@ -1,204 +1,204 @@ --- set true to enable debug logging -DEBUG = false --- we use this to turn off collision handling (for clue spawning) --- until after load is complete (probably a better way to do this) -COLLISION_ENABLED = false --- position offsets, adjust these to reposition things relative to mat [x,y,z] -DRAWN_ENCOUNTER_CARD_OFFSET = {0.98, 0.5, -0.635} -DRAWN_CHAOS_TOKEN_OFFSET = {-1.2, 0.5, -0.45} -DISCARD_BUTTON_OFFSETS = { - {-0.98, 0.2, -0.935}, - {-0.525, 0.2, -0.935}, - {-0.07, 0.2, -0.935}, - {0.39, 0.2, -0.935}, - {0.84, 0.2, -0.935}, -} - --- the position of the global discard pile --- TODO: delegate to global for any auto discard actions -DISCARD_POSITION = {-3.85, 3, 10.38} - -function log(message) - if DEBUG then - print(message) - end -end - --- builds a function that discards things in searchPostion to discardPostition -function makeDiscardHandlerFor(searchPosition, discardPosition) - return function (_) - local discardItemList = findObjectsAtPosition(searchPosition) - for _, obj in ipairs(discardItemList) do - obj.setPositionSmooth(discardPosition, false, true) - obj.setRotation({0, -90, 0}) - end - end -end - --- build a discard button at position to discard from searchPosition to discardPosition --- number must be unique -function makeDiscardButton(position, searchPosition, discardPosition, number) - local handler = makeDiscardHandlerFor(searchPosition, discardPosition) - local handlerName = 'handler' .. number - self.setVar(handlerName, handler) - self.createButton({ - label = "Discard", - click_function= handlerName, - function_owner= self, - position = position, - scale = {0.12, 0.12, 0.12}, - width = 800, - height = 280, - font_size = 180, - }) -end - -function onload() - self.interactable = DEBUG - DATA_HELPER = getObjectFromGUID('708279') - PLAYER_CARDS = DATA_HELPER.getTable('PLAYER_CARD_DATA') - PLAYER_CARD_TOKEN_OFFSETS = DATA_HELPER.getTable('PLAYER_CARD_TOKEN_OFFSETS') - - -- positions of encounter card slots - local encounterSlots = { - {1, 0, -0.7}, - {0.55, 0, -0.7}, - {0.1, 0, -0.7}, - {-0.35, 0, -0.7}, - {-0.8, 0, -0.7} - } - - local i = 1 - while i <= 5 do - makeDiscardButton(DISCARD_BUTTON_OFFSETS[i], encounterSlots[i], DISCARD_POSITION, i) - i = i + 1 - end - - self.createButton({ - label = " ", - click_function = "drawEncountercard", - function_owner = self, - position = {-1.45,0,-0.7}, - rotation = {0,-15,0}, - width = 170, - height = 255, - font_size = 50 - }) - - self.createButton({ - label=" ", - click_function = "drawChaostokenButton", - function_owner = self, - position = {1.48,0.0,-0.74}, - rotation = {0,-45,0}, - width = 125, - height = 125, - font_size = 50 - }) - - COLLISION_ENABLED = true -end - -function findObjectsAtPosition(localPos) - local globalPos = self.positionToWorld(localPos) - local objList = Physics.cast({ - origin=globalPos, --Where the cast takes place - direction={0,1,0}, --Which direction it moves (up is shown) - type=2, --Type. 2 is "sphere" - size={2,2,2}, --How large that sphere is - max_distance=1, --How far it moves. Just a little bit - debug=false --If it displays the sphere when casting. - }) - local decksAndCards = {} - for _, obj in ipairs(objList) do - if obj.hit_object.tag == "Deck" or obj.hit_object.tag == "Card" then - table.insert(decksAndCards, obj.hit_object) - end - end - return decksAndCards -end - -function spawnTokenOn(object, offsets, tokenType) - local tokenPosition = object.positionToWorld(offsets) - spawnToken(tokenPosition, tokenType) -end - --- spawn a group of tokens of the given type on the object -function spawnTokenGroup(object, tokenType, tokenCount) - local offsets = PLAYER_CARD_TOKEN_OFFSETS[tokenCount] - if offsets == nil then - error("couldn't find offsets for " .. tokenCount .. ' tokens') - end - local i = 0 - while i < tokenCount do - local offset = offsets[i + 1] - spawnTokenOn(object, offset, tokenType) - i = i + 1 - end -end - -function buildPlayerCardKey(object) - return object.getName() .. ':' .. object.getDescription() -end - -function getPlayerCardData(object) - return PLAYER_CARDS[buildPlayerCardKey(object)] or PLAYER_CARDS[object.getName()] -end - -function shouldSpawnTokens(object) - -- we assume we shouldn't spawn tokens if in doubt, this should - -- only ever happen on load and in that case prevents respawns - local spawned = DATA_HELPER.call('getSpawnedPlayerCardGuid', {object.getGUID()}) - local canSpawn = getPlayerCardData(object) - return not spawned and canSpawn -end - -function markSpawned(object) - local saved = DATA_HELPER.call('setSpawnedPlayerCardGuid', {object.getGUID(), true}) - if not saved then - error('attempt to mark player card spawned before data loaded') - end -end - -function spawnTokensFor(object) - local data = getPlayerCardData(object) - if data == nil then - error('attempt to spawn tokens for ' .. object.getName() .. ': no token data') - end - log(object.getName() .. '[' .. object.getDescription() .. ']' .. ' : ' .. data['tokenType'] .. ' : ' .. data['tokenCount']) - spawnTokenGroup(object, data['tokenType'], data['tokenCount']) - markSpawned(object) -end - -function onCollisionEnter(collision_info) - if not COLLISION_ENABLED then - return - end - - local object = collision_info.collision_object - -- anything to the left of this is legal to spawn - local discardSpawnBoundary = self.positionToWorld({-1.2, 0, 0}) - local boundaryLocalToCard = object.positionToLocal(discardSpawnBoundary) - if boundaryLocalToCard.x > 0 then - log('not checking for token spawn, boundary relative is ' .. boundaryLocalToCard.x) - return - end - if not object.is_face_down and shouldSpawnTokens(object) then - spawnTokensFor(object) - end -end - --- functions delegated to Global -function drawChaostokenButton(object, player, isRightClick) - -- local toPosition = self.positionToWorld(DRAWN_CHAOS_TOKEN_OFFSET) - Global.call("drawChaostoken", {self, DRAWN_CHAOS_TOKEN_OFFSET, isRightClick}) -end - -function drawEncountercard(object, player, isRightClick) -local toPosition = self.positionToWorld(DRAWN_ENCOUNTER_CARD_OFFSET) -Global.call("drawEncountercard", {toPosition, self.getRotation(), isRightClick}) -end - -function spawnToken(position, tokenType) - Global.call('spawnToken', {position, tokenType}) +-- set true to enable debug logging +DEBUG = false +-- we use this to turn off collision handling (for clue spawning) +-- until after load is complete (probably a better way to do this) +COLLISION_ENABLED = false +-- position offsets, adjust these to reposition things relative to mat [x,y,z] +DRAWN_ENCOUNTER_CARD_OFFSET = {0.98, 0.5, -0.635} +DRAWN_CHAOS_TOKEN_OFFSET = {-1.2, 0.5, -0.45} +DISCARD_BUTTON_OFFSETS = { + {-0.98, 0.2, -0.945}, + {-0.525, 0.2, -0.945}, + {-0.07, 0.2, -0.945}, + {0.39, 0.2, -0.945}, + {0.84, 0.2, -0.945}, +} + +-- the position of the global discard pile +-- TODO: delegate to global for any auto discard actions +DISCARD_POSITION = {-3.85, 3, 10.38} + +function log(message) + if DEBUG then + print(message) + end +end + +-- builds a function that discards things in searchPostion to discardPostition +function makeDiscardHandlerFor(searchPosition, discardPosition) + return function (_) + local discardItemList = findObjectsAtPosition(searchPosition) + for _, obj in ipairs(discardItemList) do + obj.setPositionSmooth(discardPosition, false, true) + obj.setRotation({0, -90, 0}) + end + end +end + +-- build a discard button at position to discard from searchPosition to discardPosition +-- number must be unique +function makeDiscardButton(position, searchPosition, discardPosition, number) + local handler = makeDiscardHandlerFor(searchPosition, discardPosition) + local handlerName = 'handler' .. number + self.setVar(handlerName, handler) + self.createButton({ + label = "Discard", + click_function= handlerName, + function_owner= self, + position = position, + scale = {0.12, 0.12, 0.12}, + width = 800, + height = 280, + font_size = 180, + }) +end + +function onload() + self.interactable = DEBUG + DATA_HELPER = getObjectFromGUID('708279') + PLAYER_CARDS = DATA_HELPER.getTable('PLAYER_CARD_DATA') + PLAYER_CARD_TOKEN_OFFSETS = DATA_HELPER.getTable('PLAYER_CARD_TOKEN_OFFSETS') + + -- positions of encounter card slots + local encounterSlots = { + {1, 0, -0.7}, + {0.55, 0, -0.7}, + {0.1, 0, -0.7}, + {-0.35, 0, -0.7}, + {-0.8, 0, -0.7} + } + + local i = 1 + while i <= 5 do + makeDiscardButton(DISCARD_BUTTON_OFFSETS[i], encounterSlots[i], DISCARD_POSITION, i) + i = i + 1 + end + + self.createButton({ + label = " ", + click_function = "drawEncountercard", + function_owner = self, + position = {-1.45,0,-0.7}, + rotation = {0,-15,0}, + width = 170, + height = 255, + font_size = 50 + }) + + self.createButton({ + label=" ", + click_function = "drawChaostokenButton", + function_owner = self, + position = {1.48,0.0,-0.74}, + rotation = {0,-45,0}, + width = 125, + height = 125, + font_size = 50 + }) + + COLLISION_ENABLED = true +end + +function findObjectsAtPosition(localPos) + local globalPos = self.positionToWorld(localPos) + local objList = Physics.cast({ + origin=globalPos, --Where the cast takes place + direction={0,1,0}, --Which direction it moves (up is shown) + type=2, --Type. 2 is "sphere" + size={2,2,2}, --How large that sphere is + max_distance=1, --How far it moves. Just a little bit + debug=false --If it displays the sphere when casting. + }) + local decksAndCards = {} + for _, obj in ipairs(objList) do + if obj.hit_object.tag == "Deck" or obj.hit_object.tag == "Card" then + table.insert(decksAndCards, obj.hit_object) + end + end + return decksAndCards +end + +function spawnTokenOn(object, offsets, tokenType) + local tokenPosition = object.positionToWorld(offsets) + spawnToken(tokenPosition, tokenType) +end + +-- spawn a group of tokens of the given type on the object +function spawnTokenGroup(object, tokenType, tokenCount) + local offsets = PLAYER_CARD_TOKEN_OFFSETS[tokenCount] + if offsets == nil then + error("couldn't find offsets for " .. tokenCount .. ' tokens') + end + local i = 0 + while i < tokenCount do + local offset = offsets[i + 1] + spawnTokenOn(object, offset, tokenType) + i = i + 1 + end +end + +function buildPlayerCardKey(object) + return object.getName() .. ':' .. object.getDescription() +end + +function getPlayerCardData(object) + return PLAYER_CARDS[buildPlayerCardKey(object)] or PLAYER_CARDS[object.getName()] +end + +function shouldSpawnTokens(object) + -- we assume we shouldn't spawn tokens if in doubt, this should + -- only ever happen on load and in that case prevents respawns + local spawned = DATA_HELPER.call('getSpawnedPlayerCardGuid', {object.getGUID()}) + local canSpawn = getPlayerCardData(object) + return not spawned and canSpawn +end + +function markSpawned(object) + local saved = DATA_HELPER.call('setSpawnedPlayerCardGuid', {object.getGUID(), true}) + if not saved then + error('attempt to mark player card spawned before data loaded') + end +end + +function spawnTokensFor(object) + local data = getPlayerCardData(object) + if data == nil then + error('attempt to spawn tokens for ' .. object.getName() .. ': no token data') + end + log(object.getName() .. '[' .. object.getDescription() .. ']' .. ' : ' .. data['tokenType'] .. ' : ' .. data['tokenCount']) + spawnTokenGroup(object, data['tokenType'], data['tokenCount']) + markSpawned(object) +end + +function onCollisionEnter(collision_info) + if not COLLISION_ENABLED then + return + end + + local object = collision_info.collision_object + -- anything to the left of this is legal to spawn + local discardSpawnBoundary = self.positionToWorld({-1.2, 0, 0}) + local boundaryLocalToCard = object.positionToLocal(discardSpawnBoundary) + if boundaryLocalToCard.x > 0 then + log('not checking for token spawn, boundary relative is ' .. boundaryLocalToCard.x) + return + end + if not object.is_face_down and shouldSpawnTokens(object) then + spawnTokensFor(object) + end +end + +-- functions delegated to Global +function drawChaostokenButton(object, player, isRightClick) + -- local toPosition = self.positionToWorld(DRAWN_CHAOS_TOKEN_OFFSET) + Global.call("drawChaostoken", {self, DRAWN_CHAOS_TOKEN_OFFSET, isRightClick}) +end + +function drawEncountercard(object, player, isRightClick) +local toPosition = self.positionToWorld(DRAWN_ENCOUNTER_CARD_OFFSET) +Global.call("drawEncountercard", {toPosition, self.getRotation(), isRightClick}) +end + +function spawnToken(position, tokenType) + Global.call('spawnToken', {position, tokenType}) end \ No newline at end of file diff --git a/unpacked/Custom_Token b7b45b.yaml b/unpacked/Custom_Token b7b45b.yaml index f0629c048..64fa7da77 100644 --- a/unpacked/Custom_Token b7b45b.yaml +++ b/unpacked/Custom_Token b7b45b.yaml @@ -1,8 +1,8 @@ Autoraise: true ColorDiffuse: - b: 0.374540061 - g: 0.374540061 - r: 0.374540061 + b: 0.3745393 + g: 0.3745393 + r: 0.3745393 CustomImage: CustomToken: MergeDistancePixels: 15.0 diff --git a/unpacked/Custom_Token Playarea 721ba2.yaml b/unpacked/Custom_Token Playarea 721ba2.yaml index d6bbf332c..de2c368e8 100644 --- a/unpacked/Custom_Token Playarea 721ba2.yaml +++ b/unpacked/Custom_Token Playarea 721ba2.yaml @@ -24,7 +24,7 @@ HideWhenFaceDown: false IgnoreFoW: false Locked: true LuaScript: !include 'Custom_Token Playarea 721ba2.ttslua' -LuaScriptState: '{"16d115":1,"1a75e4":1,"1c2417":1,"2cef7b":1,"584ca4":1,"b0fbe0":1,"f252c5":1}' +LuaScriptState: '{"16d115":1,"1a75e4":1,"1c2417":1,"2cef7b":1,"584ca4":1,"9b3907":1,"b0fbe0":1,"d976bf":1,"e12dc3":1,"e49a70":1,"f252c5":1}' MeasureMovement: false Name: Custom_Token Nickname: Playarea diff --git a/unpacked/Notecard Arkham SCE 1.4102 - 8152020 - Page 1 e65fb4.yaml b/unpacked/Notecard Arkham SCE 1.4102 - 8152020 - Page 1 e65fb4.yaml deleted file mode 100644 index b0fd8b22a..000000000 --- a/unpacked/Notecard Arkham SCE 1.4102 - 8152020 - Page 1 e65fb4.yaml +++ /dev/null @@ -1,86 +0,0 @@ -Autoraise: true -ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 -Description: 'Added Parallel "Skids" O''Toole and his challenge scenario, All or Nothing. - - - Updated Return to TFA to use HD cards. - - - Fixed the deck importer for Empower Self, added Dark Insight and Gate Box to list - of pseudo-permanents.' -DragSelectable: true -GMNotes: '' -GUID: e65fb4 -Grid: true -GridProjection: false -Hands: false -HideWhenFaceDown: false -IgnoreFoW: false -Locked: false -LuaScript: '' -LuaScriptState: '' -MeasureMovement: false -Name: Notecard -Nickname: Arkham SCE 1.4102 - 8/15/2020 - Page 1 -Snap: true -States: - '2': - Autoraise: true - ColorDiffuse: - b: 1.0 - g: 1.0 - r: 1.0 - Description: 'Added new fan scenario - "Darkness Falls" by Justin of Chit Talk. - - - Added new fan campaign - Alice in Wonderland by The Beard. - - - Hotfix: Fixed the Chaos Bag being broken! - - Hotfix 2: Fixed certain incorrect encounter decks in TFA, and compressed Alice - in Wonderland PDF.' - DragSelectable: true - GMNotes: '' - GUID: b7c37b - Grid: true - GridProjection: false - Hands: false - HideWhenFaceDown: false - IgnoreFoW: false - Locked: false - LuaScript: '' - LuaScriptState: '' - MeasureMovement: false - Name: Notecard - Nickname: Arkham SCE 1.4102 - 8/15/2020 - Page 2 - Snap: true - Sticky: true - Tooltip: true - Transform: - posX: 23.75344 - posY: 1.51452863 - posZ: -13.1285563 - rotX: 0.0798804462 - rotY: 90.00592 - rotZ: 359.983124 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 - XmlUI: '' -Sticky: true -Tooltip: true -Transform: - posX: 23.7534428 - posY: 1.51452863 - posZ: -13.1285591 - rotX: 0.07987885 - rotY: 90.0059052 - rotZ: 359.983124 - scaleX: 1.0 - scaleY: 1.0 - scaleZ: 1.0 -XmlUI: '' diff --git a/unpacked/Notecard Arkham SCE 1.4103 - 8262020 - Page 1 e65fb4.yaml b/unpacked/Notecard Arkham SCE 1.4103 - 8262020 - Page 1 e65fb4.yaml new file mode 100644 index 000000000..8fb4f627f --- /dev/null +++ b/unpacked/Notecard Arkham SCE 1.4103 - 8262020 - Page 1 e65fb4.yaml @@ -0,0 +1,170 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: 'Added Pokemon Eldritch Edition, a fan campaign with custom investigators, + cards, and more, by Goober! + + + Updated the following fan to match their workshop updates: Alice in Wonderland, + The Symphony of Erich Zann, The War of the Worlds. + + + Updated Excelsior Hotel campaign guide.' +DragSelectable: true +GMNotes: '' +GUID: e65fb4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MeasureMovement: false +Name: Notecard +Nickname: Arkham SCE 1.4103 - 8/26/2020 - Page 1 +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + Description: 'The Side Missions box now has auto-setup buttons for official standalone + and challenge scenarios. All other fan scenarios are still accessible within + the box. + + + The Clue-Clicker-Counter now defaults to Clue-Counter, not Clue-Clicker. Additionally, + made Clue-Counter less likely to Count Cards in body slot area of playmat.' + DragSelectable: true + GMNotes: '' + GUID: 00861b + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Notecard + Nickname: Arkham SCE 1.4103 - 8/26/2020 - Page 2 + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.7534256 + posY: 1.51452863 + posZ: -13.1285419 + rotX: 0.07987003 + rotY: 89.97359 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + Description: 'Ammo/Charges/Secrets etc. that spawn on assets now are oriented + properly when sitting from the bottom two player areas. + + + Resource tokens are all now stackable (and just a little bit thicker). + + + Yellow player area is now white. This helps with the table orientation when + loading.' + DragSelectable: true + GMNotes: '' + GUID: eaf01d + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Notecard + Nickname: Arkham SCE 1.4103 - 8/26/2020 - Page 3 + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.7534313 + posY: 1.51452863 + posZ: -13.1285505 + rotX: 0.079868935 + rotY: 89.973526 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '4': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + Description: 'Slightly adjusted position of encounter discard buttons to make + them easier to click. + + + Added two new previewed Innsmouth Conspiracy player cards to the leaked cards + box. + + + Removed a hair from the scan of Serpent''s Call. (Sorry about that!)' + DragSelectable: true + GMNotes: '' + GUID: 90d9f2 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + MeasureMovement: false + Name: Notecard + Nickname: Arkham SCE 1.4103 - 8/26/2020 - Page 4 + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.75343 + posY: 1.51452863 + posZ: -13.1285477 + rotX: 0.07986959 + rotY: 89.97354 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: 23.7534351 + posY: 1.51452863 + posZ: -13.1285534 + rotX: 0.0798700154 + rotY: 89.97351 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: ''